]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/glsdk-u-boot.git/blob - CHANGELOG
Merge branch 'master' of git://git.denx.de/u-boot-arm
[glsdk/glsdk-u-boot.git] / CHANGELOG
1 commit 8e64d6efd8d778a5f83d8bff9cd273a86dcc182f
2 Author: Heiko Schocher <hs@denx.de>
3 Date:   Wed Mar 31 08:34:51 2010 +0200
5     net, doc: How to setup MAC address correctly
7     As this seems unclear, document how the flow of setting up
8     the MAC address is correct.
10     Signed-off-by: Heiko Schocher <hs@denx.de>
12     Text changed slightly, adding input from Mike Frysinger.
14     Signed-off-by: Wolfgang Denk <wd@denx.de>
16 commit b78b48c6a0c34b2991e31fc4548aaf773d34f2b3
17 Author: Heiko Schocher <hs@denx.de>
18 Date:   Wed Mar 31 08:34:46 2010 +0200
20     net, fec_mxc: only setup the device enetaddr with eeprom value
22     Only fill the device enetaddr with the contents of the eeprom,
23     do not program it in MAC address registers
25     Signed-off-by: Heiko Schocher <hs@denx.de>
26     Acked-by: Ben Warren <biggerbadderben@gmail.com>
28 commit d5a64237d58ded31c2eed455c7a346e1c85f5565
29 Author: Felix Radensky <felix@embedded-sol.com>
30 Date:   Tue Mar 30 15:02:13 2010 +0300
32     doc: Fix ramdisk examples in doc/uImage.FIT/multi.its
34     The ramdisk sections in doc/uImage.FIT/multi.its lack
35     load address and entry point properties. Using examples
36     from this file will result in unbootable image, u-boot
37     will issue the following error messages:
39     Can't get ramdisk subimage load address!
40     Ramdisk image is corrupt or invalid
42     This patch adds missing properties to ramdisk sections.
44     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
46 commit 2d2018f3db5ed834bc1ee208a2c6212fdf00bca1
47 Author: Heiko Schocher <heiko.schocher@invitel.hu>
48 Date:   Wed Mar 24 13:22:50 2010 +0100
50     jffs2, suen3: Fix compiler warning
52     $ ./MAKEALL suen3
53     jffs2_1pass.c: In function 'get_fl_mem':
54     jffs2_1pass.c:399: warning: unused variable 'id'
55     jffs2_1pass.c: In function 'get_node_mem':
56     jffs2_1pass.c:423: warning: unused variable 'id'
58     Signed-off-by: Heiko Schocher <hs@denx.de>
59     Tested-by: Tom <Tom.Rix@windriver.com>
61 commit 9ff32d8ccf0e23b5577c25610f001af8d761b4a2
62 Author: Timur Tabi <timur@freescale.com>
63 Date:   Mon Mar 29 12:51:07 2010 -0500
65     mpc86xx: set the DDR BATs after calculating true DDR size
67     After determining how much DDR is actually in the system, set DBAT0 and
68     IBAT0 accordingly.  This ensures that the CPU won't attempt to access
69     (via speculation) addresses outside of actual memory.
71     On 86xx systems, DBAT0 and IBAT0 (the BATs for DDR) are initialized to 2GB
72     and kept that way.  If the system has less than 2GB of memory (typical for
73     an MPC8610 HPCD), the CPU may attempt to access this memory during
74     speculation.  The zlib code is notorious for generating such memory reads,
75     and indeed on the MPC8610, uncompressing the Linux kernel causes a machine
76     check (without this patch).
78     Currently we are limited to power of two sized DDR since we only use a
79     single bat.  If a non-power of two size is used that is less than
80     CONFIG_MAX_MEM_MAPPED u-boot will crash.
82     Signed-off-by: Timur Tabi <timur@freescale.com>
83     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
85 commit 33f57bd553edf29dffef5a6c7d76e169c79a6049
86 Author: Kumar Gala <galak@kernel.crashing.org>
87 Date:   Fri Mar 26 15:14:43 2010 -0500
89     85xx: Fix enabling of L1 cache parity on secondary cores
91     Use the same code between primary and secondary cores to init the
92     L1 cache.  We were not enabling cache parity on the secondary cores.
94     Also, reworked the L1 cache init code to match the e500mc L2 init code
95     that first invalidates the cache and locks.  Than enables the cache and
96     makes sure its enabled before continuing.
98     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
100 commit 1a332da61df9c38b567359af114daeaaaefaead8
101 Author: Stefan Roese <sr@denx.de>
102 Date:   Mon Mar 29 15:30:46 2010 +0200
104     ppc4xx: Fix problem with I2C bus >= 1 initialization
106     This patch fixes a problem introduced with patch eb5eb2b0
107     [ppc4xx: Cleanup PPC4xx I2C infrastructure]. We need to assign the I2C
108     base address to the "i2c" pointer inside of the controller loop.
109     Otherwise controller 0 is initialized multiple times instead of
110     initializing each I2C controller sequentially.
112     Tested on Katmai.
114     Signed-off-by: Stefan Roese <sr@denx.de>
115     Acked-by: Heiko Schocher <hs@denx.de>
117 commit 24de2f4be00f81c58270d0df47296bf3a3601cef
118 Author: Heiko Schocher <hs@denx.de>
119 Date:   Mon Mar 29 13:15:48 2010 +0200
121     bootm, linux: fix booting Multi-File Image with "kernel+ramdisk+fdt"
123     Booting a "Multi-File Image" including a linux kernel, ramdisk and
124     fdt, generated with
126     mkimage -A ppc \
127         -O linux \
128         -T multi \
129         -C gzip \
130         -a 00000000 \
131         -e 00000000 \
132         -n "kernel-2.6+initrd+dtb" \
133         -d "vmlinux.bin.gz:ramdisk_image.gz:board.dtb" \
134         multi.bin
136     actually fails, because ramdisk start and end addresses
137     didn;t get initialized. This patch fixes this issue.
139     Tested on the KUP4K board.
141     Signed-off-by: Heiko Schocher <hs@denx.de>
143 commit 2883cc2d48e99fd1873ef8af03fee7966611b735
144 Author: Wolfgang Denk <wd@denx.de>
145 Date:   Sun Mar 28 00:25:14 2010 +0100
147     Prepare 2010.03-rc3
149     Update CHANGELOG
151     Signed-off-by: Wolfgang Denk <wd@denx.de>
153 commit 060f28532b09dd3d2c78423bdd809ac768a27629
154 Author: Wolfgang Denk <wd@denx.de>
155 Date:   Thu Mar 25 14:07:23 2010 +0100
157     cmd_usb.c: print debug messages only when DEBUG is defined
159     Signed-off-by: Wolfgang Denk <wd@denx.de>
161 commit a574cff121b1479c8e962b7a2a29310020387260
162 Author: Wolfgang Denk <wd@denx.de>
163 Date:   Wed Mar 24 12:19:19 2010 +0100
165     ml300: remove support for broken, orphaned board
167     The ml300 board has a number of issues, but nobody cares about this
168     long-orphaned board any more.  Remove it.
170     Signed-off-by: Wolfgang Denk <wd@denx.de>
171     Acked-by: Michal Simek <monstr@monstr.eu>
173 commit 04387d24a17b1ee13024dd4779da4b84d47c65cc
174 Author: Wolfgang Denk <wd@denx.de>
175 Date:   Sat Mar 27 23:37:46 2010 +0100
177     mkimage: fix Segmentation Fault when run without "-n name" option
179     The restructuring of the mkimage command in commit 89a4d6b1 ("tools:
180     mkimage: split code into core, default and FIT image specific")
181     introduced a bug that caused mkimage to segfault when run without
182     "-n name" option.  Initialize the imagename entry to prevent that.
184     Signed-off-by: Wolfgang Denk <wd@denx.de>
186 commit c40c94a3d20a8616264c2dfcda85279185d69aeb
187 Author: Renato Andreola <renato.andreola@imagos.it>
188 Date:   Wed Mar 24 23:00:47 2010 +0800
190     cfi_flash: precision and underflow problem in tout calculation
192     With old configuration it could happen tout=0 if CONFIG_SYS_HZ<1000.
194     Signed-off-by: Renato Andreola <renato.andreola@imagos.it>
195     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
196     Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
197     Signed-off-by: Stefan Roese <sr@denx.de>
199 commit c550afada5fcad426aa6a219a329feb9eedae8b2
200 Author: Rupjyoti Sarmah <rsarmah@appliedmicro.com>
201 Date:   Wed Mar 24 16:52:02 2010 +0530
203     ppc4xx fix unstable 440EPx bootstrap options
205     440EPx fixed bootstrap options A, B, D, and E sets PLL FWDVA to a value = 1.
206     This results in the PLLOUTB being greater than the CPU clock frequency
207     resulting unstable 440EPx operation resulting in various software hang
208     conditions.
210     This patch reprograms the FWDVA satisfying the requirement of setting FWDVB
211     to a value greater than 1 while using one of the four deafult bootstrap options.
213     Signed-off-by: Rupjyoti Sarmah <rsarmah@amcc.com>
214     Acked-by : Victor Gallardo <vgallardo@appliedmicro.com>
215     Signed-off-by: Stefan Roese <sr@denx.de>
217 commit fb508b8b39a52a4063d098f5a9b4355bc5b30c14
218 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
219 Date:   Wed Mar 24 10:16:20 2010 +0100
221     at91: Get rid of some warnings when building for otc570
223     The soft-i2c code for AT91 defines I2C_SOFT_DECLARATIONS
224     for direct access by dereferencing a pio pointer.
225     The OTC570 platform uses the AT91 gpio API so it does not
226     need the pio variable.
228     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
230 commit acb13868936a28502782a16e1edaec378e494a29
231 Author: Alessandro Rubini <rubini@unipv.it>
232 Date:   Sat Mar 13 17:44:08 2010 +0100
234     lcd: make 16bpp work
236     Support for 16bpp was supposed to be in the code but was not working.
237     This makes it work and has been tested in the nhk8815 board.
239     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
240     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
241     Signed-off-by: Anatolij Gustschin <agust@denx.de>
243 commit 152dda3d94e97ede7af3f9560a59a659384d4585
244 Author: Wolfgang Denk <wd@denx.de>
245 Date:   Mon Mar 22 23:25:00 2010 +0100
247     Prepare v2010.03-rc2
249     Update CHANGELOG
251     Signed-off-by: Wolfgang Denk <wd@denx.de>
253 commit d650da2dd4af99967aabc43cccbd8f160eb4cea6
254 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
255 Date:   Tue Mar 9 22:13:33 2010 +0100
257     ep93xx timer: Fix resolution of get_ticks()
259     ep93xx timer: Make get_ticks() return a value in CONFIG_SYS_HZ resolution,
260     as announced by get_tbclk()
262     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
264 commit 7e67fb5bf27a07d3b8d6b97c76f7195f7d68af58
265 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
266 Date:   Tue Mar 9 22:13:20 2010 +0100
268     ep93xx timer: Fix possible overflow in usecs_to_ticks()
270     ep93xx timer: Use 64-bit values in usecs_to_ticks() in order to avoid
271     overflows in intermediate values
273     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
275 commit daa989b47297c9f73426783599c286ef3a1f3f49
276 Author: Asen Dimov <dimov@ronetix.at>
277 Date:   Thu Mar 18 13:41:47 2010 +0200
279     correct a syntax typo in at91_matrix.h
281     Signed-off-by: Asen Dimov <dimov@ronetix.at>
283 commit 322ff395c9aec7b87a2211fe4333fdf44377c564
284 Author: Jeff Angielski <jeff@theptrgroup.com>
285 Date:   Wed Mar 17 15:09:26 2010 -0400
287     env: fix endian ordering in crc table
289     The crc table was being built as little endian for big endian
290     targets.  This would cause fw_printenv to always fail with
291     "Warning: Bad CRC, using default environment" messages.
293     Signed-off-by: Jeff Angielski <jeff@theptrgroup.com>
294     Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
296 commit 51c2ac9bb574c1420b993615268392b0c1f829f6
297 Author: Anatolij Gustschin <agust@denx.de>
298 Date:   Tue Mar 16 17:10:08 2010 +0100
300     mpc5121: cpu/mpc512x/diu.c: fix warnings
302     Fix warnings while compiling with CONFIG_VIDEO enabled:
304     diu.c: In function 'video_hw_init':
305     diu.c:158: warning: 'return' with no value, in function returning non-void
306     diu.c:162: warning: format '%ld' expects type 'long int', but argument 6 has type 'int'
307     diu.c:162: warning: format '%ld' expects type 'long int', but argument 7 has type 'int'
309     Signed-off-by: Anatolij Gustschin <agust@denx.de>
311 commit a74908161a1b37d780d3a826a86807bbc50a3857
312 Author: Anatolij Gustschin <agust@denx.de>
313 Date:   Tue Mar 16 15:29:33 2010 +0100
315     console.c: fix problem with splashimage
317     If a board uses cfb_console driver and splash image
318     and also defines CONFIG_SILENT_CONSOLE, the user is
319     locked out even if "silent" is not set. It is not
320     possible to get any output, neither on vga console
321     device nor on serial console after redirecting the
322     output to the serial console, since the GD_FLG_SILENT
323     flag remains set.
325     Fix the problem by redirecting the output from frame
326     buffer to serial console if splashimage is used.
327     Only suppress the output if "silent" environment
328     variable was set and don't set the GD_FLG_SILENT
329     flag arbitrarily.
331     Signed-off-by: Anatolij Gustschin <agust@denx.de>
333 commit 5647f78d04174b0b99857d2a7cbf25141bd14a45
334 Author: Thomas Weber <swirl@gmx.li>
335 Date:   Sat Mar 13 23:14:45 2010 +0100
337     mod change 755 => 644 for multiple files
339     I executed 'find . -name "*.[chS]" -perm 755 -exec chmod 644 {} \;'
341     Signed-off-by: Thomas Weber <swirl@gmx.li>
342     Add some more: neither Makefile nor config.mk need execute permissions.
343     Signed-off-by: Wolfgang Denk <wd@denx.de>
345 commit 99c006a320ceb9ea19135ac1512e4a81e8bebb72
346 Author: Stefano Babic <sbabic@denx.de>
347 Date:   Sat Mar 13 21:09:00 2010 +0100
349     mxcmmc: fix warnings due to access 32 bit registers with 16 bit accessors
351     Some registers of the mxcmmc driver were accessed using
352     16 bit accessor functions, because only the LSB is
353     significant. This is not needed and generates
354     warnings.
356     Signed-off-by: Stefano Babic <sbabic@denx.de>
358 commit c96f86eefc215b67dd222694ce2b6f60e6a42b0b
359 Author: Wolfgang Denk <wd@denx.de>
360 Date:   Sun Jan 17 23:55:53 2010 +0100
362     TFTP: allow for adjustable retransmission timout
364     So far, TFTP negotiated a fixed retransmission timeout of 5 seconds.
365     In some cases (busy networks, slow TFTP servers) this caused very
366     slow transfers. A new environment variable "tftptimeout" allows to
367     set this timeout. Lowering this value may make downloads succeed
368     faster in networks with high packet loss rates or with unreliable
369     TFTP servers.
371     Signed-off-by: Wolfgang Denk <wd@denx.de>
372     Cc: Ben Warren <biggerbadderben@gmail.com>
373     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
375 commit 252b404d954f91499a4477a3e1064eb237ce5a1c
376 Author: Wolfgang Denk <wd@denx.de>
377 Date:   Tue Mar 9 14:27:25 2010 +0100
379     Fix PCI_BASE_ADDRESS_5 handling in pci_hose_config_device()
381     Signed-off-by: FUJITA Kazutoshi <fujita@soum.co.jp>
382     Signed-off-by: <wd@denx.de>
383     Acked-by: Stefan Roese <sr@denx.de>
385 commit 9d90a93d367272ee65550c0c9f82615cec967c70
386 Author: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
387 Date:   Thu Feb 25 14:03:08 2010 +0100
389     cmd_mmc remove \n
391     This patch removes the \n after the help message for mmcinfo.
392     This resulted in an empty line being displayed after the mmcinfo line
393     when the help command was given.
395     Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
397 commit 67c7189dd35cb368ef665126fd17816581bd2e92
398 Author: Renato Andreola <renato.andreola@imagos.it>
399 Date:   Tue Mar 16 16:01:29 2010 -0400
401     nios2: Added support to YANU UART
403     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
405 commit 1e67fb32fbdae7949bb423c9e20b3f77c0a61663
406 Author: Thomas Chou <thomas@wytron.com.tw>
407 Date:   Tue Mar 16 12:12:48 2010 -0400
409     nios2: use generic unaligned.h
411     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
413 commit 05022629a2ca6c385dc390d32c20aa27cf5d915a
414 Author: Mike Frysinger <vapier@gentoo.org>
415 Date:   Thu Jan 21 05:01:15 2010 -0500
417     asm-blackfin/unaligned.h: add for zlib code
419     The new zlib code wants asm/unaligned.h, so have the Blackfin version pull
420     in the asm-generic/unaligned.h.
422     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
424 commit 3adc1fda38a6aacd4aaf3c2c9cc62a1e69e6de17
425 Author: Mike Frysinger <vapier@gentoo.org>
426 Date:   Thu Jan 21 05:01:14 2010 -0500
428     asm-generic/unaligned.h: dynamic default unaligned accesses
430     This is based on the asm-arm/unaligned.h, but made generic so all arches
431     that cannot do unaligned accesses can utilize it.
433     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
435 commit be129aa71882421ad0b50cd3762915d10ace27ad
436 Author: Matthias Weisser <matthias.weisser@graf-syteco.de>
437 Date:   Tue Jan 12 12:06:31 2010 +0100
439     video: Fix console display when splashscreen is used
441     If a splashscreen is used the console scrolling used the
442     scroll size as needed when a logo was displayed. This
443     patch sets the scroll size to the whole screen if
444     a splashscreen is shown.
446     Signed-off-by: Matthias Weisser <matthias.weisser@graf-syteco.de>
448 commit 93910edb595a88d394da3eb2cf5148096155dfe9
449 Author: Wolfgang Denk <wd@denx.de>
450 Date:   Fri Mar 12 23:06:04 2010 +0100
452     Prepare v2010.03-rc1
454     Coding style cleanup, update CHANGELOG.
456     Signed-off-by: Wolfgang Denk <wd@denx.de>
458 commit 4e72fb15c9073129e05820cc9c54f54bc4985835
459 Author: Wolfgang Denk <wd@denx.de>
460 Date:   Fri Mar 12 22:11:00 2010 +0100
462     standalone eepro100_eeprom: fix build error
464     Building examples/standalone/eepro100_eeprom triggers this error:
466     In file included from include/common.h:629,
467                      from eepro100_eeprom.c:24:
468     include/net.h: In function 'NetReadIP':
469     include/net.h:430: warning: implicit declaration of function 'memcpy'
470     eepro100_eeprom.c: At top level:
471     eepro100_eeprom.c:81: error: conflicting types for 'memcpy'
472     include/net.h:430: error: previous implicit declaration of 'memcpy' was here
474     Fix this.
476     Signed-off-by: Wolfgang Denk <wd@denx.de>
478 commit 1bb1809558e11eb089fba32caed9fc99d21477c1
479 Author: Wolfgang Denk <wd@denx.de>
480 Date:   Fri Mar 12 22:10:31 2010 +0100
482     Update .gitignore's: add some generated files
484     Signed-off-by: Wolfgang Denk <wd@denx.de>
486 commit 9c9cbe78dcb0afad081670cb1bdc82d227095cae
487 Author: Detlev Zundel <dzu@denx.de>
488 Date:   Mon Mar 8 14:02:57 2010 +0100
490     mpc82xx: Remove SL8245 board and the now orpahned sk98lin network driver.
492     This code has compile problems and the company does not even exist any
493     more.  So we take the liberty to drop support for it.
495     Signed-off-by: Detlev Zundel <dzu@denx.de>
496     CC: Wolfgang Denk <wd@denx.de>
497     CC: Ben Warren <biggerbadderben@gmail.com>
499 commit ca02f6f8dc4966b2a019b15e01b5070189327df2
500 Author: Kumar Gala <galak@kernel.crashing.org>
501 Date:   Wed Mar 10 17:16:48 2010 -0600
503     85xx: Drop FIT support to allow u-boot image to fit in 512k
505     The 36-bit build exceeds the 512k size we have.  Removing FIT type image
506     support allows us to fit and we dont really use it.
508     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
510 commit 5f8419597f427aaf9bb501460735d703d10db5ee
511 Author: Michael Zaidman <michael.zaidman@gmail.com>
512 Date:   Sun Feb 28 16:28:25 2010 +0200
514     Cosmetic change - indentation correction.
516     Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
518 commit a693447ceadff49155e260cbbaef4e09c926cab5
519 Author: Anatolij Gustschin <agust@denx.de>
520 Date:   Wed Feb 24 00:29:44 2010 +0100
522     cmd_mtdparts.c: prevent printbuffer overflows
524     The length of configured MTDPARTS_DEFAULT string
525     could be greater than console printbuffer size.
526     Replace printf() by puts() to avoid potential buffer
527     overflows.
529     Signed-off-by: Anatolij Gustschin <agust@denx.de>
531 commit 3920bbedcf74a073bc72950a51de75af6faa2f06
532 Author: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
533 Date:   Fri Feb 19 11:59:04 2010 +0100
535     Fix MPC8536DS documentation
537     This patch corrects small mistake in the register list in
538     doc/README.mpc8536ds. These registers are 32 bits and this one starts
539     at ....c not ....e
541     When using the ...c address I can boot from sd, when using the ...e
542     address I cannot.
544     Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
545     Acked-by: Hu Mingkai <B21284@freescale.com>
547 commit ab68f4dd193053c0ba395af15b154caca35e99f3
548 Author: Heiko Schocher <hs@denx.de>
549 Date:   Wed Feb 10 08:03:21 2010 +0100
551     doc: add README for CONFIG_HWCONFIG option
553     Signed-off-by: Heiko Schocher <hs@denx.de>
555 commit 7026ead0d3ece5e43d6b39f62fb5c4306f691224
556 Author: Heiko Schocher <hs@denx.de>
557 Date:   Tue Feb 9 15:50:27 2010 +0100
559     TQM8xx: enable device tree support on all TQM8xx based boards.
561     Also enable support for CONFIG_HWCONFIG because we use this for
562     configuring if this hardware has a FEC or not.
564     syntax:
566     hwconfig=fec:on   if hardware has an fec
567     hwconfig=fec:off  if hardware has no fec
569     Signed-off-by: Heiko Schocher <hs@denx.de>
570     Signed-off-by: Wolfgang Denk <wd@denx.de>
572 commit 6ed3b9d44c359bc829e9acd0a55fcd1c3e82b6ae
573 Author: Heiko Schocher <hs@denx.de>
574 Date:   Tue Feb 9 15:50:21 2010 +0100
576     TQM8xx: add device tree support for TQM8xx based boards.
578     Also use hwconfig to configure whether the board has a FEC or not.
579     We then can adjust the DTS to tell Linux if there is a FEC present.
581     syntax:
583     hwconfig=fec:on   if hardware has a  FEC
584     hwconfig=fec:off  if hardware has no FEC
586     Signed-off-by: Heiko Schocher <hs@denx.de>
587     Signed-off-by: Wolfgang Denk <wd@denx.de>
589 commit 143cd21fe22e69bf0cdaefd57be98f07ed8f04fa
590 Author: Wolfgang Denk <wd@denx.de>
591 Date:   Thu Mar 11 23:56:03 2010 +0100
593     Move CONFIG_UPDATE_TFTP code after CONFIG_PREBOOT
595     The auto-update feature (CONFIG_UPDATE_TFTP) requires that the env
596     variable serverip be set for the TFTP access. If DHCP is to be used
597     to get the serverip env variable, this doesn't work as DHCP happens
598     after the auto-update attempt has run. A solution is to run DHCP in
599     PREBOOT, but even this is too late.
601     To solve this, we move update_tftp() below the PREBOOT stuff.
603     Signed-off-by: Wolfgang Denk <wd@denx.de>
605 commit 1b691bb0c2fa18c9b68f15398ef6c8b9e0c0f3e3
606 Author: Mike Frysinger <vapier@gentoo.org>
607 Date:   Mon Jan 25 18:50:11 2010 -0500
609     mkimage: dont force entry point with xip
611     Some people boot images with the entry point in the middle of the blob
612     (like Linux with the head code in discardable .init.text), and there is no
613     no real requirement that the entry point be right after the mkimage header
614     when doing XIP, so let people specify whatever they want.  If they do need
615     an entry right after the header, then they still can do that with normal
616     -e behavior.
618     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
620 commit 4b99327a4121a28d2bdb2c2b841f5d97931ae905
621 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
622 Date:   Fri Jan 15 10:06:06 2010 -0500
624     PPC: Record U-Boot's relocated address in RAM and show in bdinfo.
626     This patch uses gd->relocaddr variable to store uboot's relocated
627     address in RAM and shows it in bdinfo command.
629     This patch moves CONFIG_AMIGAONEG3SE style copying of the address
630     in board_init_f to just before relocation is actually done.
632     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
633     Tested-by: Detlev Zundel <dzu@denx.de>
635 commit 8c4444ff5e1d8e9fd1a847a2fb096aa9aff66f85
636 Author: Wolfgang Denk <wd@denx.de>
637 Date:   Thu Mar 11 23:35:43 2010 +0100
639     Fix memory leak in mmc_read()
641     There is be a path through mmc_read in drivers/mmc/mmc.c where
642     malloc'd memory is not freed before exiting mmc_read: it occurs if
643     mmc_set_blocklen() returns a non-zero value.
645     Reported-by: Quentin Armitage <Quentin@Armitage.org.uk>
646     Signed-off-by: Wolfgang Denk <wd@denx.de>
648 commit 6258b04e9a41ee60f21547358a58fbcb9087735d
649 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
650 Date:   Thu Feb 11 14:57:04 2010 +0100
652     AT91: Update otc570 board to new SoC access
654     * convert otc570 board to use c stucture SoC access
655     * change gpio access to at91_gpio syntax
657     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
659 commit 7cedb29872069e782f9f97cef4ab1232736e4c85
660 Author: Jens Scharsig <js_at_ng@scharsoft.de>
661 Date:   Sun Feb 14 12:20:43 2010 +0100
663     updates the at91 main_clock calculation
665     * updates the conditional main_clock calculation (if AT91_MAIN_CLOCK defined) to c structure SoC access
666      * add need register flags
668     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
670 commit 637833c2d669f9a370706e275e7103454c3c83ec
671 Author: Prafulla Wadaskar <prafulla@marvell.com>
672 Date:   Wed Mar 3 15:27:37 2010 +0530
674     arm: kirkwood: suen3: fixed build warning
676     This patch fixes following build warning
678     Invalid Kwbimage command Type - valid names are: BOOT_FROM, NAND_ECC_MODE, NAND_PAGE_SIZE, SATA_PIO_MODE, DDR_INIT_DELAY, DATA, , spi, nand, sata, pex, uart
680     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
682 commit e4d34492017c95e4041ea0c581e1ab8d1d49381b
683 Author: Stefano Babic <sbabic@denx.de>
684 Date:   Fri Mar 5 17:54:37 2010 +0100
686     MX51: removed warnings for the mx51evk
688     The patch removes warnings at compile time and provides
689     some cleanup code:
690     - Removed comment on NAND (not yet supported) from lowlevel_init.S
691     - Removed NFMS bit definition from imx-regs.h
692       The bit is only related to MX.25/35 and can lead to confusion
693     - Moved is_soc_rev() to soc specific code (removed from mx51evk.c)
695     Signed-off-by: Stefano Babic <sbabic@denx.de>
697 commit 9d69e33d8d0f112fe3a089101d023e87431684d1
698 Author: Vipin Kumar <vipin.kumar@st.com>
699 Date:   Tue Mar 2 10:46:52 2010 +0530
701     SPEAr : Supporting new mach ids for spear310 and spear320
703     Supporting new machine ids for SoCs spear310 and spear320
705     include/asm-arm/mach-types.h has to be updated before applying
706     this patch for build to work
708     Signed-off-by: Vipin Kumar <vipin.kumar@st.com>
710 commit cc0b53c8d5d6a3f14f36982552bc3feb8ecb1db5
711 Author: Heiko Schocher <hs@denx.de>
712 Date:   Mon Mar 1 15:58:18 2010 +0100
714     arm, suen3: fix compile error, if doing not a local build
716     Signed-off-by: Heiko Schocher <hs@denx.de>
718 commit 67fa8c25f5c2d23932c0f31b035281d6abbb0965
719 Author: Heiko Schocher <[hs@denx.de]>
720 Date:   Mon Feb 22 16:43:02 2010 +0530
722     arm: add support for the suen3 board from keymile
724     Add support for the ARM part of the mgcoge2, named suen3.
725     This board is based on the Marvell Kirkwood (88F6281) SoC.
726     As there come more board variants, common config options
727     are collected in include/configs/km_arm.h. Also, this board
728     use common code for all keymile boards, which is stored in
729     board/keymile/common/common.c
731     Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
732     Signed-off-by: Stefan Roese <sr@denx.de>
733     Signed-off-by: Heiko Schocher <hs@denx.de>
735 commit 6895d4510a7758595b85b48a7f449bd61dfc812f
736 Author: John Rigby <jcrigby@gmail.com>
737 Date:   Mon Jan 25 23:12:58 2010 -0700
739     Add support for KARO TX25 board
741     This is an i.MX25 base board with only NAND
742     so it uses nand_spl to boot.
744     Signed-off-by: John Rigby <jcrigby@gmail.com>
746     Tune configuration, add support for (redundant) environment in NAND.
747     Signed-off-by: Wolfgang Denk <wd@denx.de>
749     Acked-by: Wolfgang Denk <wd@denx.de>
750     CC: Fred Fan <fanyefeng@gmail.com>
751     CC: Tom <Tom.Rix@windriver.com>
753 commit 740d6ae5b982496fcea0666b2207cb34cc0e6015
754 Author: John Rigby <jcrigby@gmail.com>
755 Date:   Mon Jan 25 23:12:57 2010 -0700
757     fec_mxc: add MX25 support
759     Use RMII for MX25
760     Add code to init gasket that enables RMII
762     Signed-off-by: John Rigby <jcrigby@gmail.com>
763     CC: Ben Warren <biggerbadderben@gmail.com>
765 commit cb17b92de03416cf4d5db5bd27ef4ae17f95e707
766 Author: John Rigby <jcrigby@gmail.com>
767 Date:   Mon Jan 25 23:12:55 2010 -0700
769     fec_mxc: cleanup and factor out MX27 dependencies
771     general cleanup
772     move clock init to cpu_eth_init in cpu/arm926ejs/mx27/generic.c
773     make MX27 specific phy init conditional on CONFIG_MX27
774     replace call to imx_get_ahbclk with one to imx_get_fecclk
775     and define imx_get_fecclk in include/asm-arm/arch-mx27/clock.h
777     Signed-off-by: John Rigby <jcrigby@gmail.com>
778     CC: Ben Warren <biggerbadderben@gmail.com>
779     CC: Fred Fan <fanyefeng@gmail.com>
780     CC: Tom <Tom.Rix@windriver.com>
782 commit 552ff8f1d9fccf57243a01afe6dbebb982867e20
783 Author: John Rigby <jcrigby@gmail.com>
784 Date:   Mon Jan 25 23:12:56 2010 -0700
786     Add support for Freescale MX25 SOC
788     ARM926EJS core with MX31 peripherals.
790     Signed-off-by: John Rigby <jcrigby@gmail.com>
791     Earlier Version Signed-off-by: Wolfgang Denk <wd@denx.de>
792     CC: Fred Fan <fanyefeng@gmail.com>
793     CC: Tom <Tom.Rix@windriver.com>
795 commit e911c983f4a8d588f831806af37eb56c95512d5d
796 Author: John Rigby <jcrigby@gmail.com>
797 Date:   Mon Jan 25 23:12:51 2010 -0700
799     mxc_serial replace platform specific clock
801     remove ifdef'd clock selection code from
802     serial_mxc.c and replace with call to imx_get_uartclk
804     Add definitions for imx_get_uartclk to imx31 and imx27
805     include files.
807     This makes it easier to add new imx platforms.
809     Signed-off-by: John Rigby <jcrigby@gmail.com>
811 commit c5fb70c9114bd0a8289444d3d5c7e360eda08232
812 Author: Stefano Babic <sbabic@denx.de>
813 Date:   Fri Feb 5 15:13:58 2010 +0100
815     Add initial support for Freescale mx51evk board
817     The patch adds initial support for the Freescale mx51evk board.
818     Network (FEC) and SD controller (fsl_esdhc) are supported.
820     Signed-off-by: Stefano Babic <sbabic@denx.de>
821     Signed-off-by: Fred Fan <fanyefeng@gmail.com>
823 commit c67bee1460a0da89ef08cbc28375171acc9a4227
824 Author: Stefano Babic <sbabic@denx.de>
825 Date:   Fri Feb 5 15:11:27 2010 +0100
827     fsl_esdhc: add support for mx51 processor
829     The esdhc controller in the mx51 processor is quite
830     the same as the one in some powerpc processors
831     (MPC83xx, MPC85xx). This patches adapts the driver
832     to support the arm mx51.
834     Signed-off-by: Stefano Babic <sbabic@denx.de>
836 commit 69df00f9d9c2f45b4576d1eae79bfac8bebb8821
837 Author: Stefano Babic <sbabic@denx.de>
838 Date:   Fri Feb 5 15:07:33 2010 +0100
840     ARM: add accessors functions
842     Some Freescale's processors of different architecture
843     have the same peripheral (eSDHC controller in PowerPC
844     and i.MX51). This patch adds accessors for
845     the internal registers of the SOCs, as already
846     implemented in the PowerPC architecture.
848     Signed-off-by: Stefano Babic <sbabic@denx.de>
850 commit 11fdade294b4d60c19ae861515aabddca1278deb
851 Author: Stefano Babic <sbabic@denx.de>
852 Date:   Fri Feb 5 15:04:43 2010 +0100
854     MMC: add weak function to detect MMC/SD card
856     Most controllers can check if there is a card in the slot.
857     However, they require pins that could be not available because
858     required by other functions and the detection of a card must
859     be performed in another way. This patch adds a weak function
860     that a board can implement to add its internal custom way
861     to check the presence of a MMC/SD card.
863     Signed-off-by: Stefano Babic <sbabic@denx.de>
865 commit 250de12bc2f7842807d25e16971c5bea59c3a4b1
866 Author: Stefano Babic <sbabic@denx.de>
867 Date:   Wed Jan 20 18:20:39 2010 +0100
869     mmc: check correctness of the voltage mask in ocr
871     Most cards do not answer if some reserved bits
872     in the ocr are set. However, some controllers
873     can set bit 7 (reserved for low voltages), but
874     how to manage low voltages SD card is not yet
875     specified.
877     Signed-off-by: Stefano Babic <sbabic@denx.de>
879 commit 71d64c0e4fa5910c15eca175a8f3b0e1c1d6711c
880 Author: Stefano Babic <sbabic@denx.de>
881 Date:   Wed Jan 20 18:20:19 2010 +0100
883     serial_mxc: add support for MX51 processor
885     The patch adds support for the Freescale mx51 processor.
887     Signed-off-by: Stefano Babic <sbabic@denx.de>
888     Signed-off-by: Fred Fan <fanyefeng@gmail.com>
890 commit 67adcee0e091f0935e7dd722404d2a864cdecbe7
891 Author: Stefano Babic <sbabic@denx.de>
892 Date:   Wed Jan 20 18:20:04 2010 +0100
894     MX51: Add pin and multiplexer definitions.
896     The patch add header files to support the pin multiplexer
897     of the the Freescale i.MX51 processor.
899     Signed-off-by: Stefano Babic <sbabic@denx.de>
900     Signed-off-by: Fred Fan <fanyefeng@gmail.com>
902 commit fb87a1ed9205bf5f843e1f264198ce946602deda
903 Author: Stefano Babic <sbabic@denx.de>
904 Date:   Wed Jan 20 18:19:51 2010 +0100
906     MX51: Add register definitions
908     The patch add header files to support the Freescale i.MX51
909     processor, setting definitions for internal registers.
911     Signed-off-by: Stefano Babic <sbabic@denx.de>
912     Signed-off-by: Fred Fan <fanyefeng@gmail.com>
914 commit 64fdf452a85718935d82416d141be144b262c542
915 Author: Stefano Babic <sbabic@denx.de>
916 Date:   Wed Jan 20 18:19:32 2010 +0100
918     MX51: Add initial support for the Freescale MX51
920     The patch add initial support for the Freescale i.MX51 processor
921     (family arm cortex_a8).
923     Signed-off-by: Stefano Babic <sbabic@denx.de>
924     Signed-off-by: Fred Fan <fanyefeng@gmail.com>
926 commit 18ba012b9b919a7c264dc6299f954d7f53d06605
927 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
928 Date:   Wed Feb 24 19:45:39 2010 +0100
930     edb93xx: Fix SDRAM initialization
932     edb93xx: Fix SDRAM initialization by issuing a precharge all command before
933     forcing the precharge and select mode register update mode before programming
934     the mode registers. Write to the SDRAM banks in order to force a precharge,
935     reading causes the edb93xx boards to hang
937     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
939 commit cade7d9577d4d17f55404b5e60cd5e5b0b605c31
940 Author: Anders Darander <anders.darander@gmail.com>
941 Date:   Thu Feb 25 15:57:03 2010 +0100
943     Add bootcount to AT91
945     Use AT91_GPBR 3 as a bootcount register.
946     The bootmagic and the bootcount shares AT91_GPBR 3.
948     Signed-off-by: Anders Darander <ad@datarespons.se>
950 commit 5f353484093876d7021f20fa4bd63f82d32941b9
951 Author: Tom Rix <Tom.Rix@windriver.com>
952 Date:   Thu Feb 25 12:05:32 2010 -0600
954     ARM Update mach-types
956     Fetched from http://www.arm.linux.org.uk/developer/machines/download.php
957     And built with
959     repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm
960     commit aea187c46f7d03ce985e55eb1398d0776a15b928
962     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
964 commit c7ad13a24295ded880d7bcd17181df4a5f3bac58
965 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
966 Date:   Wed Feb 24 00:22:09 2010 +0100
968     ep93xx: Refactoring of timer code
970     ep93xx: Refactoring of the timer code, including the following changes
972      * use a free running timer instead of a periodical one
973      * use unsigned long long for total number of ticks
974      * hold the timer state in a structure instead of separate variables
975      * increment the timer counter instead of decrementing it
976      * remove unused function udelay_masked()
977      * remove unused function set_timer()
979     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
981 commit d9f505e3cddbb7afce26dcfe0fd19b207ee57c09
982 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
983 Date:   Wed Feb 24 00:22:00 2010 +0100
985     ep93xx: Fix calculation of sys ticks in clk_to_systicks()
987     ep93xx: Use unsigned long long for calculation of sys ticks in clk_to_systicks()
988     for proper handling of large intermediate values
990     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
992 commit 041d42e789aba20296ffcde92173f100a9592880
993 Author: Siarhei Siamashka <siarhei.siamashka@gmail.com>
994 Date:   Tue Feb 23 23:56:36 2010 -0500
996     OMAP3: workaround for ARM Cortex-A8 erratum 725233
998     725233: PLD instructions executed with PLD data forwarding
999     enabled can result in a processor deadlock
1001     This deadlock can happen when NEON load instructions are used together
1002     with cache preload instructions (PLD). The problematic conditions
1003     can be triggered in-the-wild by NEON optimized functions from pixman
1004     library (http://cgit.freedesktop.org/pixman), which perform dynamic
1005     adjustment of prefetch distance.
1007     The workaround disables PLD data forwarding by setting PLD_FWD bit
1008     in L2 Cache Auxiliary Control Register as recommended in ARM Cortex-A8
1009     errata list.
1011     The deadlock can only happen on r1pX revisions of Cortex-A8 (used in
1012     OMAP34xx/OMAP35xx). Performance impact of the workaround is practically
1013     non-existant.
1015     Signed-off-by: Siarhei Siamashka <siarhei.siamashka@gmail.com>
1016     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1018 commit 7c966a8bdfdab80cafbfed035d7ae6ea6f58f756
1019 Author: Achim Ehrlich <aehrlich@taskit.de>
1020 Date:   Wed Feb 24 10:29:16 2010 +0100
1022     ARM change name of defines for AT91 arm926ejs
1024     Configuration defines should be preceeded with CONFIG_SYS_. Renamed
1025     some at91 specific defines to conform to this naming convention:
1027     AT91_CPU_NAME to CONFIG_SYS_AT91_CPU_NAME
1028     AT91_MAIN_CLOCK to CONFIG_SYS_AT91_MAIN_CLOCK
1030     Signed-off-by: Achim Ehrlich <aehrlich@taskit.de>
1032 commit 5c97a1de196fdcbe9d098948ecf4fccfbea23b78
1033 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
1034 Date:   Wed Feb 17 21:29:45 2010 -0500
1036     VoiceBlue: fix linker errors
1038     linking eeprom with libgeneric.a is not really needed and causes following
1039     error:
1040     ../../lib_generic/libgeneric.a(string.o): In function `strcmp':
1041     /home/ladis/src/u-boot-ti/lib_generic/string.c:152: multiple definition of `strcmp'
1042     ../../examples/standalone/libstubs.a(stubs.o):include/_exports.h:24: first defined here
1043     make[1]: *** [eeprom.srec] Error 1
1045     Fix undefined reference to memset generated by some versions of gcc
1046     to zero out initialized structure on the stack:
1047     eeprom.o: In function `eeprom':
1048     board/voiceblue/eeprom.c:152: undefined reference to `memset'
1049     make[1]: *** [eeprom] Error 1
1051     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1052     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1054 commit a32c1e0ecd563c65c617b0eb9080a10d286bb0b4
1055 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
1056 Date:   Wed Feb 17 21:29:39 2010 -0500
1058     VoiceBlue: limit line lenght to 80 characters
1060     Reindent configuration header to limit line lenght to 80 characters by
1061     removing obvious and sometimes misleading comments.
1063     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1064     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1066 commit 779b534385adf0a1efdd8b40dbacae11598575b8
1067 Author: Ladislav Michl <ladis@linux-mips.org>
1068 Date:   Wed Feb 17 21:13:53 2010 -0500
1070     netstar.h: do not exceed 80 columns
1072     Limit line length to 80 characters mostly by removing obvious and sometimes
1073     misleading comments. Fix indentation, too.
1075     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1076     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1078 commit 3fca29294abd73915de2bd0fcf2650e03cc9becc
1079 Author: Sandeep Paulraj <s-paulraj@ti.com>
1080 Date:   Wed Feb 17 21:09:21 2010 -0500
1082     DaVinci: Adding entry to MAKEALL for DM365 EVM
1084     The patch adds an entry for the DM365 EVM to MAKEALL
1086     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1088 commit 37cffdad06af5a4538dd090794f213292135adbc
1089 Author: Nick Thompson <nick.thompson@ge.com>
1090 Date:   Wed Feb 17 20:37:24 2010 -0500
1092     da830evm: Add support for TI EMAC
1094     Adds support for ethernet networking on the da830evm platform.
1096     This platform uses an SoC EMAC interface and a 3 port ethernet
1097     switch as a PHY with an RMII interface. The PHY also has a i2c
1098     interface for configuring the switch functions.
1100     Signed-off-by: Nick Thompson <nick.thompson@ge.com>
1101     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1103 commit d8775d03f3f0116241cfb45c7ef27fd080904c4a
1104 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
1105 Date:   Mon Feb 8 14:19:06 2010 -0500
1107     NetStar: make mtdparts default ready for recent kernels
1109     Recent kernels are using generic NAND and NOR drivers. Change
1110     default mtdparts to reflect it.
1112     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1113     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1115 commit de9a1e0d08301ea4925ee137af240424b107a608
1116 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
1117 Date:   Mon Feb 8 14:17:45 2010 -0500
1119     NetStar: fix default environment
1121     Correct switching partitions after upgrade and make it more readable.
1123     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1124     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1126 commit 3a67566c1def7d2eb935b31b3b282ba893c3f330
1127 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
1128 Date:   Mon Feb 8 14:15:47 2010 -0500
1130     NetStar: eeprom - fix linker error
1132     linking eeprom with libgeneric.a is not really needed and causes following
1133     error:
1134     ../../lib_generic/libgeneric.a(string.o): In function `strcmp':
1135     lib_generic/string.c:152: multiple definition of `strcmp'
1136     ../../examples/standalone/libstubs.a(stubs.o):include/_exports.h:24: first defined here
1137     Remove eeprom linker script as well and generate entry point object
1138     (to start application by jumping on its beginning) on the fly.
1139     Out-of-tree build tested as well.
1141     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1142     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1144 commit 308d463eaf6f4ada00193306a6e643298d1990d8
1145 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
1146 Date:   Mon Feb 8 14:15:43 2010 -0500
1148     NetStar: eeprom - be less verbose
1150     Use shorter yet descriptive messages, replace printf() with
1151     puts() where appropriate. This saves few bytes.
1153     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1154     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1156 commit b29ff6277239f5c8bc9366e74afac5a36ab3b23e
1157 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
1158 Date:   Mon Feb 8 14:15:15 2010 -0500
1160     NetStar: eeprom - undefined reference to `memset'
1162     Defining partially initialized struct eth_device on stack means
1163     gcc has to zero out it, and some gcc versions optimize this with
1164     an implicit call to memset. Move definition to data section
1165     to avoid that (it has also nice side effect that we need not
1166     to pass it to helper functions anymore)
1168     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1169     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1171 commit 8f9a221045a4ace14fe006e1353c593619d1001a
1172 Author: Wolfgang Wegner <w.wegner@astro-kom.de>
1173 Date:   Tue Mar 2 10:59:19 2010 +0100
1175     ] fix monitor protection for CONFIG_MONITOR_IS_IN_RAM
1177     For platforms with flash below ram addresses, the current check to
1178     activate monitor protection is wrong/insufficient. This patch fixes
1179     CONFIG_MONITOR_IS_IN_RAM for these systems by adding a check for
1180     this configuration.
1182     Signed-off-by: Wolfgang Wegner <w.wegner@astro-kom.de>
1183     Signed-off-by: Stefan Roese <sr@denx.de>
1185 commit c7de810c79a00aa6fc08900ee0bb57bd295db733
1186 Author: Wolfgang Wegner <w.wegner@astro-kom.de>
1187 Date:   Tue Mar 2 10:59:20 2010 +0100
1189     allow MCF532x to use CONFIG_MONITOR_IS_IN_RAM
1191     CONFIG_MONITOR_IS_IN_RAM is broken for MCF532x. This patch fixes this
1192      by conditionally
1193     - removing the vector table at the beginning of code
1194     - not overwriting the vector base register
1195     - removing the code to re-set the PLL, which effectively disables
1196       SDRAM access
1198     Signed-off-by: Wolfgang Wegner <w.wegner@astro-kom.de>
1200 commit bb907ab51fd04255923b7ecf9dab352078808351
1201 Author: Richard Retanubun <RichardRetanubun at RuggedCom.com>
1202 Date:   Mon Oct 26 14:19:17 2009 -0400
1204     MCF5271-only: Added a weak board_reset function to allow custom reset
1206     This patch adds a board_reset function to allow boards to specify
1207     their own custom reset sequence (e.g. resetting by timing out watchdog).
1208     Tested only on MCF5271, can be expanded if needed.
1210     Based on Mike Frysinger's suggestion on:
1211     http://article.gmane.org/gmane.comp.boot-loaders.u-boot/70304
1213     Signed-off-by: Richard Retanubun <RichardRetanubun at RuggedCom.com>
1215 commit 992d7129500d239d684c15fa2d61e0a8f2e64457
1216 Author: Wolfgang Wegner <w.wegner@astro-kom.de>
1217 Date:   Wed Oct 28 15:11:00 2009 -0500
1219     MCF532x: make icache_enable use CONFIG_SYS_SDRAM_SIZE
1221     in cpu/mcf532x/start.S, the function icache_enable enables the cache for
1222     a fixed 32MB region starting at the SDRAM start address; this patch
1223     changes the function to cover the region defined by CONFIG_SYS_SDRAM_SIZE
1225     Signed-off-by: Wolfgang Wegner <w.wegner at astro-kom.de>
1227 commit 870bf3ee60320b58f8970ffe3ddebda0e8ac62f7
1228 Author: Wolfgang Wegner <w.wegner@astro-kom.de>
1229 Date:   Wed Dec 9 17:32:12 2009 -0500
1231     add include/asm-m68k/unaligned.h
1233     lib_generic/zlib.c needs include/asm/unaligned.h since commit
1234     cd514aeb996e2f7aefbe1f78481965d9d074aed4, which broke compilation for
1235     Coldfire/M68K. This patch adds the missing header for these
1236     architectures.
1238     Signed-off-by: Wolfgang Wegner <w.wegner at astro-kom.de>
1240 commit da5e083590bb62ca6d7f08d3714d07ba736da863
1241 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1242 Date:   Mon Feb 8 11:50:16 2010 +0900
1244     sh: Add asm/unaligned.h and asm/unaligned-sh4a.h from Linux kernel
1246     zlib.c demands asm/unaligned.h. But, SH does not have these.
1247     This commit add asm/unaligned.h and asm/unaligned-sh4a.h from Linux
1248     kernel and modifyf for u-boot.
1250     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1252 commit fe389da6ae739816879606ecde4ab25f4292377d
1253 Author: Kim Phillips <kim.phillips@freescale.com>
1254 Date:   Mon Mar 1 11:10:17 2010 -0600
1256     mpc83xx: fix out-of-tree mpc8315 nand build
1258     commit 2e95004deb6e33e33bf1b8a92a38cd2115bac4c2 "mpc83xx: Add NAND boot support
1259     for MPC8315E-RDB boards" symlinked nand_spl/board/freescale/mpc8315erdb to
1260     mpc8313erdb in order to not duplicate code.
1262     Since the main makefile builds nand_spl/board/$(BOARDDIR) (which makes sense),
1263     and the board Makefile and linker script are the only two necessary files
1264     to enable out-of-tree building, and other boards have duplicated nand makefiles
1265     (e.g. 8536ds & 8569mds), it only seems prudent to copy these two files in the
1266     name of the 8315 too.
1268     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1269     Cc: Anton Vorontsov <avorontsov@ru.mvista.com>
1270     Cc: Wolfgang Denk <wd@denx.de>
1272 commit 4e7e12dfa103cb8ec6dc7547dd1c9976337dc1fd
1273 Author: Kim Phillips <kim.phillips@freescale.com>
1274 Date:   Mon Feb 22 19:39:16 2010 -0600
1276     mpc83xx: vme8349: fix incorrect BR0_PRELIM port size comment
1278     commit 98d92d8c9f4021629a45261ad5ec3f3595f3a27a "sbc8349: fix incorrect
1279     comment" missed this one.
1281     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1283 commit 87800f72414b830756aefc757dd191688febacf9
1284 Author: Eugene O'Brien <eugene.g.obrien@gmail.com>
1285 Date:   Wed Feb 24 14:10:24 2010 -0500
1287     ppc4xx: Corrected EBC register bit definitions
1289     Corrected the bit field positions of the external master priority low
1290     and the external master priority high values in the EBC configuration
1291     register. These bit field positions differ between PPC405 and PPC440
1292     processors
1294     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
1295     Signed-off-by: Stefan Roese <sr@denx.de>
1297 commit f3651764e57e353251695691677bd95ba5a420bc
1298 Author: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
1299 Date:   Mon Feb 22 22:49:06 2010 +0100
1301     cmd_itest.c: fix pointer dereferencing
1303     fix pointer dereferencing
1304     if the size is .b and .w an 8 or 16 bit access is done.
1306     Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
1307     Acked-by: Detlev Zundel <dzu@denx.de>
1309 commit 0ad22703f06af5fe100cfe6f08b1f32ea89cd5b1
1310 Author: Kim Phillips <kim.phillips@freescale.com>
1311 Date:   Mon Feb 22 19:37:56 2010 -0600
1313     tools: fix imximage warning
1315     Fix build warning:
1317     Configuring for MPC837XEMDS board...
1318     imximage.c: In function `imximage_parse_cfg_file':
1319     imximage.c:146: warning: passing argument 2 of `getline' from incompatible pointer type
1320     /usr/include/bits/stdio.h:116: note: expected `size_t *' but argument is of type `uint32_t *'
1322     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1324 commit 5b28e913f4519870ad2ca06cd7845b053f78bf0f
1325 Author: Stefano Babic <sbabic@denx.de>
1326 Date:   Fri Feb 5 15:16:02 2010 +0100
1328     mkimage: SEGFAULT with imximage on 64 bit systems
1330     Running mkimage to generate an imximage produces a SEGFAULT
1331     on 64 bit machines due to pointer arithmetic limited to 32 bit.
1333     Signed-off-by: Stefano Babic <sbabic@denx.de>
1334     Acked-by: Kim Phillips <kim.phillips@freescale.com>
1336 commit ecd1a09b81f2ed6e6ba7bd1d0bfb0cc3d0ea2ad0
1337 Author: Kim Phillips <kim.phillips@freescale.com>
1338 Date:   Thu Feb 18 19:28:12 2010 -0600
1340     mpc83xx: remove hardcoded network addresses from config files
1342     and avoid e.g., two identical boards from causing random networking
1343     conflicts when hooked up to the same network.
1345     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1347 commit 4c006dd1501283eecaea813a0e5e225e9ee6fdeb
1348 Author: Michael Zaidman <michael.zaidman@gmail.com>
1349 Date:   Mon Feb 15 10:02:32 2010 +0200
1351     Bug: do_reset issued via netconsole does not reset mpc83xx cpu.
1353     The do_reset routine in the cpu/mpc83xx/cpu.c file does not reset
1354     the mpc83xx cpu when issued via netconsole.
1356     Moving the console output "resetting the board." to the beginning of
1357     the routine before disabling interrupts solved the problem.
1359     Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
1360     Acked-by: Detlev Zundel <dzu@denx.de>
1361     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1363 commit 77e7273c40315abd2f3c17ad8d46a78950e3e65f
1364 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1365 Date:   Wed Feb 3 22:48:09 2010 +0100
1367     new board (eb_cpux9k2)
1369     * new board (eb_cpux9k2)
1370      * support for EB+CPUx9K2 board by BuS Elektronik GmbH & Co. KG
1371      * select via make eb_cpux9k2_config
1372      * this also demonstrates, how to use boards with AT91RM9200 cpu
1373        in at91 arch tree
1375     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1377 commit 6799a80f7644d78988187390dfd37352f20ad710
1378 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1379 Date:   Wed Feb 3 22:47:57 2010 +0100
1381     new at91_emac network driver (NET_MULTI api)
1383     * add's at91_emac (AT91RM9200) network driver (NET_MULTI api)
1384      * enable driver with CONFIG_DRIVER_AT91EMAC
1385      * generic PHY initialization
1386      * modify AT91RM9200 boards to use NET_MULTI driver
1387      * the drivers has been tested with LXT971 Phy and DM9161 Phy at MII and RMII
1388        interface
1390     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1392 commit 98250e8e17fc76b3981708c6e63d41f875bf0359
1393 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1394 Date:   Wed Feb 3 22:47:35 2010 +0100
1396     prepare joining at91rm9200 into at91
1398     * prepare joining at91 and at91rm9200
1399      * add modified copy of soc files to cpu/arm920t/at91 to make
1400        possible to compile at91rm9200 boards in at91 tree instead
1401        of at91rm9200
1402      * add header files with c structure defs for AT91 MC, ST and TC
1403      * the new cpu files are using at91 c structure soc access
1404      * please read README.soc-at91 for details
1406     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1408 commit 1b34f00c28a3023693d9b31e7bd1a9212af8352f
1409 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1410 Date:   Wed Feb 3 22:47:18 2010 +0100
1412     update at91sam9263ek board to new SoC access
1414     * convert at91sam9263ek board to use c stucture SoC access
1415      * change gpio access to at91_gpio syntax
1417     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1419 commit 0cf0b93161beb3f3ed5e37e6112aedf15da17e8a
1420 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1421 Date:   Wed Feb 3 22:46:58 2010 +0100
1423     convert common files to new SoC access
1425     * add's a warning to all files, which need update to new SoC access
1426      * convert common files in cpu/../at91 and a lot of drivers to use
1427        c stucture SoC access
1429     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1431 commit 7f9e8633ac9c846e7e4f867507cbd5de1bd99e0c
1432 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1433 Date:   Wed Feb 3 22:46:46 2010 +0100
1435     convert all at91 files to use at91_gpio driver syntax
1437     * convert all files cpu/../at91 to use at91_gpio driver syntax
1438      * change AT91_PINP([A-F])(\d+) to AT91_PIO_PORT\1, \2
1439        this makes all 160 AT91_PINPxxx defines obsolete
1440      * AT91_PINPxxx defines and gpio.h can be remove, if all boards converted to new SoC access
1442     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1444 commit ea8fbba73184a40437bdeccd888cf448d5f1105e
1445 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1446 Date:   Wed Feb 3 22:46:16 2010 +0100
1448     add a new AT91 GPIO driver
1450     * add a real AT91 GPIO driver instead of header inline code
1451     * resolve the mixing of port and pins
1452     * change board config files to use new driver
1453     * add macros to gpio to realize backward compatibility
1455     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1457 commit 5d8e359c38d3ab80015e47d0cab792efe75cacf9
1458 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1459 Date:   Wed Feb 3 22:46:01 2010 +0100
1461     add c structures for SoC access
1463     * add's c structures for SoC access to pheriperials head files
1465     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1467 commit 425de62d40f84524b90e776b141b060cd438a9fe
1468 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1469 Date:   Wed Feb 3 22:45:42 2010 +0100
1471     add new CONFIG_AT91_LEGACY
1473     * add's the new temporary CONFIG_AT91_LEGACY to all board configs
1474      This will need for backward compatiblity, while change the SoC access
1475      to c structures. If CONFIG_AT91_LEGACY is defined, the deprecated
1476      SoC is used.
1478     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1480 commit 3a4e43921d2599453ea87c623099e5f347c9e54a
1481 Author: Nick Thompson <nick.thompson@ge.com>
1482 Date:   Mon Feb 8 11:36:16 2010 -0500
1484     DA830 EVM: Enable NAND support on Spectrum Digital EVM
1486     The EVM UI extender card has a NAND device. This change will enable
1487     saveenv to work with NAND and Linux to be booted using:
1489         mtdparts default
1490         nboot kernel
1491         bootm
1493     Signed-off-by: Nick Thompson <nick.thompson@ge.com>
1494     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1496 commit 6228e6389e5ef472d5f43cc5ec4f309323305638
1497 Author: Nick Thompson <nick.thompson@ge.com>
1498 Date:   Mon Feb 8 11:34:58 2010 -0500
1500     Davinci: Add EMIF-A macros for setting chip select parameters
1502     The patch adds EMIF-A macros for setting chip select parameters
1504     Signed-off-by: Nick Thompson <nick.thompson@ge.com>
1505     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1507 commit b74064a0e2984a166e3575852f3697ef5595a97b
1508 Author: Sanjeev Premi <premi@ti.com>
1509 Date:   Mon Feb 8 11:33:25 2010 -0500
1511     OMAP3: Avoid re-write to PRM_CLKSRC_CTRL
1513     In function get_osc_clk_speed(), do not change/ update
1514     the divider for SYS_CLK as it can has cascading effect
1515     on the other derived clocks.
1517     Sudden change in divider value can lead to inconsistent
1518     behavior in the system - often leading to crashes.
1520     The problem was found when working with OMAP3EVM using
1521     DM3730 processor card.
1523     The patch has been tested with OMAP3530 on OMAP3EVM as
1524     well
1526     Signed-off-by: Sanjeev Premi <premi@ti.com>
1527     Signed-off-by: Hiremath Vaibhav <hvaibhav@ti.com>
1528     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1530 commit eff536befd3efab538bba10bad07ecff63c9f470
1531 Author: Magnus Lilja <lilja.magnus@gmail.com>
1532 Date:   Tue Feb 9 22:05:39 2010 +0100
1534     SPI: Fix 32 bit transfers in mxc_spi.c
1536     Commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f,  "i.MX31: fix SPI
1537     driver for shorter than 32 bit" broke 32 bit transfers. This patch
1538     makes single 32 bit transfer work again.
1540     Transfer lengths that are known not to work will abort and print
1541     an error message.
1543     Tested on i.MX31 Litekit and i.MX31 PDK using 32 bit transfers to
1544     the MC13783/ATLAS chip (using the 'date' command).
1546     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
1548 commit 39a9142203e610bf2b1a216085e374277fd28f9f
1549 Author: Alessandro Rubini <rubini-list@gnudd.com>
1550 Date:   Sat Feb 6 20:54:05 2010 +0100
1552     edb93xx: enable the uart in devicecfg register
1554     printf goes to uart1, but it will block forever waiting for
1555     busy to go off unless the uart is enabled first.
1557     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
1559 commit 822bd70db49773b4d57eaa484dca83386a6b3479
1560 Author: Alessandro Rubini <rubini-list@gnudd.com>
1561 Date:   Sat Feb 6 20:53:54 2010 +0100
1563     edb93xx: change calculation un early_udelay.h
1565     Previous code compiled with gcc-4.2.2 makes a call to
1566     __aeabi_uidiv to divide by 20. As a side effect it was
1567     not inline any more, and so sdram_cfg used the stack
1568     as well, but this is early code that has no stack yet.
1569     The patch explicitly removes the division, so no stack is used.
1571     The calculation of the counter calls a division by 20
1573     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
1575 commit c50a0f503967d435150bbb9f2f816ce33afdf231
1576 Author: Alessandro Rubini <rubini-list@gnudd.com>
1577 Date:   Sat Feb 6 20:53:43 2010 +0100
1579     EP93xx: fix syscon_regs definition
1581     The structure was missing a reserved entry (not listed in the manual,
1582     actually), so the last registers had a wrong offset. This prevented
1583     all swlocked registers to be modified as swlock is last in the structure.
1585     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
1587 commit fcfb632bd1e9de645b015cf73a78183c299743d8
1588 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
1589 Date:   Mon Feb 1 21:29:39 2010 +0100
1591     ARM: Add support for EP93xx SoCs
1593     Add support for the Cirrus EP93xx platform
1595     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
1596     Acked-by: Tom <Tom.Rix@windriver.com>
1598 commit cf3c142ee4be0f077f8b84593f1b24b35d14039e
1599 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
1600 Date:   Mon Feb 1 21:29:48 2010 +0100
1602     Add support for EDB93xx boards
1604     Added support for the following EDB93xx boards:
1606     EDB9301
1607     EDB9302
1608     EDB9302A
1609     EDB9307
1610     EDB9307A
1611     EDB93012
1612     EDB9315
1613     EDB9315A
1615     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
1617 commit d798e27b14543762f9f5d0561a3430c7f9e2153b
1618 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
1619 Date:   Wed Jan 27 11:12:28 2010 -0500
1621     NetStar: Remove debug junk leaked into eeprom utility
1623     This patch removes debug junk leaked into eeprom utility.
1625     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1626     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1628 commit 89e94d81eda9af2e1c35e97125b0c049335c70fc
1629 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
1630 Date:   Wed Jan 27 11:12:23 2010 -0500
1632     NetStar: make crcit utility more readable
1634     This patch makes the crcit utility more readable
1636     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1637     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1639 commit 3843e7dc934d8ef7c592f5a2106885efe32eac7f
1640 Author: Ladislav Michl <Ladislav.Michl@seznam.cz>
1641 Date:   Wed Jan 27 11:12:08 2010 -0500
1643     NetStar: Disable CONFIG_CMD_JFFS2
1645     This patch removes "CONFIG_CMD_JFFS" from the board config
1647     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1648     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1650 commit 632e1d9014848ec8d983a629c2e35b4423816336
1651 Author: Tom Rix <Tom.Rix@windriver.com>
1652 Date:   Wed Jan 27 11:11:55 2010 -0500
1654     OMAP3 Move declaration of gpmc_cfg.
1656     Every omap3 board config file declared the global variable gpmc_cfg.
1657     This changes moves the declaration to a better location in the
1658     arch dependent header file cpu.h.
1660     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1661     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1663 commit 093d6018cf0a8dae614c2924c0013d97e2a48662
1664 Author: Scott Ellis <scott@jumpnowtek.com>
1665 Date:   Wed Jan 27 11:11:46 2010 -0500
1667     Overo GPMC registers
1669     Use appropriate GPMC timings for the LAN9221 controller on the
1670     Gumstix Overo expansion boards not the values in arch-omap3/mem.h
1671     which are for a different ethernet controller.
1673     Signed-off-by: Scott Ellis <scott@jumpnowtek.com>
1674     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1676 commit 63a47dfd07536e399665ca7504bac512bf21491e
1677 Author: Nick Thompson <nick.thompson@ge.com>
1678 Date:   Wed Jan 27 11:11:28 2010 -0500
1680     da830evm: Use table driven pin mux configuration
1682     Tidyup the pin muxer configuration using the Davinci table driven
1683     pinmux configuration function and data tables.
1685     Signed-off-by: Nick Thompson <nick.thompson@ge.com>
1686     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1688 commit 8ed5885693b39c5c2cca5574dd98d6ad8a982702
1689 Author: Sekhar Nori <nsekhar@ti.com>
1690 Date:   Wed Jan 27 11:10:40 2010 -0500
1692     TI DaVinci: Driver for the davinci SPI controller
1694     This adds a driver for the SPI controller found on davinci
1695     based SoCs from Texas Instruments.
1697     Signed-off-by: Sekhar Nori <nsekhar@ti.com>
1698     Signed-off-by: Sudhakar Rajashekhara <sudhakar.raj@ti.com>
1699     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1701 commit 44d80256229d05862622f4dd886466fd70fe04ae
1702 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
1703 Date:   Mon Jan 25 10:50:41 2010 +0100
1705     at91: Add esd gmbh OTC570 board support
1707     This patch adds support for esd gmbh OTC570 board.
1708     The OTC570 is based on an Atmel AT91SAM9263 SoC.
1710     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
1712 commit e39bf1e2a9e437174687de687c127ec980a93eeb
1713 Author: Mike Frysinger <vapier@gentoo.org>
1714 Date:   Mon Feb 8 15:30:16 2010 -0500
1716     kgdb: cpu/mpc* cpu/74xx: include kgdb.h when needed
1718     Commit cbb0cab1d929839d broke some platforms which used kgdb code but
1719     didn't actually include kgdb.h.  So include kgdb.h in all the relevant
1720     traps code.
1722     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1724 commit ab5a0dcb9c8f19e351fc33c5db91469bfb1d9438
1725 Author: Stefan Roese <sr@denx.de>
1726 Date:   Tue Feb 2 13:43:48 2010 +0100
1728     net: Use 0.5 sec timeout in miiphy_reset() instead of counting loop
1730     This patch fixes a problem I've notived on a buggy PPC4xx system. This
1731     system has problems with the PHY MDIO communication and seemed to be
1732     stuck/crashed in miiphy_reset(). But degugging revealed, that the CPU
1733     didn't crash, but "only" hung in this counting loop for about 2 minutes.
1735     This patch now uses a real timeout of 0.5 seconds (as mentioned in the
1736     comment in miiphy_reset).
1738     Signed-off-by: Stefan Roese <sr@denx.de>
1739     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1741 commit 4294b2485bf0e8d68c893190a96bb0e7856b12c4
1742 Author: Stefano Babic <sbabic@denx.de>
1743 Date:   Mon Feb 1 14:51:30 2010 +0100
1745     fec_mxc: add support for MX51 processor
1747     The patch add support for the Freescale mx51 processor
1748     to the FEC ethernet driver.
1750     Signed-off-by: Stefano Babic <sbabic@denx.de>
1751     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1753 commit e66b19ce6dbe6f91b18ba47273cbe89eb5a80e78
1754 Author: Siddarth Gore <gores@marvell.com>
1755 Date:   Tue Jan 19 11:09:07 2010 +0530
1757     NET: kirkwood-egiga smi access fix
1759     Although the datasheet mentions seperate smi registers for each
1760     port, using Port 1 smi register to access ethernet phys does not
1761     work. Hence only Port 0 smi register should be used to access all
1762     devices connected to the smi bus. This behavior is consistant with
1763     the mv643xx driver in the linux kernel.
1765     Signed-off-by: Siddarth Gore <gores@marvell.com>
1766     Acked-by: Prafulla Wadaskar <prafulla@marvell.com>
1767     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1769 commit a1b322a98319de568b3bc38029ef7e123643c1e8
1770 Author: Ladislav Michl <ladis@linux-mips.org>
1771 Date:   Mon Feb 1 23:34:25 2010 +0100
1773     ns16550: kick watchdog while waiting for a character
1775     ns16550 busyloops waiting for incoming byte causing watchdog to reboot
1776     while waiting for a key press. A call to WATCHDOG_RESET in NS16550_getc
1777     loop fixes it.
1779     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1781 commit 84d36b30181acfb72f22d1105c15574b30ea2fa1
1782 Author: Remy Bohmer <linux@bohmer.net>
1783 Date:   Mon Feb 1 19:40:47 2010 +0100
1785     USB: usb_control_msg wait for driver ISR to set status.
1787     This patch changes usb_control_msg back to the state prior to commit
1788     48867208444cb2a82e2af9c3249e90b7ed4a1751.
1790     The USB driver ISR routine may update the status.
1792     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
1794 commit 6e20e64f5c6deb5b48e40a0cba4877f9170545e0
1795 Author: Prathap Srinivas <msprathap@ti.com>
1796 Date:   Mon Jan 11 15:36:46 2010 +0530
1798     musb: Add host support for DM365 EVM
1800     Add support for musb host on DM365 EVM.
1802     Signed-off-by: Prathap Srinivas <msprathap@ti.com>
1804 commit ec2aadb40855cecb088b68c062e3534d6ce39128
1805 Author: Cliff Cai <cliff.cai@analog.com>
1806 Date:   Tue Jan 19 00:10:42 2010 -0500
1808     usb: musb: fix Blackfin DMA register padding
1810     The conversion from offsets to C structs lost a little padding in the DMA
1811     register map.  Accessing endpoints other than ep0 with DMA would fail as
1812     the addresses wouldn't be adjusted correctly.
1814     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
1815     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1817 commit d0750bc9e5932baf4c90eda2456106f21a26bdc1
1818 Author: Wolfgang Denk <wd@denx.de>
1819 Date:   Mon Feb 1 11:36:29 2010 +0100
1821     EXBITGEN: drop support for unmaintained board
1823     The EXBITGEN board has not been maintained for a long time; it has
1824     build problems, but no hardware is available any more for testing.
1826     Drop support for this board.
1828     Signed-off-by: Wolfgang Denk <wd@denx.de>
1829     Acked-by: Stefan Roese <sr@denx.de>
1831 commit 9461a939cabd606d7f0e9b8490b40841af104ff5
1832 Author: Wolfgang Denk <wd@denx.de>
1833 Date:   Sun Jan 31 22:03:15 2010 +0100
1835     mpc5xxx/cpu_init.c: fix warning: unused variable 'cdm'
1837     Signed-off-by: Wolfgang Denk <wd@denx.de>
1838     Acked-by: Detlev Zundel <dzu@denx.de>
1840 commit 13d8bfe26c0dd2c08b76c5f077e800a718859bbc
1841 Author: Wolfgang Denk <wd@denx.de>
1842 Date:   Sun Jan 31 21:58:48 2010 +0100
1844     mpc5xxx/cpu_init.c: fix warning: unused variable 'gpt0'
1846     Signed-off-by: Wolfgang Denk <wd@denx.de>
1847     Acked-by: Detlev Zundel <dzu@denx.de>
1849 commit 4710cee1b5292fe077a67cc23193cc43060fbe3d
1850 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
1851 Date:   Mon Feb 1 13:54:09 2010 +0100
1853     ppc4xx: Remove unused feature from AR405 board
1855     This patch fixes building for AR405 boards by remove an unused feature.
1857     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
1858     Signed-off-by: Stefan Roese <sr@denx.de>
1860 commit 976c21ad8e136df0ec361aca0c4bc287c5637c01
1861 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
1862 Date:   Mon Feb 1 13:53:59 2010 +0100
1864     ppc4xx: Fix building for PLU405 boards
1866     The init_coupler() function from board/esd/plu405/plu405.c
1867     got lost somehow! This patch readds it.
1869     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
1870     Signed-off-by: Stefan Roese <sr@denx.de>
1872 commit 59c1db6dab52b981e6ea25a203d0a919ede61ed2
1873 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
1874 Date:   Mon Feb 1 13:53:47 2010 +0100
1876     ppc4xx: Fix building of PMC440 board
1878     Remove some unused features and default environment variable
1879     to shrink the PMC440 u-boot.
1881     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
1882     Signed-off-by: Stefan Roese <sr@denx.de>
1884 commit 6f6c26e430ffae87b6b3d74ba7cbf9439703feea
1885 Author: Stefan Roese <sr@denx.de>
1886 Date:   Tue Jan 26 13:33:29 2010 +0100
1888     ppc4xx: Fix compilation error on ML2 board
1890     Recently this compilation error occurs:
1892     Configuring for ML2 board...
1893     traps.c: In function 'MachineCheckException':
1894     traps.c:159: error: 'debugger_exception_handler' undeclared (first use
1895         in this function)
1896     traps.c:159: error: (Each undeclared identifier is reported only once
1897     traps.c:159: error: for each function it appears in.)
1899     This patch now fixes it by including kgdb.h
1901     Signed-off-by: Stefan Roese <sr@denx.de>
1903 commit f3dec798d9ebf7f17c11ec7671b979ce3d251955
1904 Author: Ladislav Michl <ladis@linux-mips.org>
1905 Date:   Thu Jan 28 12:27:14 2010 +0100
1907     CFI: fix eraseregions numblocks
1909     eraseregions numblocks was sometimes one less than actual, possibly producing
1910     erase regions with zero blocks. As MTD code touches eraseregions only if
1911     numeraseregions is greater that zero, allocate eraseregions only for non
1912     uniform erase size flash.
1914     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
1915     Signed-off-by: Stefan Roese <sr@denx.de>
1917 commit c041e9d212162f6c85cd3b6a40ad6ba9d9292451
1918 Author: Jens Scharsig <js_at_ng@scharsoft.de>
1919 Date:   Sat Jan 23 12:03:45 2010 +0100
1921     new at91_emac network driver (NET_MULTI api)
1923     * add's at91_emac (AT91RM9200) network driver (NET_MULTI api)
1924     * enable driver with CONFIG_DRIVER_AT91EMAC
1925     * generic PHY initialization
1926     * modify AT91RM9200 boards to use NET_MULTI driver
1927     * the drivers has been tested with LXT971 Phy and DM9161 Phy at
1928       MII and RMII interface
1930     Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
1931     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1933 commit 594d57d0ccce649d6ccd881b8d9c5ea8d0c307ef
1934 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
1935 Date:   Sun Jan 31 17:39:49 2010 +0100
1937     Add EP93xx ethernet driver
1939     Added ethernet driver for EP93xx SoCs
1941     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
1942     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1944 commit 582c55a0274f38e6e7e35b95e7ab81d3e912f700
1945 Author: Heiko Schocher <hs@denx.de>
1946 Date:   Wed Jan 20 09:04:28 2010 +0100
1948     83xx, uec: split enet_interface in two variables
1950     There's no sensible reason to unite speed and interface type into
1951     one variable.  So split this variable enet_interface into two
1952     vars: enet_interface_type, which hold the interface type and speed.
1954     Also: add the possibility for switching between 10 and 100 MBit
1955     interfaces on the fly, when running in FAST_ETH mode.
1957     Signed-off-by: Heiko Schocher <hs@denx.de>
1958     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1960 commit d7e354374c8eb0a5d8b8226b881c5ee276c77a60
1961 Author: Nick Thompson <nick.thompson@ge.com>
1962 Date:   Fri Dec 18 13:33:07 2009 +0000
1964     TI: DaVinci: Updating EMAC driver for DM365, DM646x and DA8XX
1966     The EMAC IP on DM365, DM646x and DA830 is slightly different
1967     from that on DM644x. This change updates the DaVinci EMAC driver
1968     so that EMAC becomes operational on SOCs with EMAC v2.
1970     Signed-off-by: Nick Thompson <nick.thompson@ge.com>
1971     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1973 commit 0f751d6ef3e6fb1d28ac272c39c34831d629a59e
1974 Author: Semih Hazar <semih.hazar@indefia.com>
1975 Date:   Thu Dec 17 15:07:15 2009 +0200
1977     macb: Fix mii_phy_read and mii_phy_write functions
1979     Enabling CONFIG_CMD_MII in AVR32 boards was not possible due to
1980     compile errors.
1982     This patch fixes miiphy_read and miiphy_write functions and
1983     registers them properly.
1985     Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
1986     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1988 commit 5f6b1442218fcb6a3ef0d2be05d84119cebfe0ae
1989 Author: Peter Tyser <ptyser@xes-inc.com>
1990 Date:   Mon Nov 9 13:09:48 2009 -0600
1992     tsec: Add TSEC_FIBER flag
1994     The TSEC_FIBER flag should be set when a PHY is operating with an
1995     external fiber interface.  Currently it is only used to notify a user
1996     that the PHY is operating in fiber mode.
1998     A short description was also added to the other TSEC flag defines so
1999     that it is clear how they differ from one another.
2001     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2002     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2004 commit 8abb8dcc8d6f2a9e31551a6fa41de97bd1f15350
2005 Author: Peter Tyser <ptyser@xes-inc.com>
2006 Date:   Mon Nov 9 13:09:47 2009 -0600
2008     tsec: Add support for using the BCM5482 PHY in fiber mode
2010     The BCM5482 PHY supports both copper and fiber as an ethernet medium.
2011     By enabling its copper/fiber mode auto-detection feature it can
2012     dynamically determine if it should be configured for copper or fiber.
2014     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2015     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2017 commit c6dbdfda5393c155bb13a90d9d6be4fe75ec3498
2018 Author: Peter Tyser <ptyser@xes-inc.com>
2019 Date:   Mon Nov 9 13:09:46 2009 -0600
2021     tsec: General cleanup
2023     - Cleanup formatting of phy_info structures
2025     - Fix lines > 80 chars
2027     - Fix some random indentation inconsistencies
2029     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2030     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2032 commit e1957ef02c0d949c27f7386e5fa509a57e033d5a
2033 Author: Peter Tyser <ptyser@xes-inc.com>
2034 Date:   Mon Nov 9 13:09:45 2009 -0600
2036     tsec: Make functions/data static when possible
2038     This is generally good practice and saves ~150 bytes.
2040     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2041     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2043 commit 27165b5c328464b706601b1cd586e359a3dc2f6d
2044 Author: Peter Tyser <ptyser@xes-inc.com>
2045 Date:   Mon Nov 9 13:09:44 2009 -0600
2047     tsec: Clean up Broadcom PHY status parsing
2049     - Remove unnecessary printing "Enet starting in <speed>/<duplex>"
2050         This same information is already printed during normal ethernet
2051         operation in the form "Speed: 1000, full duplex".
2053     - Add a check for link before determining link speed and duplex
2054         If there is no link, speed/duplex don't matter.  This also removes
2055         the annoying and unneeded "Auto-neg error, defaulting to 10BT/HD"
2056         message that occurs when no link is detected.
2058     - Whitespace and line > 80 characters cleanup
2060     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2061     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2063 commit 46e91674fb4b6d06c6a4984c0b5ac7d9a16923f4
2064 Author: Peter Tyser <ptyser@xes-inc.com>
2065 Date:   Tue Nov 3 17:52:07 2009 -0600
2067     tsec: Force TBI PHY to 1000Mbps full duplex in SGMII mode
2069     In SGMII mode the link between a processor's internal TBI PHY and an
2070     external PHY should always be 1000Mbps, full duplex.  Also, the SGMII
2071     interface between an internal TBI PHY and external PHY does not
2072     support in-band auto-negotation.
2074     Previously, when configured for SGMII mode a TBI PHY would attempt to
2075     restart auto-negotation during initializtion.  This auto-negotation
2076     between a TBI PHY and external PHY would fail and result in unusable
2077     ethernet operation.
2079     Forcing the TBI PHY and and external PHY to link at 1000Mbps full duplex
2080     in SGMII mode resolves this issue of auto-negotation failing.
2082     Note that 10Mbps and 100Mbps operation is still possible on the external
2083     side of the external PHY even when SGMII is operating at 1000Mbps.
2084     The SGMII interface still operates at 1000Mbps, but each byte of data
2085     is repeated 100 or 10 times for 10/100Mbps and the external PHY handles
2086     converting this data stream into proper 10/100Mbps signalling.
2088     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2089     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2091 commit 76771e595aa2640da8c7b5ea81bd9583ccdab8a1
2092 Author: Seunghyeon Rhee <seunghyeon@lpmtec.com>
2093 Date:   Mon Nov 2 00:00:00 2009 -0800
2095     NET: Fix MAC addr handling for smc911x
2097     This patch turns off MAC address mismatch warning when
2098     optional eeprom programmed with MAC address is not available.
2099     In that case, smc911x's MAC address register has its default
2100     value ff:ff:ff:ff:ff:ff and it's not a valid address. This
2101     makes eth_initialize() show the warning which has no
2102     meaningful information while environment variable ethaddr
2103     overrides the address read from the register. If there's no
2104     eeprom and the value of MAC address register is not valid
2105     after initialization, dev->enetaddr had better not be updated
2106     and maintain its initial value 00:00:00:00:00:00, which I
2107     think is what eth_initialize() expects. This is not a bug fix.
2108     Even without this patch, the driver works fine. It's just for
2109     enhancing the way of displaying messages.
2111     Signed-off-by: Seunghyeon Rhee <seunghyeon@lpmtec.com>
2112     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2114 commit 07c966066b977b24f4b08b1684eed130f463b4c6
2115 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
2116 Date:   Thu Jan 21 22:16:34 2010 +0100
2118     cs8900_initialize() cleanup
2120     cs8900_initialize(): remove unecessary calls to free() and fix memory leak
2122     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
2123     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2125 commit c4168af3ba03c17a73751b98c124bbd2e3e1f5b0
2126 Author: Mike Frysinger <vapier@gentoo.org>
2127 Date:   Thu Jan 21 05:04:59 2010 -0500
2129     smc91111_eeprom: fix linking error
2131     Building for a bf533-stamp ends up with this error:
2132     smc91111_eeprom.o: In function `smc91111_eeprom':
2133     examples/standalone/smc91111_eeprom.c:58: undefined reference to `memset'
2134     make[2]: *** [smc91111_eeprom] Error 1
2136     The new eth_struct definition means gcc has to zero out the structure on
2137     the stack, and some gcc versions optimize this with an implicit call to
2138     memset.  So tweak the structure style to avoid that gcc feature.
2140     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2141     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2143 commit 5f566f454750be4f2f83288ef382afcb9c4aa8a4
2144 Author: Wolfgang Denk <wd@denx.de>
2145 Date:   Sun Jan 31 21:51:43 2010 +0100
2147     cmd_ximg.c: fix error: 'i' undeclared
2149     Fix compile error:
2151         cmd_ximg.c: In function 'do_imgextract':
2152         cmd_ximg.c:234: error: 'i' undeclared (first use in this function)
2153         cmd_ximg.c:234: error: (Each undeclared identifier is reported only once
2154         cmd_ximg.c:234: error: for each function it appears in.)
2156     Signed-off-by: Wolfgang Denk <wd@denx.de>
2158 commit a6e42ed097220a82870a32f4e60ac8863a8b05ab
2159 Author: Anatolij Gustschin <agust@denx.de>
2160 Date:   Sat Dec 12 21:20:57 2009 +0100
2162     lcd: remove CONFIG_ATMEL_LCD ifdefs from lcd_setfgcolor
2164     Not all boards defining LCD_COLOR16 are able to set
2165     lcd_color_fg/lcd_color_bg correctly. The issue seems to
2166     be caused by CONFIG_ATMEL_LCD ifdefs in lcd_setfgcolor()
2167     and lcd_setbgcolor(). Actually, the color values passed
2168     to these functions are already correct, we don't need
2169     to fix them. So remove ifdefs here.
2171     Reported-by: Alessandro Rubini <rubini@unipv.it>
2172     Signed-off-by: Anatolij Gustschin <agust@denx.de>
2174 commit d841978ea616e661e48f8da4045a71d6217823bd
2175 Author: Alessandro Rubini <rubini@unipv.it>
2176 Date:   Sat Dec 5 13:39:41 2009 +0100
2178     include/nomadik.h: add physical address for cldc
2180     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2181     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
2183 commit 3e446cbdf30221b9ca3a89b0f5abbfc691ce7755
2184 Author: Alessandro Rubini <rubini@unipv.it>
2185 Date:   Sat Dec 5 13:39:31 2009 +0100
2187     video: add amba-clcd prime-cell
2189     This adds support for the CLCD logic cell. It accepts precompiled
2190     register values for specific configuration through a board-supplied
2191     data structure.  It is used by the Nomadik nhk8815, added by a later
2192     patch in this series.
2194     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2195     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
2197 commit b081c2e9b9329d7dadc8d13fc9a2bae5c90a1204
2198 Author: John Rigby <jcrigby@gmail.com>
2199 Date:   Tue Jan 26 19:24:18 2010 -0700
2201     Nand mxc_nand add v1.1 controller support
2203     Add support for version 1.1 of the nfc nand flash
2204     controller which is on the i.mx25 soc.
2206     Signed-off-by: John Rigby <jcrigby@gmail.com>
2207     CC: Scott Wood <scottwood@freescale.com>
2209 commit f3bb63a304c4e76010a2a4e99da61f7b6ffffc77
2210 Author: John Rigby <jcrigby@gmail.com>
2211 Date:   Tue Jan 26 19:24:17 2010 -0700
2213     Add MX25 support to nand_spl fsl nfc driver
2215     MX25 has a different version of the fsl_nfc
2216     flash controller known as version 1.1.
2218     Add support to the nand_spl fsl_nfc driver
2220     Versioning differs from mainline mxc kernel driver
2221     no consensus yet on if the naming here and in
2222     Redboot or the kernel is "correct".
2224     Signed-off-by: John Rigby <jcrigby@gmail.com>
2225     Signed-off-by: Wolfgang Denk <wd@denx.de>
2226     CC: Scott Wood <scottwood@freescale.com>
2228 commit ef22b50370f7b6d8deba9e9e64d2cb13c542b647
2229 Author: John Rigby <jcrigby@gmail.com>
2230 Date:   Mon Jan 25 23:12:52 2010 -0700
2232     arm926ejs: add nand_spl boot support
2234     Add CONFIG_PRELOADER/CONFIG_NAND_SPL support for nand booting
2235     to arm926ejs/start.S
2237     This is derived from CONFIG_PRELOADER support in arm1136/start.S
2239     Signed-off-by: John Rigby <jcrigby@gmail.com>
2240     CC: Scott Wood <scottwood@freescale.com>
2242 commit 15b86c3d6c9a5a2e917b73d758a556568430021a
2243 Author: Wolfgang Denk <wd@denx.de>
2244 Date:   Sat Jan 16 21:50:26 2010 -0700
2246     env_nand.c: print error message and fail gracefully
2248     env_nand.c would crash silently if a malloc() for the environment
2249     buffers failed; make it print an error message and fail gracefully,
2250     i. e. use the default environment then.
2252     Signed-off-by: Wolfgang Denk <wd@denx.de>
2253     Acked-by: John Rigby <jcrigby@gmail.com>
2255 commit 674ef7bd02de948b6d8757f6a43a6f2fa4d88769
2256 Author: Liu Yu <yu.liu@freescale.com>
2257 Date:   Mon Jan 18 19:03:28 2010 +0800
2259     Nand boot: Add nand boot support for MPC8569mds board
2261     This patch add nand boot support for MPC8569mds board.
2263     Signed-off-by: Liu Yu <yu.liu@freescale.com>
2265 commit 249d4dec69e8d41ca58fe6cb3c56ea6f0480ef16
2266 Author: Kumar Gala <galak@kernel.crashing.org>
2267 Date:   Wed Jan 27 10:16:56 2010 -0600
2269     Fix compiler warning in imximage.c due to getline prototype
2271     imximage.c: In function 'imximage_parse_cfg_file':
2272     imximage.c:142: warning: implicit declaration of function 'getline'
2274     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2276 commit a9c3ac78d81d7ff4fe239e292e11e0f78ac5d461
2277 Author: Kumar Gala <galak@kernel.crashing.org>
2278 Date:   Tue Jan 12 12:56:05 2010 -0600
2280     85xx: Add support for 'cpu disable' command
2282     Support disabling of a core via user command 'cpu disable'.
2284     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2286 commit c894852b7aa2ac5f04ca70a073f803aa665c3ec1
2287 Author: Kumar Gala <galak@kernel.crashing.org>
2288 Date:   Tue Jan 12 11:51:52 2010 -0600
2290     86xx: Add support for 'cpu disable' command
2292     Support disabling of a core via user command 'cpu disable'.
2294     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2296 commit 4194b3668a93eee18dd1f7eb1309ca7b05003aa7
2297 Author: Kumar Gala <galak@kernel.crashing.org>
2298 Date:   Tue Jan 12 11:42:43 2010 -0600
2300     Add support to disable cpu's in multicore processors
2302     Add a disable sub-command to the cpu command that allows for disabling
2303     cores in multicore processors.  This can be useful for systems that are
2304     using multicore chips but aren't utilizing all the cores as a way to
2305     reduce power and possibly improve performance.
2307     Also updated an added missing copyright.
2309     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2311 commit 8b1760ed9a35a5fd71d1f64981068ca2979f1e3d
2312 Author: Heiko Schocher <hs@denx.de>
2313 Date:   Wed Jan 20 09:05:32 2010 +0100
2315     83xx, kmeter1: fix compile error
2317     - delete double MTDIDS_DEFAULT and MTDPARTS_DEFAULT
2318       defines in board config file.
2319     - add mising CONFIG_KM_UBI_PARTITION_NAME define
2321     Signed-off-by: Heiko Schocher <hs@denx.de>
2322     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2324 commit 5912d3650740468329a0df014109132431d2140d
2325 Author: Wolfgang Wegner <w.wegner@astro-kom.de>
2326 Date:   Thu Dec 10 10:11:21 2009 +0100
2328     add ability to handle compressed images to imxtract
2330     imxtract currently can not handle compressed images. This patch adds
2331     handling for bzip2 and zip compression. In both cases, a destination
2332     address has to be specified for extraction.
2334     Signed-off-by: Wolfgang Wegner <w.wegner@astro-kom.de>
2336 commit a16e9a5b5f23106665dde15d974db17e8aeb83f1
2337 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2338 Date:   Tue Jan 19 14:41:57 2010 +0100
2340     ppc: remove -ffixed-r14 gcc option.
2342     This is no loger needed, free up r14 for general usage.
2344     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2346 commit e6bee80814c3a0d7eab89d28142fe68c4a670f31
2347 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2348 Date:   Tue Jan 19 14:41:58 2010 +0100
2350     ppc: Update README about the new GOT ptr.
2352     r14 is no longer used as non volatile GOT ptr. Instead
2353     the volatile r12 is used so be sure to do GET_GOT in
2354     asm code when you need to access global data.
2356     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2358 commit 0f8aa159175385ddd77bc91d11b9568583fbbd0c
2359 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2360 Date:   Tue Jan 19 14:41:56 2010 +0100
2362     ppc: Use r12 instead of r14 as GOT pointer.
2364     r14 is not supposed to be clobbered by functions. Switch
2365     to r12 and call GET_GOT when needed. This will allow u-boot
2366     to loose the -ffixed-r14 gcc option.
2368     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2370 commit fc4e188789b01dc9f18c80869c43fdd7d1a51378
2371 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2372 Date:   Tue Jan 19 14:41:55 2010 +0100
2374     ppc: Loose GOT access in IRQ
2376     Using the GOT in IRQ handlers requires r14 to be -ffixed-r14.
2377     Avoid this by relocatate transfer_to_handler too.
2378     This will allow to free up r14 later on.
2380     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
2382 commit 66e821ebe96123b3a81ec9ca25cec9c0560fe232
2383 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
2384 Date:   Thu Jan 7 14:27:14 2010 +0530
2386     85xx/p1_p2_rdb: enable hwconfig
2388     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
2389     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2391 commit 46df64f22c471b010161aa68bfdbfe94ea46e7bd
2392 Author: Liu Yu <yu.liu@freescale.com>
2393 Date:   Fri Jan 15 14:58:40 2010 +0800
2395     qe: fixup the snum for MPC8569 Rev2.0
2397     Since 1.0 and 2.0 use different snum table,
2398     we fixup the snum value according to SPRN_SVR.
2400     Signed-off-by: Liu Yu <yu.liu@freescale.com>
2401     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2403 commit 0fd2fa6cce6eb91271ebf9733878d0f1fcbc9b32
2404 Author: Dave Liu <daveliu@freescale.com>
2405 Date:   Tue Nov 17 20:49:05 2009 +0800
2407     Fix the local bus divider mapping
2409     The real clock divider is 4 times of the bits LCRR[CLKDIV],
2410     according the latest RevF RM.
2412     Signed-off-by: Dave Liu <daveliu@freescale.com>
2413     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2415 commit c95d541e4b46cb3ba19bf35e34b1dc3ca32f7b4b
2416 Author: Liu Yu <yu.liu@freescale.com>
2417 Date:   Fri Nov 27 15:31:52 2009 +0800
2419     ppc/85xx: Add ATM config for MPC8569MDS
2421     Signed-off-by: Liu Yu <yu.liu@freescale.com>
2422     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2424 commit d91803826985bfdf151eed66543ce3b1a301682f
2425 Author: Liu Yu <yu.liu@freescale.com>
2426 Date:   Fri Nov 27 15:31:51 2009 +0800
2428     ppc/85xx: Add PIB/ATM support for MPC8569mds
2430     Signed-off-by: Liu Yu <yu.liu@freescale.com>
2431     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2433 commit 1118cdbfeb8fc3acfe542d08703153ac188f9dbd
2434 Author: Li Yang <leoli@freescale.com>
2435 Date:   Thu Jan 7 16:00:13 2010 +0800
2437     fsl_esdhc: fix wrong clock mask
2439     Fix typo in SYSCTL_CLOCK_MASK, which caused residual in high bits of SDCLKFS.
2441     Signed-off-by: Jin Qing <B24347@freescale.com>
2442     Signed-off-by: Li Yang <leoli@freescale.com>
2443     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2445 commit 693416fe01d324472d270ac28389022eb82c7217
2446 Author: Kumar Gala <galak@kernel.crashing.org>
2447 Date:   Mon Jan 25 11:01:51 2010 -0600
2449     Revert "ppc/p4080: Fix reporting of PME & FM clock frequencies"
2451     This reverts commit bc20f9a9527afe8ae406a74f74765d4323f04922.
2453     The original code was correct.  I clearly need glasses or a brown
2454     paper bag.
2456     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2458 commit 93cedc71647b4b72ac9b48e11997eb2f91645001
2459 Author: James Yang <James.Yang@freescale.com>
2460 Date:   Tue Jan 12 15:50:18 2010 -0600
2462     ppc/p4080: Fix mask width of RCW fields MEM_PLL_RAT, SYS_PLL_RAT
2464     The masks for MEM_PLL_RAT and SYS_PLL_RAT should have been 5-bits
2465     instead of 4.
2467     Signed-off-by: James Yang <James.Yang@freescale.com>
2468     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2470 commit 2903ad33a71251a3a87485b5b185852c8998f209
2471 Author: Mike Frysinger <vapier@gentoo.org>
2472 Date:   Fri Jan 8 08:03:06 2010 -0500
2474     jffs2: fix hangs/crashs when not using CONFIG_JFFS2_PART_SIZE
2476     Commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042 caused the sector_size to
2477     be calculated incorrectly when the part size was not hardcoded.  This is
2478     because the new code relied on part->size but tried to do the calculation
2479     before it was initialized properly, and it did not take into consideration
2480     the magic SIZE_REMAINING define.
2482     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2484 commit 64b150213365db6be97a98d25884f87d83caacaf
2485 Author: Mike Frysinger <vapier@gentoo.org>
2486 Date:   Fri Jan 8 02:48:03 2010 -0500
2488     getline: split out for darwin systems
2490     At least on OS X 10.5 and older, getline does not exist.  So split out the
2491     function from the mingw code so that we can pull it in for Darwin systems.
2493     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2495 commit e852d36a1e12864ab0656729c45c846e65efa4ee
2496 Author: Mike Frysinger <vapier@gentoo.org>
2497 Date:   Thu Jan 21 19:59:04 2010 -0500
2499     tools: give explicit libfdt paths
2501     The current libfdt object rules hard depend implicitly on the .depend file
2502     being correct.  If it isn't, then it is unable to properly compile the
2503     objects.  Give it a full path like all the other implicit rules here so it
2504     will always work in face of .depend issues.
2506     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2508 commit 44431cabbb66e81a2d77642b6f7d39c6230ea4ba
2509 Author: Mike Frysinger <vapier@gentoo.org>
2510 Date:   Thu Jan 21 19:30:36 2010 -0500
2512     gzip/zlib: make features optional
2514     If you really want to slim down U-Boot and you would rather use a higher
2515     compression scheme (like LZMA), it'd be nice to disable gzip/zlib since
2516     these code bases take up a significant amount of space.
2518     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2520 commit 8edcde5e4e2e7f6bc7e277011fed71e64fd9d294
2521 Author: Stefano Babic <sbabic@denx.de>
2522 Date:   Wed Jan 20 18:19:10 2010 +0100
2524     mkimage: Add Freescale imx Boot Image support (imximage)
2526     This patch adds support for "imximage" (MX Boot Image)
2527     to the mkimage utility. The imximage is used on the Freescales's
2528     MX.25, MX.35 and MX.51 processors.
2530     Further details under doc/README.imximage.
2532     This patch was tested on a Freescale mx51evk board.
2534     Signed-off-by: Stefano Babic <sbabic@denx.de>
2536 commit a21fb981d533ac6d323a01c7fa2cda20f2d36de5
2537 Author: Detlev Zundel <dzu@denx.de>
2538 Date:   Wed Jan 20 14:28:48 2010 +0100
2540     mpc5xxx: Support CPU internal watchdog.
2542     Signed-off-by: Detlev Zundel <dzu@denx.de>
2544 commit 82826d5422331e9c99e5408dcf0348c8e0c257a6
2545 Author: Detlev Zundel <dzu@denx.de>
2546 Date:   Fri Jan 22 14:47:59 2010 +0100
2548     mpc512x: Add display of reset status register
2550     Content of the RSR is put into gd early so we can output it together
2551     with the CPU info.  The clearing of gd in board_init_f is redundant for
2552     this architecture as it is done in cpu_init_f so we remove it.
2554     Signed-off-by: Detlev Zundel <dzu@denx.de>
2556 commit a3f3897bfda9b4729785bdd328b3b7f30417a67f
2557 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
2558 Date:   Wed Jan 20 08:00:11 2010 +0100
2560     at91: Enable slow master clock on meesc board
2562     Normally the processor clock has a divisor of 2.
2563     In some cases this this needs to be set to 4.
2564     Check the user has set environment mdiv to 4 to change the divisor.
2566     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
2568 commit 7da692360414d07027c6cf564a15d79cd9dcf488
2569 Author: Vipin KUMAR <vipin.kumar@st.com>
2570 Date:   Fri Jan 15 19:15:53 2010 +0530
2572     SPEAr : Support added for SPEAr320 board
2574     SPEAr320 SoC support contains basic spear320 support along with the
2575     usage of following drivers
2576     - serial driver(UART)
2577     - i2c driver
2578     - smi driver
2579     - nand driver(FSMC)
2580     - usbd driver
2581     - emi driver(cfi support)
2583     Signed-off-by: Vipin <vipin.kumar@st.com>
2585 commit 080cfee71459588fd6312e475bb5115bdbda1cb3
2586 Author: Vipin KUMAR <vipin.kumar@st.com>
2587 Date:   Fri Jan 15 19:15:52 2010 +0530
2589     SPEAr : Support added for SPEAr310 board
2591     SPEAr310 SoC support contains basic spear310 support along with the
2592     usage of following drivers
2593     - serial driver(UART)
2594     - i2c driver
2595     - smi driver
2596     - nand driver(FSMC)
2597     - usbd driver
2598     - emi driver(cfi support)
2600     Signed-off-by: Vipin <vipin.kumar@st.com>
2602 commit 4bfacad4e796f2e121ee7432705ecc9c61e7b6ca
2603 Author: Vipin KUMAR <vipin.kumar@st.com>
2604 Date:   Fri Jan 15 19:15:51 2010 +0530
2606     SPEAr : emi controller initialization for CFI driver support
2608     SPEAr310 and SPEAr320 SoCs contain an EMI controller to interface
2609     Paraller NOR flashes. This patch adds the support for this IP
2611     The standard CFI driver is used to interface with NOR flashes
2613     Signed-off-by: Vipin <vipin.kumar@st.com>
2615 commit 7e074158ce239380259c5fc97e87be2896169973
2616 Author: Vipin KUMAR <vipin.kumar@st.com>
2617 Date:   Fri Jan 15 19:15:50 2010 +0530
2619     SPEAr : Support added for SPEAr300 board
2621     SPEAr300 SoC support contains basic spear300 support along with the
2622     usage of following drivers
2623     - serial driver(UART)
2624     - i2c driver
2625     - smi driver
2626     - nand driver(FSMC)
2627     - usbd driver
2629     Signed-off-by: Vipin <vipin.kumar@st.com>
2631 commit f92994f0f7403b84366ce04e554e461f624e6868
2632 Author: Vipin KUMAR <vipin.kumar@st.com>
2633 Date:   Fri Jan 15 19:15:49 2010 +0530
2635     SPEAr : Support for HW mac id read/write from i2c mem
2637     This patch adds the  support to read and write mac id from i2c
2638     memory.
2639     For reading:
2640         if (env contains ethaddr)
2641                 pick env ethaddr
2642         else
2643                 pick ethaddr from i2c memory
2644     For writing:
2645         chip_config ethaddr XX:XX:XX:XX:XX:XX writes the mac id
2646         in i2c memory
2648     Signed-off-by: Vipin <vipin.kumar@st.com>
2650 commit 566c9c16fe4e501c3193ae6605bc9c663c6ea706
2651 Author: Vipin KUMAR <vipin.kumar@st.com>
2652 Date:   Fri Jan 15 19:15:48 2010 +0530
2654     SPEAr : Support added for SPEAr600 board
2656     SPEAr600 SoC support contains basic spear600 support along with the
2657     usage of following drivers
2658     - serial driver(UART)
2659     - i2c driver
2660     - smi driver
2661     - nand driver(FSMC)
2662     - usbd driver
2664     Signed-off-by: Vipin <vipin.kumar@st.com>
2666 commit 62db1c0d79f1fd75961eec81edc8c0a1bc1f09a6
2667 Author: Vipin KUMAR <vipin.kumar@st.com>
2668 Date:   Fri Jan 15 19:15:47 2010 +0530
2670     SPEAr : usbd driver support for SPEAr SoCs
2672     SPEAr SoCs contain a synopsys usb device controller.
2673     USB Device IP can work in 2 modes
2674     - DMA mode
2675     - Slave mode
2677     The driver adds support only for slave mode operation of usb
2678     device IP. This driver is used along with standard USBTTY
2679     driver to obtain a tty interface over USB on the host
2681     Signed-off-by: Vipin <vipin.kumar@st.com>
2683 commit 165fa406ad8c39c0c32a31476a8a9bda3db72851
2684 Author: Vipin KUMAR <vipin.kumar@st.com>
2685 Date:   Fri Jan 15 19:15:46 2010 +0530
2687     SPEAr : nand driver support for SPEAr SoCs
2689     SPEAr SoCs contain an FSMC controller which can be used to interface
2690     with a range of memories eg. NAND, SRAM, NOR.
2691     Currently, this driver supports interfacing FSMC with NAND memories
2693     Signed-off-by: Vipin <vipin.kumar@st.com>
2695 commit a6e34f76c51c8514f1b691fc60394f09ae4fb2ff
2696 Author: Vipin KUMAR <vipin.kumar@st.com>
2697 Date:   Fri Jan 15 19:15:45 2010 +0530
2699     SPEAr : smi driver support for SPEAr SoCs
2701     SPEAr SoCs contain a serial memory interface controller. This
2702     controller is used to interface with spi based memories.
2703     This patch adds the driver for this IP.
2705     Signed-off-by: Vipin <vipin.kumar@st.com>
2707 commit 2403f8f417b1b94701bb5949903d701f1f414a42
2708 Author: Vipin KUMAR <vipin.kumar@st.com>
2709 Date:   Fri Jan 15 19:15:44 2010 +0530
2711     SPEAr : i2c driver support added for SPEAr SoCs
2713     SPEAr SoCs contain a synopsys i2c controller.
2714     This patch adds the driver for this IP.
2716     Signed-off-by: Vipin <vipin.kumar@st.com>
2718 commit 81c0ebf623ddbb6a4da8e051441c83e99a01b00b
2719 Author: Vipin KUMAR <vipin.kumar@st.com>
2720 Date:   Fri Jan 15 19:15:43 2010 +0530
2722     SPEAr : Adding basic SPEAr architecture support.
2724     SPEAr Architecture support added. It contains the support for
2725     following SPEAr blocks
2726     - Timer
2727     - System controller
2728     - Misc registers
2730     Signed-off-by: Vipin <vipin.kumar@st.com>
2732 commit 6fffcdf8c869a3d8436be8eff6428d8121aa76e6
2733 Author: Vipin KUMAR <vipin.kumar@st.com>
2734 Date:   Fri Jan 15 19:15:42 2010 +0530
2736     SPEAr : Adding README.spear in doc
2738     README.spear contains information about SPEAr architecture and
2739     build options etc
2741     Signed-off-by: Vipin <vipin.kumar@st.com>
2743 commit e4c43c20b87d5c9a7ac3b5250ca009311c62945c
2744 Author: Tom Rix <Tom.Rix@windriver.com>
2745 Date:   Wed Jan 20 18:00:28 2010 -0600
2747     ARM Update mach-types
2749     Fetched from http://www.arm.linux.org.uk/developer/machines/download.php
2750     And built with
2752     repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm
2753     commit 2045124ffd1a5e46d157349016a2c50f19c8c91d
2755     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2757 commit bfb6d510e9acbec97e4e1cc855ec1269538689f8
2758 Author: Prafulla Wadaskar <prafulla@marvell.com>
2759 Date:   Mon Nov 16 18:29:25 2009 +0530
2761     Kirkwood: Makefile cleanup- fixed ordering (cosmetic change)
2763     As per coding guidlines, it is good to maintain proper ordering
2764     in the makefiles.
2765     This was missed during initial coding, corrected here.
2767     This was discovered during orion5x code review
2768     Thanks to Albert Aribaud for this.
2770     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2772 commit beca04dd2446fc9ec46ca17163dadb7f82420e7c
2773 Author: Prafulla Wadaskar <prafulla@marvell.com>
2774 Date:   Thu Dec 24 02:55:23 2009 +0530
2776     Kirkwood: Upgated licencing for files imported from linux source to GPLv2 or later
2778     These are few files directly imported from Linux kernel source.
2779     Those are not modifyed at all ar per strategy.
2780     These files contains source with GPLv2 only
2781     whereas u-boot expects GPLv2 or latter
2783     These files are updated for the same from prior permission from original writes
2785     Acked-by: Nicolas Pitre <nico@marvell.com>
2786     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2788 commit d8e5f55475e621e793a15d93e2dd2549c5138735
2789 Author: Minkyu Kang <mk7.kang@samsung.com>
2790 Date:   Fri Dec 18 15:03:51 2009 +0900
2792     s5pc1xx: update cache routines
2794     Because of v7_flush_dcache_all is moved to omap3/cache.S
2795     and s5pc110 needs cache routines, update s5pc1xx cache routines.
2797     l2_cache_enable and l2_caceh_disable are moved from cache.c to cache.S
2798     and invalidate_dcache is modified for SoC specific.
2800     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2802 commit 17ef9104ae11220979e1870f22dcaf535d9baacf
2803 Author: Seunghyeon Rhee <seunghyeon@lpmtec.com>
2804 Date:   Thu Dec 3 09:41:49 2009 +0900
2806     samsung: fix DMC1_MEM_CFG for s3c64xx
2808     The MSB of DMC1_MEM_CFG can be set to '1' for separate CKE control
2809     for S3C6400. In the configuration of SMDK6400, however, two 16-bit
2810     mDDR (SAMSUNG K4X51163) chips are used in parallel to form 32-bit
2811     memory bus and there is no need to control CKE for each chip
2812     separately. AFAIK, CKE1 is not at all connected. Only CKE0 is
2813     used. Futhermore, it should be '0' always for S3C6410. When tested
2814     with a board which has a S3C6410 and the same memory configuration,
2815     a side effect is observed that u-boot command "reset" doesn't work
2816     leading to system hang. Leaving the bit clear is safe in most cases.
2818     Signed-off-by: Seunghyeon Rhee <seunghyeon@lpmtec.com>
2819     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2821 commit 9998b1366e7e42089c3f579b4d1d790d3c295387
2822 Author: Stefan Roese <sr@denx.de>
2823 Date:   Thu Jan 21 11:37:31 2010 +0100
2825     ppc4xx: Kilauea: Add CPLD version detection and EBC reconfiguration
2827     A newer CPLD version on the 405EX evaluation board requires a different
2828     EBC controller setup for the CPLD register access. This patch adds a CPLD
2829     version detection for Kilauea and code to reconfigure the EBC controller
2830     (chip select 2) for the old CPLD if no new version is found.
2832     Additionally the CPLD version is printed upon bootup:
2834     Board: Kilauea - AMCC PPC405EX Evaluation Board (CPLD rev. 0)
2836     Signed-off-by: Stefan Roese <sr@denx.de>
2837     Acked-by: Wolfgang Denk <wd@denx.de>
2838     Cc: Zhang Bao Quan <bqzhang@udtech.com.cn>
2840 commit 97c9f29008579f56c3fb86785f29f04dd4f47f94
2841 Author: Felix Radensky <felix@embedded-sol.com>
2842 Date:   Sat Jan 23 01:35:24 2010 +0200
2844     ppc4xx: Fix sending type 1 PCI transactions
2846     The list of 4xx SoCs that should send type 1 PCI transactions
2847     is not defined correctly. As a result PCI-PCI bridges and devices
2848     behind them are not identified. The following 4xx variants should
2849     send type 1 transactions: 440GX, 440GP, 440SP, 440SPE, 460EX and 460GT.
2851     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
2852     Signed-off-by: Stefan Roese <sr@denx.de>
2854 commit 57ae8a5cced612088104303777e71a3dc89c00ef
2855 Author: Detlev Zundel <dzu@denx.de>
2856 Date:   Thu Jan 21 17:55:58 2010 +0100
2858     mpc512x: Use in/out accessors for all registers
2860     This is not only a cosmetic change as it fixes the real bug of board
2861     reset not working with the ELDK 4.2 toolchain.
2863     Signed-off-by: Detlev Zundel <dzu@denx.de>
2865 commit c7c0d542a199089cf658a7c23c314a5cff248b00
2866 Author: Mike Frysinger <vapier@gentoo.org>
2867 Date:   Thu Jan 21 04:03:22 2010 -0500
2869     tools: allow people to compile w/out configuring
2871     It's useful to be able to build up the host tools without having to select
2872     a board first.  Pretty much all tools in there are config-independent
2873     anyways.
2875     Also add a shortcut "tools-all" to quickly build all host tools that are
2876     actually config-independent to allow for simple test builds.
2878     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2880 commit c5a028f085020b60040a2b42966f29b25bd6ee8e
2881 Author: Mike Frysinger <vapier@gentoo.org>
2882 Date:   Thu Jan 21 04:03:21 2010 -0500
2884     ubsha1: drop unnecessary includes/prototypes
2886     This code doesn't use any config.h defines, and the sha1.h header already
2887     declares a sha1_csum prototype.
2889     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2891 commit 5daa1c18b6a6877b0619a8dbaad0afd783f79e4f
2892 Author: Mike Frysinger <vapier@gentoo.org>
2893 Date:   Thu Jan 21 04:03:20 2010 -0500
2895     image.h: avoid command.h for host tools
2897     The u-boot command structures don't get used with host systems, so don't
2898     bother including it when building host code.  This avoids an implicit need
2899     on config.h in the process.
2901     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2903 commit 34be10651704709dfb35f9c57013f02d47cced09
2904 Author: Matthias Weisser <weisserm@arcor.de>
2905 Date:   Mon Jan 18 10:58:13 2010 +0100
2907     Removing Atmel from ARM926EJ-S Systems
2909     Signed-off-by: Matthias Weisser <weisserm@arcor.de>
2911 commit a16028da63c78001823bfb375b3f6d9d86e5a534
2912 Author: Mike Frysinger <vapier@gentoo.org>
2913 Date:   Tue Nov 3 11:35:59 2009 -0500
2915     lmb: only force on arches that use it
2917     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2919 commit dac4d7e8849d275023ea2fcae6caf941db91c042
2920 Author: Mike Frysinger <vapier@gentoo.org>
2921 Date:   Sun Jan 17 21:08:00 2010 -0500
2923     sha1: add dedicated config option
2925     The sha1 code is currently compiled for everyone, but in reality, it's
2926     only used by the FIT code.  So make it optional just like MD5.
2928     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2930 commit 33c8c664239f6665b228145d7e5adfa238a300bc
2931 Author: Felix Radensky <felix@embedded-sol.com>
2932 Date:   Tue Jan 19 21:19:06 2010 +0200
2934     ppc4xx: Allow setting a single SPD EEPROM address for DDR2 DIMMs
2936     On platforms where SPD EEPROM and another EEPROM have adjacent
2937     I2C addresses SPD_EEPROM_ADDRESS should be defined as a single
2938     element array, otherwise DDR2 setup code would fail with the
2939     following error:
2941     ERROR: Unknown DIMM detected in slot 1
2943     However, fixing SPD_EEPROM_ADDRESS would result in another
2944     error:
2946     ERROR: DIMM's DDR1 and DDR2 type can not be mixed.
2948     This happens because initdram() routine does not explicitly
2949     initialize dimm_populated array. This patch fixes the problem.
2951     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
2952     Signed-off-by: Stefan Roese <sr@denx.de>
2954 commit d98964aaacc5c54cf7d67bb1e5128ed067086dd7
2955 Author: Felix Radensky <felix@embedded-sol.com>
2956 Date:   Tue Jan 19 17:37:13 2010 +0200
2958     ppc4xx: Fix reporting of bootstrap options G and F on 460EX/GT
2960     Bootstrap options G and F are reported incorrectly (G instead
2961     of F and vice versa). This patch fixes this.
2963     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
2964     Signed-off-by: Stefan Roese <sr@denx.de>
2966 commit 19c292999732996e071caa0782eeef0ce0a60ac0
2967 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
2968 Date:   Wed Jan 20 21:07:00 2010 +0900
2970     MIPS: qemu_mips: Import asm/unaligned.h from the Linux kernel
2972     with a few adjustments for U-Boot.  This fixes the following build error:
2974     make -C lib_generic/
2975     zlib.c:31:27: error: asm/unaligned.h: No such file or directory
2976     zlib.c: In function 'inflate_fast':
2977     zlib.c:641: warning: implicit declaration of function 'get_unaligned'
2978     make[1]: *** [zlib.o] Error 1
2979     make[1]: Leaving directory `/home/skuribay/git/u-boot.git/lib_generic'
2980     make: *** [lib_generic/libgeneric.a] Error 2
2982     Reported-by: Himanshu Chauhan <himanshu@symmetricore.com>
2983     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
2985 commit 38a8b3eafb17d61690e5fc93e6dc45120f79d7d0
2986 Author: Magnus Lilja <lilja.magnus@gmail.com>
2987 Date:   Sun Jan 17 17:46:11 2010 +0100
2989     MX31: Activate NAND environment on i.MX31 PDK board.
2991     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
2993 commit c4832dffff20519e72879a8da010174ac0526141
2994 Author: Magnus Lilja <lilja.magnus@gmail.com>
2995 Date:   Sun Jan 17 17:46:10 2010 +0100
2997     MXC: Add large page oob layout for i.MX31 NAND controller.
2999     Import the large page oob layout from Linux mxc_nand.c driver.
3001     The CONFIG_SYS_NAND_LARGEPAGE option is used to activate
3002     the large page oob layout. Run time detection is not supported
3003     as this moment.
3005     This has been tested on the i.MX31 PDK board with a large
3006     page NAND device.
3008     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
3010 commit f6a9748e3261fdccdeb78a2b58e6ad538ba54496
3011 Author: Magnus Lilja <lilja.magnus@gmail.com>
3012 Date:   Wed Nov 11 20:18:43 2009 +0100
3014     mxc_nand: Update driver to work with i.MX31.
3016     Tested on i.MX31 Litekit.
3018     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
3020 commit c816dcb118e26ba17e7d73989514fec08a3823ac
3021 Author: Magnus Lilja <lilja.magnus@gmail.com>
3022 Date:   Wed Nov 11 20:18:42 2009 +0100
3024     MX31: Add struct definition for clock control module in i.MX31.
3026     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
3028 commit 50ef25ef24eccd8e69d2c1ccc97b3f7e30109f51
3029 Author: Michal Simek <monstr@monstr.eu>
3030 Date:   Tue Jan 19 12:03:25 2010 +0100
3032     microblaze: zlib needs asm/unaligned.h
3034     Microblaze has own hw unaligned handler if is available.
3035     Use big endian version.
3037     Signed-off-by: Michal Simek <monstr@monstr.eu>
3039 commit 5b8b83bce6fdd0d2ca661de90ae83a0f8b152de6
3040 Author: Michal Simek <monstr@monstr.eu>
3041 Date:   Tue Jan 19 12:03:24 2010 +0100
3043     microblaze: Remove getenv_IPaddr prototype
3045     Commit 6a45e384955262882375a2785426dc65aeb636c4
3046     should remove reference from Microblaze too.
3048     Signed-off-by: Michal Simek <monstr@monstr.eu>
3050 commit b9e6957ca15be8466190794d6d87845491b3411b
3051 Author: Alessandro Rubini <rubini@unipv.it>
3052 Date:   Mon Jan 18 22:38:38 2010 +0100
3054     MAINTAINERS: fix nhk8815 board name
3056     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
3058 commit b40e2320c440c5082020e5036a0cb8d4ed1b3d7d
3059 Author: Ben Warren <biggerbadderben@gmail.com>
3060 Date:   Mon Jan 18 11:35:31 2010 -0800
3062     Fix breakage in SMC EEPROM standalone applications
3064     Commit 6a45e384955262882375a2785426dc65aeb636c4 (Make getenv_IPaddr() global)
3065     inadvertently added ' #include "net.h" ' to the standalone programs, creating
3066     duplicate definitions of 'struct eth_device'.  This patch removes the local
3067     definitions and removes other code that breaks due to the change in definition.
3069     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3070     Acked-by: Mike Frysinger <vapier@gentoo.org>
3072 commit 2a9987935e3cdb61e7550c87cbc9f500a54f672d
3073 Author: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
3074 Date:   Mon Jan 18 18:13:39 2010 +0100
3076     Makefile: fix parallel build
3078     During parallel build, the top Makefile spawns multiple sub-makes for
3079     targets in cpu/$(CPU) and $(dir $(LDSCRIPT)). If the .depend files are
3080     not present in these directories, the sub-makes may end up generating
3081     these files simultaneously which leads to corrupted content.
3083     A typical error message is:
3085     .depend:39: *** multiple target patterns.  Stop.
3087     This patch serializes the creation of .depend in cpu/$(CPU) and
3088     $(dir $(LDSCRIPT)) by adding these directories to the depend target
3089     in the top Makefile.
3091     Other directories in $(LIBS) are not affected since they contain only
3092     one Make target and thus only one sub-make is spawned per directory.
3094     Signed-off-by: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
3095     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3097 commit f19fd87e9387282b5abbfdafe46ac272320643d8
3098 Author: Robin Getz <robin.getz@analog.com>
3099 Date:   Mon Dec 21 16:35:48 2009 -0500
3101     Blackfin: add support for kgdb
3103     Signed-off-by: Robin Getz <robin.getz@analog.com>
3104     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3106 commit 3869453f659c22396fecb7c8ed7af909e89f461c
3107 Author: Robin Getz <robin.getz@analog.com>
3108 Date:   Mon Dec 21 17:55:22 2009 -0500
3110     asm-generic/signal.h: import from linux
3112     We need signal.h for Blackfin/KGDB, so import the asm-generic/signal.h
3113     for people to leverage.
3115     Signed-off-by: Robin Getz <robin.getz@analog.com>
3116     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3118 commit 88ffb2665cd066b6b20cfaade13929d4e8428dde
3119 Author: Heiko Schocher <hs@denx.de>
3120 Date:   Thu Jan 7 08:55:54 2010 +0100
3122     CRAMFS: support cramfs in RAM
3124     cramfsls and cramfsload are added to the command list.
3125     A cramfs placed at 'cramfs_addr' can the be listed with 'cramfsls' and files
3126     can be loaded with 'cramfsload'. 'cramfs_addr' is an environment variable
3127     specifying the address the cramfs is located.
3128     This works for powerpc and for ARM.
3130     Use CONFIG_CMD_CRAMFS.
3132     Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
3133     Signed-off-by: Heiko Schocher <hs@denx.de>
3135 commit 4897ee33c98b4b29efd62854052eb7862380b5ae
3136 Author: Heiko Schocher <hs@denx.de>
3137 Date:   Thu Jan 7 08:55:50 2010 +0100
3139     powerpc: keymile boards updates
3141     - malloc size 4 MB for all keymile boards
3142     - use generic FDT code for fixing up the DTS
3143     - enable unit-led at startup for keymile boards
3144     - remove some dts updates for keymile boards
3145     - ppc_83xx, kmeter1: take FE/GbE PHYs out of reset
3146     - ppc_83xx, kmeter1: change from Intel Strata to Spansion 64MB flash
3147       changed from Intel Strata to Spansion 64MB flash and changed flash layout.
3148     +---------+----------+-----------------------+-----------------------------+
3149     | name    | size     | range                 | description                 |
3150     +---------+----------+-----------------------+-----------------------------+
3151     | u-boot  |   768 KB | 0xf0000000-0xf00bffff | for u-boot                  |
3152     | env     |   128 KB | 0xf00c0000-0xf00dffff | for environment             |
3153     | envred  |   128 KB | 0xf00e0000-0xf00fffff | for environment (redundant) |
3154     | ubi0    | 64512 KB | 0xf0100000-0xf3ffffff | ubi0 for ubi volumes        |
3155     +---------+----------+-----------------------+-----------------------------+
3157     Signed-off-by: Heiko Schocher <hs@denx.de>
3159 commit 1567b596d9f4a7ff49ebdca29e15a33777dfd670
3160 Author: Heiko Schocher <hs@denx.de>
3161 Date:   Thu Jan 7 08:55:44 2010 +0100
3163     env, eeprom: add redundant environment support
3165     Add redundant environment support for environment lying on a EEPROM.
3167     Tested on uppcoming suen3 support
3169     Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
3171 commit 548738b4d43af841ff58c787bce297ac6a8bf7d1
3172 Author: Heiko Schocher <hs@denx.de>
3173 Date:   Thu Jan 7 08:55:40 2010 +0100
3175     cmd_eeprom: I2C updates
3177     - CONFIG_ENV_EEPROM_IS_ON_I2C
3178       define this, if you have I2C and SPI activated, and your
3179       EEPROM, which holds the environment, is on the I2C bus.
3181     - CONFIG_I2C_ENV_EEPROM_BUS
3182       if you have an Environment on an EEPROM reached over
3183       I2C muxes, you can now define, how to reach this
3184       EEPROM.
3186     Signed-off-by: Heiko Schocher <hs@denx.de>
3188 commit b63815e31355b44e65899b361da1d8ef6940ab90
3189 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
3190 Date:   Tue Dec 22 23:05:45 2009 +0100
3192     move definition of macros likely and unlikely to compiler.h
3194     the macros likely and unlikely were defined in include/linux/mtd/compat.h,
3195     but used in code not related to MTD. moved the macro definitions to compiler.h
3197     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
3199 commit c3d7eec6d88945dec0626cdd4f4a35cb5f83ef00
3200 Author: Detlev Zundel <dzu@denx.de>
3201 Date:   Tue Dec 22 12:43:02 2009 +0100
3203     cmd_bootm.c: Change interpretation of standalone image parameters.
3205     Current code uses the second argument to bootm for standalone images to
3206     override the load address specified in the image instead of passing all
3207     parameters as is to the application.  This behaviour is not documented
3208     and not in line with how the go command works for standalone applications,
3209     so we simply drop it.
3211     Signed-off-by: Detlev Zundel <dzu@denx.de>
3213 commit 8b828a8f44b7ee9953c7ba63e64b1e80790139b3
3214 Author: Detlev Zundel <dzu@denx.de>
3215 Date:   Tue Dec 22 12:43:01 2009 +0100
3217     cmd_bootm.c: Do not load a ramdisk when not booting a kernel.
3219     In case we boot an image marked as 'standalone' and 'linux', the current
3220     code erroneously tried to load a ramdisk.
3222     Signed-off-by: Detlev Zundel <dzu@denx.de>
3224 commit 16035bcd8c81c3c59dddfb54f48e8059a623b13c
3225 Author: Robin Getz <robin.getz@analog.com>
3226 Date:   Mon Dec 21 18:40:44 2009 -0500
3228     kgdb: update mem2hex/hex2mem funcs
3230     Convert the funcs to do the conversion inline so that we can do the copy
3231     all at once with memcpy.  This let's us push out an weird arch-specific
3232     issue with accessing different regions of memory to the memcpy function
3233     like the MMRs on Blackfin systems, and it should be a bit faster.
3235     Signed-off-by: Robin Getz <robin.getz@analog.com>
3236     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3238 commit cbb0cab1d929839d1cf170b54b1fef05896433ea
3239 Author: Mike Frysinger <vapier@gentoo.org>
3240 Date:   Mon Dec 21 18:40:43 2009 -0500
3242     kgdb: drop duplicate debugger_exception_handler
3244     The debugger_exception_handler definition is the same for everyone, so use
3245     the common one now.
3247     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3249 commit 0c909551f88c0d92a919ff70127df7b33cdd473d
3250 Author: Robin Getz <robin.getz@analog.com>
3251 Date:   Mon Dec 21 18:40:42 2009 -0500
3253     kgdb: add default generic stubs
3255     The default kgdb functions can be implemented with common U-Boot functions,
3256     so rather than force everyone to copy & paste these things, create a set of
3257     weak stubs.
3259     Signed-off-by: Robin Getz <robin.getz@analog.com>
3260     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3262 commit fa2744de6584c92750f807a006e20a59ee046e76
3263 Author: Mike Frysinger <vapier@gentoo.org>
3264 Date:   Mon Dec 21 14:19:12 2009 -0500
3266     netconsole: mark local funcs with static
3268     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3270 commit 7293e0577f149b75595b6f6ceb75bf50a523aff6
3271 Author: Michael Hennerich <michael.hennerich@analog.com>
3272 Date:   Sat Dec 19 08:19:09 2009 -0500
3274     easylogo: add support for 16-bit RGB565
3276     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
3277     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3279 commit 0f597bc2a80353bcd0fd4daf42e2047c959485c8
3280 Author: Detlev Zundel <dzu@denx.de>
3281 Date:   Fri Dec 18 17:35:57 2009 +0100
3283     mpc5xxx/cpu_init.c: Convert to IO accessors.
3285     Signed-off-by: Detlev Zundel <dzu@denx.de>
3287 commit 18e89890625c86be6c971c01b824d14bbdd78e25
3288 Author: Detlev Zundel <dzu@denx.de>
3289 Date:   Fri Dec 18 17:35:56 2009 +0100
3291     mpc5xxx.h: Add structure definition for XLB arbiter block.
3293     Signed-off-by: Detlev Zundel <dzu@denx.de>
3295 commit 10c32ff59f7abe352b548066918bc5ea39e7c47b
3296 Author: Mike Frysinger <vapier@gentoo.org>
3297 Date:   Wed Dec 2 21:15:03 2009 -0500
3299     config_defaults.h: new header for common u-boot config defaults
3301     There are a bunch of features in U-Boot that we want to enable by default,
3302     and it's best if we centralize them in one place rather than updating all
3303     the board files out there.
3305     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3307 commit 64917ca38933d10b3763f61df7a1e58e1e127b52
3308 Author: Peter Tyser <ptyser@xes-inc.com>
3309 Date:   Sun Jan 17 15:38:26 2010 -0600
3311     PCIe, USB: Replace 'end point' references with 'endpoint'
3313     When referring to PCIe and USB 'endpoint' is the standard naming
3314     convention.
3316     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3317     Acked-by: Stefan Roese <sr@denx.de>
3318     Acked-by: Remy Bohmer <linux@bohmer.net>
3320 commit 6a45e384955262882375a2785426dc65aeb636c4
3321 Author: Dirk Behme <dirk.behme@googlemail.com>
3322 Date:   Sun Jan 3 08:33:58 2010 +0100
3324     Make getenv_IPaddr() global
3326     There are boards out there that do not have network support in
3327     U-Boot (CONFIG_CMD_NET not set), but they do so in Linux. This
3328     makes it desirable to be able to port network configuration (like
3329     the IP address) to the Linux kernel.
3331     We should not make the passing of the IP configuration to Linux
3332     dependent on U-Boot features / settings.
3334     For this, make getenv_IPaddr() global. This fixes build error
3336     u-boot/lib_xxx/board.c:360: undefined reference to `getenv_IPaddr'
3338     on various architectures.
3340     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
3341     Acked-by: Ben Warren <biggerbadderben@gmail.com>
3343 commit 846a6391e4bc9fdd721753a1021953ff0ca17c27
3344 Author: Mike Frysinger <vapier@gentoo.org>
3345 Date:   Fri Jan 15 04:50:40 2010 -0500
3347     Blackfin: drop .eh_frame from linker script
3349     Nothing in U-Boot uses runtime C++ exceptions/unwinding, so there is no
3350     need to list this section.
3352     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3354 commit ed912d4d659e67910edca04498803db24d826615
3355 Author: Mike Frysinger <vapier@gentoo.org>
3356 Date:   Fri Jan 15 04:47:06 2010 -0500
3358     Blackfin: use sort funcs in the linker script
3360     This is just Blackfin catching up with every one else.
3362     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3364 commit 2aeda2d054bb32027bed33d9c3a63d152164b5e0
3365 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
3366 Date:   Wed Jan 13 09:04:53 2010 -0500
3368     Blackfin: tcm-bf518: new board port
3370     Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
3371     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3373 commit c46a0ebf82d3fd27dd21ad7d4fe7f11c2b2b0b21
3374 Author: Mike Frysinger <vapier@gentoo.org>
3375 Date:   Fri Jan 8 07:56:17 2010 -0500
3377     Blackfin: enable JFFS summary support for ADI boards
3379     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3381 commit 912da8d606997822d44905b83ef47799a130a1b9
3382 Author: Mike Frysinger <vapier@gentoo.org>
3383 Date:   Fri Jan 8 06:14:13 2010 -0500
3385     Blackfin: bf518f-ezbrd: increase monitor length
3387     The addition of KGDB overflowed the current linker section.
3389     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3391 commit 03642aeee0d51660c35c9dbdde78882eb3efb350
3392 Author: Robin Getz <robin.getz@analog.com>
3393 Date:   Mon Dec 21 17:02:48 2009 -0500
3395     Blackfin: handle anomaly 05000257
3397     Need to reload the loop counters to keep from corrupting hardware loops.
3399     Signed-off-by: Robin Getz <robin.getz@analog.com>
3400     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3402 commit b6db2834407d49ec48ac8e9281fdd704d5ee3eba
3403 Author: Robin Getz <robin.getz@analog.com>
3404 Date:   Mon Dec 21 16:59:21 2009 -0500
3406     Blackfin: keep hwtrace on CPLB miss
3408     Crashes rarely happen in the CPLB miss handler compared to the rest of
3409     U-Boot code, so disable hardware tracing when processing misses.  This
3410     way a crash due to other functions will be shown properly.
3412     Signed-off-by: Robin Getz <robin.getz@analog.com>
3413     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3415 commit 0097870e3d72f10ec58ae22488945fd9ee37289f
3416 Author: Robin Getz <robin.getz@analog.com>
3417 Date:   Mon Dec 21 15:31:08 2009 -0500
3419     Blackfin: add a netconsole helper
3421     Signed-off-by: Robin Getz <robin.getz@analog.com>
3422     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3424 commit 10eafa10be2deaba4939d0c19cd21648f2d3d4aa
3425 Author: Michael Hennerich <michael.hennerich@analog.com>
3426 Date:   Thu Dec 10 09:19:21 2009 +0000
3428     Blackfin: add support for BF527-EZKIT v2.1
3430     The new board revision has a different LCD.
3432     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
3433     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3435 commit 9442c4a1337dbcf82e3bc02a12e24f491e0e6122
3436 Author: Cliff Cai <cliff.cai@analog.com>
3437 Date:   Tue Dec 8 07:25:57 2009 +0000
3439     Blackfin: bf527-ezkit/bf548-ezkit: add musb board specific initialization
3441     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3442     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3444 commit 581d92eefc1a060ea5c6eb42028880a37095953d
3445 Author: Cliff Cai <cliff.cai@analog.com>
3446 Date:   Mon Dec 7 08:03:06 2009 +0000
3448     Blackfin: bfin_spi: round up clock divider
3450     If the requested clock cannot be exactly obtained, round it up so that we
3451     err on the side of slightly slower rather than slightly faster.
3453     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3454     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3456 commit a52ad4f99486ce3f404f83f75263e321956bb6d5
3457 Author: Mike Frysinger <vapier@gentoo.org>
3458 Date:   Mon Nov 30 13:51:24 2009 -0500
3460     Blackfin: pull io funcs from linux
3462     Some common code uses more of the io.h funcs than we currently provide, so
3463     pull in all of the ones from the linux kernel.
3465     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3467 commit 5eefe7e99537ca3641496185f23b1dc9e76b405c
3468 Author: Mike Frysinger <vapier@gentoo.org>
3469 Date:   Mon Nov 30 13:34:07 2009 -0500
3471     Blackfin: section off the CF/IDE io.h hacks
3473     These need to be rethought, but until that happens, isolate the hack so
3474     that we can extend the common code without breaking things.
3476     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3478 commit 3b062da326f9b37d34aa8f80bf9d2f9e74f55c86
3479 Author: Mike Frysinger <vapier@gentoo.org>
3480 Date:   Mon Nov 30 13:30:18 2009 -0500
3482     Blackfin: drop unused funcs from io.h
3484     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3486 commit 5f79644d2665763d522ef2db53c026c5f4865b02
3487 Author: Mike Frysinger <vapier@gentoo.org>
3488 Date:   Mon Nov 30 13:08:39 2009 -0500
3490     Blackfin: bf533-stamp: split and cleanup CF/IDE code
3492     Give the CF/IDE code its own file to keep things cleanly separated.  While
3493     we're here, clean up the code to use common functions.
3495     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3497 commit e54c8209913a3f26ae28819e3515df53ec2b4548
3498 Author: Cliff Cai <cliff.cai@analog.com>
3499 Date:   Fri Nov 20 08:24:43 2009 +0000
3501     Blackfin: convert bfin_sdh to generic mmc
3503     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3504     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3506 commit 17ebd5bf3393144f3ead19384318a6e5b01c4f90
3507 Author: Cliff Cai <cliff.cai@analog.com>
3508 Date:   Tue Nov 17 09:36:21 2009 +0000
3510     Blackfin: bfin_spi: let boards control idle value
3512     Some SPI devices like to see high idle values rather than low.
3514     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3515     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3517 commit ea693f22d8dbd8a65867a60a7f3faac30f85d65b
3518 Author: Mike Frysinger <vapier@gentoo.org>
3519 Date:   Sat Nov 14 13:53:00 2009 -0500
3521     Blackfin: asm/string.h: drop useless includes
3523     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3525 commit f948158f72e6b880d02e4fa549362e4dc285eb1c
3526 Author: Mike Frysinger <vapier@gentoo.org>
3527 Date:   Thu Nov 12 18:42:53 2009 -0500
3529     Blackfin: use new bfin read/write mmr helper funcs
3531     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3533 commit 313e8aacc1c9f5ca06085fa19b1429fa18a01aaa
3534 Author: Mike Frysinger <vapier@gentoo.org>
3535 Date:   Thu Nov 12 18:42:07 2009 -0500
3537     Blackfin: move watchdog config check to Makefile
3539     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3541 commit dc6bc645e0cc1939b31cc54346415cf8e0dffc88
3542 Author: Mike Frysinger <vapier@gentoo.org>
3543 Date:   Wed Nov 11 19:08:33 2009 -0500
3545     Blackfin: fix L1 Instruction sizes on BF52x/BF54x
3547     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3549 commit b7659ef2e764f62fc334f0d970721496823e4888
3550 Author: Mike Frysinger <vapier@gentoo.org>
3551 Date:   Wed Nov 11 17:29:35 2009 -0500
3553     Blackfin: bf527-ezkit: auto-select NAND settings
3555     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3557 commit 7527feef06b13e9fd5b6d10a4bfc81b59ee56f27
3558 Author: Mike Frysinger <vapier@gentoo.org>
3559 Date:   Mon Nov 9 19:38:23 2009 -0500
3561     Blackfin: support boards with no external memory
3563     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3565 commit dbda2c65e5fec92d0791367b53042983746ce95b
3566 Author: Mike Frysinger <vapier@gentoo.org>
3567 Date:   Mon Nov 9 19:44:04 2009 -0500
3569     Blackfin: re-architect initcode
3571     The single initcode function was growing unwieldy, so split it up the
3572     distinct steps into their own function.  This should making digesting the
3573     result much easier on people.
3575     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3577 commit f5402d4c27e471c333cb84a82a437e60c6182449
3578 Author: Mike Frysinger <vapier@gentoo.org>
3579 Date:   Mon Nov 9 18:08:09 2009 -0500
3581     Blackfin: global_data.h: make pull in needed headers
3583     We need the definition of bd_t in this header, so pull in asm/u-boot.h.
3585     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3587 commit fa45bd498a1970574f4b7539b67cc2286f1324fa
3588 Author: Mike Frysinger <vapier@gentoo.org>
3589 Date:   Tue Nov 3 06:28:22 2009 -0500
3591     Blackfin: kill off useless initdram() usage
3593     While the initdram() function makes sense on some arches, it doesn't for
3594     Blackfin systems as it's always implemented the same way.
3596     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3598 commit b1e2c5519a06f9a5841a7a434bf4da4d393f8df5
3599 Author: Mike Frysinger <vapier@gentoo.org>
3600 Date:   Tue Nov 3 06:11:31 2009 -0500
3602     Blackfin: move section length calculation to linker script
3604     The length of the sections is fixed at link time, so let the linker do the
3605     calculation rather than doing it ourselves at runtime.
3607     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3609 commit 446707c90f52e5fcafecd468920cfad685ee9fc7
3610 Author: Valentin Yakovenkov <yakovenkov@niistt.ru>
3611 Date:   Mon Oct 26 18:43:04 2009 -0400
3613     Blackfin: bf561-acvilon: new board port
3615     Signed-off-by: Valentin Yakovenkov <yakovenkov@niistt.ru>
3616     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3618 commit 16ada4f66ffea53662b7a61a5222cbc825d67175
3619 Author: Mike Frysinger <vapier@gentoo.org>
3620 Date:   Thu Oct 15 14:59:46 2009 -0400
3622     Blackfin: ADI settings: enable silent console support
3624     Very little additional code overhead, and only works when the user sets an
3625     env var ahead of time, so default to on makes sense.
3627     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3629 commit ac41c7a0e76fe6384949571373dc84a6098965ac
3630 Author: Mike Frysinger <vapier@gentoo.org>
3631 Date:   Thu Oct 15 14:55:21 2009 -0400
3633     Blackfin: bf537-stamp: rename SPI/MMC define
3635     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3637 commit fd04a05b89d848c7841d8512751b8cce8b791e69
3638 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
3639 Date:   Wed Oct 14 08:37:32 2009 -0400
3641     Blackfin: update tiny board settings (voltage/default env)
3643     The tinyboards like to run at a little lower voltage than the default, and
3644     they prefer to boot over the network.  For the latter, extend the common
3645     code a little to make this easier.
3647     Also fix the cm-bf527 env sector size while we're in here to reflect the
3648     flash that is actually in use.
3650     Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
3651     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3653 commit 76d82187c6cccbcd8d514015c3b283f05ee8ac5c
3654 Author: Mike Frysinger <vapier@gentoo.org>
3655 Date:   Tue Jul 21 22:17:36 2009 -0400
3657     Blackfin: tweak embedded LDR env config option
3659     Use the common config option for extracting the environment for embedding
3660     into LDR files and clarify the LDR-specific option.
3662     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3664 commit 2740544881f652566756815dda4da0bcd946e9de
3665 Author: Wolfgang Denk <wd@denx.de>
3666 Date:   Fri Jan 15 11:20:10 2010 +0100
3668     malloc: return NULL if not initialized yet
3670     When malloc() was called before it was properly initialized
3671     (as would happen if when used before relocation to RAM) it returned
3672     random, non-NULL values, which called all kinds of difficult to debug
3673     subsequent errors.
3675     Make sure to return NULL when initialization was not done yet.
3677     Signed-off-by: Wolfgang Denk <wd@denx.de>
3679 commit f098337152ca48e135448f5e7836cce938e12bc0
3680 Author: Wolfgang Denk <wd@denx.de>
3681 Date:   Fri Jan 15 11:10:33 2010 +0100
3683     JFFS2: drop support for LZARI compression mode
3685     Support for LZARI compression mode was added based on a MTD CVS
3686     snapshot of March 13, 2005. However, fs/jffs2/compr_lzari.c contains
3687     contradictory licensing terms: the original copyright clause says "All
3688     rights reserved. Permission granted for non-commercial use.", but
3689     later reference to the file 'LICENCE' in the jffs2 directory was added
3690     which says GPL v2 or later.
3692     As no boards ever used LZARI compression, and this file is also not
3693     present in recent MTD code, we resolve this conflict by removing the
3694     conflicting file and references to it.
3696     Also copy the referenced but missing file 'LICENCE' from the current
3697     MTD source tree.
3699     Signed-off-by: Wolfgang Denk <wd@denx.de>
3701 commit 321790f61bb92fead0fc01b8d055aa331d8dcf85
3702 Author: Bryan Wu <bryan.wu@analog.com>
3703 Date:   Sat Jan 9 16:53:54 2010 -0500
3705     usb: musb: add virtual root hub control support
3707     For MUSB devices that do not support multipoint (hubs), we have to emulate
3708     a root hub so that we can support core operations like resetting ports.
3710     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
3711     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3712     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3714 commit 559e2c87e45ae7261837d4945411c04833937d2a
3715 Author: Chris Zhang <chris@seamicro.com>
3716 Date:   Wed Jan 6 13:34:06 2010 -0800
3718     Adds EHCI definitions to sequoia board configuration file.
3720     Adds required definitions for EHCI support in sequoia configuration file.
3721     But still keeps the OHCI as default driver.
3723     Signed-off-by: Chris Zhang <chris@seamicro.com>
3725 commit 5f82887feecd7895593401f1ccda866bfb299fbb
3726 Author: Chris Zhang <chris@seamicro.com>
3727 Date:   Wed Jan 6 13:34:05 2010 -0800
3729     Add ppc440epx USB ehci support.
3731     Currently ppc440epx uses OHCI for USB full-speed support. This change adds
3732     support for EHCI.
3734     Signed-off-by: Chris Zhang <chris@seamicro.com>
3736 commit b416191a14770c6bcc6fd67be7decf8159b2baee
3737 Author: Chris Zhang <chris@seamicro.com>
3738 Date:   Wed Jan 6 13:34:04 2010 -0800
3740     Fix EHCI port reset.
3742     In USB ehci driver, the port reset is not terminated. EHCI spec says "A host
3743      controller must terminate the reset and stabilize the state of the port within
3744      2 milliseconds". Without termination, a port stays at reset state. This is
3745      observed on ppc4xx(sequoia) boards.
3747     Signed-off-by: Chris Zhang <chris@seamicro.com>
3749 commit b301be0599d14be46fc088861bb798648844aea5
3750 Author: Sanjeev Premi <premi@ti.com>
3751 Date:   Thu Dec 24 14:20:41 2009 +0530
3753     omap3: fix compile warning
3755     This patch fixes this warning during compile:
3757     omap3.c: In function 'musb_platform_init':
3758     omap3.c:126: warning: label 'end' defined but not used
3760     Problem reported by: Dirk Behme[dirk.behme@googlemail.com]
3762     Signed-off-by: Sanjeev Premi <premi@ti.com>
3764 commit e608f221c13943d88e86f44753e23668342c3df3
3765 Author: Bryan Wu <bryan.wu@analog.com>
3766 Date:   Wed Dec 16 22:04:02 2009 -0500
3768     usb: musb: add support for Blackfin MUSB
3770     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
3771     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3772     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3773     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3775 commit bc72a919e037782f64e3ac45c91bc60408e57e85
3776 Author: Bryan Wu <bryan.wu@analog.com>
3777 Date:   Wed Dec 16 22:04:01 2009 -0500
3779     usb: musb: change rxcsr register from write to read/modify/write
3781     The RX Control/Status register has bits that we want to preserve, so don't
3782     just write out a single bit.  Preserve the others bits in the process.
3784     The original code posted to the u-boot list had this behavior, but looks
3785     like it was lost somewhere along the way to merging.
3787     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
3788     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3789     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3790     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3792 commit 8868fd443b7a52bf433903cc9527403ad055acb9
3793 Author: Bryan Wu <bryan.wu@analog.com>
3794 Date:   Wed Dec 16 22:04:00 2009 -0500
3796     usb: musb: make multipoint optional
3798     The multipoint handling under MUSB is optional, and some parts (like the
3799     Blackfin processor) do not implement support for it.
3801     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
3802     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3803     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3804     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3806 commit df402ba38103df51f6929848b6a797eff4db61f8
3807 Author: Bryan Wu <bryan.wu@analog.com>
3808 Date:   Wed Dec 16 22:03:59 2009 -0500
3810     usb: musb: make fifo support configurable
3812     The dynamic FIFO handling under MUSB is optional, and some parts (like
3813     the Blackfin processor) do not implement support for it.
3815     Due to this, the FIFO reading/writing steps need special handling, so
3816     mark the common versions weak so drivers can override.
3818     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
3819     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
3820     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3821     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3823 commit dc2cd05c91a134d53fada41e8f97a434be22de02
3824 Author: Mike Frysinger <vapier@gentoo.org>
3825 Date:   Wed Dec 16 22:03:58 2009 -0500
3827     usb: musb: make sure the register layout is packed
3829     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3830     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3832 commit 7b4292883b6fdc42984671fbe4e0a352ec704bde
3833 Author: Ajay Kumar Gupta <ajay.gupta@ti.com>
3834 Date:   Tue Dec 22 10:56:14 2009 +0530
3836     DA830: Add usb config
3838     Adding USB configuration. Default is set for USB MSC host.
3840     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
3841     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
3843 commit 7359273d946a7dcde04c5e8d5bad669146efc87c
3844 Author: Ajay Kumar Gupta <ajay.gupta@ti.com>
3845 Date:   Tue Dec 22 10:56:13 2009 +0530
3847     DA8xx: Add MUSB host support
3849     Tested USB host functionality on DA830 EVM.
3851     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
3852     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
3854 commit 0b232310b2087d4278fb224fa01e228136fb8bdf
3855 Author: Ajay Kumar Gupta <ajay.gupta@ti.com>
3856 Date:   Tue Dec 22 10:56:12 2009 +0530
3858     DA8xx: Add GPIO register definitions
3860     Added DA8xx GPIO base addresses in gpio_defs.h and pointers
3861     to different BANKs which can be used to program GPIOs.
3863     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
3864     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
3866 commit 82a821f89bee913d7ba17cb500c778cf08dce321
3867 Author: Ajay Kumar Gupta <ajay.gupta@ti.com>
3868 Date:   Tue Dec 22 10:56:11 2009 +0530
3870     DA830: Add pinmux for USB0_DRVVBUS
3872     USB0_DRVVBUS pinmux configuration is required for USB functinality
3873     in uboot.
3875     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
3876     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
3878 commit a3f5da1bee9a8c343a411080d7d468bdc78794a4
3879 Author: Heiko Schocher <hs@denx.de>
3880 Date:   Thu Jan 7 08:56:00 2010 +0100
3882     mpc83xx: add support configure bus parking
3884     Add support to configure bus parking mode and master in bus arbitration
3885     configuration (ACR). Add this for the kmeter1 port:
3887     Configure bus arbiter with recommended values from Freescale
3888     to improve bus latency/throughput for application with
3889     intensive QuiccEngine activity.
3891     Signed-off-by: Heiko Schocher <hs@denx.de>
3892     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3894 commit a0daa2e06f05d97c03c59b656d50371319bf29ec
3895 Author: Reinhard Arlt <reinhard.arlt@esd.eu>
3896 Date:   Tue Dec 8 09:21:41 2009 +0100
3898     mpc83xx: vme8349: Fix power up reset sequence for tsi148
3900     Remove PCI reset, if there is a monarch PMC module.
3902     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd.eu>
3903     Signed-off-by: Stefan Roese <sr@denx.de>
3905     convert clrbits_be32 + setbits_be32 to clrsetbits_be32, use out_be32 to set gcr.
3907     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3909 commit 1dee9be683c9b0f060452aaf1a97a34fae87f07a
3910 Author: Reinhard Arlt <reinhard.arlt@esd.eu>
3911 Date:   Tue Dec 8 09:13:08 2009 +0100
3913     mpc83xx: Add support for MPC8349 esd caddy2
3915     The caddy2 is a variant of the already supported vme8349. So we just
3916     add the differences to this board port. To better support those two
3917     boards we switched from fixed SDRAM configuration to usage of
3918     spd_sdram(). This is done by providing a board specific SPD EEPROM
3919     routine with different values for both boards.
3921     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd.eu>
3922     Signed-off-by: Stefan Roese <sr@denx.de>
3924     changed to use mkconfig -t option instead, plus misc codingstyle fixes.
3926     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3928 commit 7693640acd5222f5a64e59ccf5e3bc511e8054b9
3929 Author: Stefan Roese <sr@denx.de>
3930 Date:   Tue Dec 8 09:10:04 2009 +0100
3932     mpc83xx: spd_sdram.c: Disable memory controller before initializing
3934     The memory controller could already be enabled, when spd_sdram() is
3935     called. This could be the case for example, when the SDRAM is initialized
3936     by the JTAG debugger.
3938     The "sync" after the register access via the accessor function is
3939     still needed, because the macro uses the sync before the real write
3940     is done. So until not all accesses are converted to using accessor
3941     functions, this sync still needs to be made "manually" here.
3943     Signed-off-by: Stefan Roese <sr@denx.de>
3944     Cc: Reinhard Arlt <reinhard.arlt@esd.eu>
3945     Acked-by: Dave Liu <daveliu@freescale.com>
3946     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3948 commit 2e95004deb6e33e33bf1b8a92a38cd2115bac4c2
3949 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3950 Date:   Tue Nov 24 20:12:12 2009 +0300
3952     mpc83xx: Add NAND boot support for MPC8315E-RDB boards
3954     The core support for NAND booting is there already, so this patch
3955     is pretty straightforward.
3957     There is one trick though: top level Makefile expects nand_spl to
3958     be in nand_spl/board/$(BOARDDIR), but we can fully reuse the code
3959     from mpc8313erdb boards, and so to not duplicate the code we just
3960     symlink nand_spl/board/freescale/mpc8315erdb to mpc8313erdb.
3962     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3964     o silence make during ln echo
3965     o update documentation
3966     o and avoid:
3968     $ ./MAKEALL MPC8315ERDB_NAND
3969     Configuring for MPC8315ERDB board...
3970     sdram.o: In function `fixed_sdram':
3971     /home/r1aaha/git/u-boot/nand_spl/board/freescale/mpc8313erdb/sdram.c:72: undefined reference to `udelay'
3973     by renaming udelay -> __udelay in the spirit of commit
3974     3eb90bad651fab39cffba750ec4421a9c01d60e7 "Generic udelay() with watchdog
3975     support".
3977     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3979 commit b821cead7d2147724d5f1d8ccbca40710faad38a
3980 Author: Sanjeev Premi <premi@ti.com>
3981 Date:   Fri Dec 18 14:55:24 2009 +0530
3983     onenand: Fix compile errors due to FlexOneNAND
3985     This patch fixes the compile error while trying to
3986     compile for omap3evm.
3988     env_onenand.c: In function 'env_relocate_spec':
3989     env_onenand.c:70: error: 'CONFIG_ENV_ADDR_FLEX' undeclared
3990      (first use in this function)
3991     env_onenand.c:70: error: (Each undeclared identifier is re
3992     ported only once
3993     env_onenand.c:70: error: for each function it appears in.)
3994     env_onenand.c: In function 'saveenv':
3995     env_onenand.c:106: error: 'CONFIG_ENV_ADDR_FLEX' undeclare
3996     d (first use in this function)
3997     env_onenand.c:107: error: 'CONFIG_ENV_SIZE_FLEX' undeclare
3998     d (first use in this function)
4000     Signed-off-by: Sanjeev Premi <premi@ti.com>
4001     Acked-by: Tom Rix <Tom.Rix@windriver.com>
4003 commit 20da6f4d93db270c57eb67968e441a20faf61938
4004 Author: Nick Thompson <nick.thompson@ge.com>
4005 Date:   Wed Dec 16 11:15:58 2009 +0000
4007     Davinci: davinci_nand.c performance enhancments
4009     Introduces various optimisations that approximately triple the
4010     read data rate from NAND when run on da830evm.
4012     Most of these optimisations depend on the endianess of the machine
4013     and most of them are very similar to optimisations already present
4014     in the Linux Kernel.
4016     Signed-off-by: Nick Thompson <nick.thompson@ge.com>
4018 commit 06f95959bc5421e516a9a25012e303dea8833385
4019 Author: Tom Rix <Tom.Rix@windriver.com>
4020 Date:   Wed Jan 6 09:36:24 2010 -0600
4022     ARM Update mach-types
4024     Fetched from http://www.arm.linux.org.uk/developer/machines/download.php
4025     And built with
4027     repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm
4028     commit c9f937e4a3f4ebf9924ec21d80632e5eb61d949c
4030     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4032 commit 8b0ab304943b07d13a29db6d3d2ca3edad32cdcb
4033 Author: Becky Bruce <beckyb@kernel.crashing.org>
4034 Date:   Tue Nov 17 21:10:21 2009 -0600
4036     ppc/p4080: Add Corenet Platform Cache (CPC) registers
4038     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
4039     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4041 commit 3e731aaba30c7011edf6391072eee845ed1b816f
4042 Author: Dave Liu <daveliu@freescale.com>
4043 Date:   Wed Dec 16 10:24:39 2009 -0600
4045     fsl-ddr: setup ODT_RD_CFG & ODT_WR_CFG when we interleave
4047     In chip-select interleaving case, we also need set the ODT_RD_CFG
4048     and ODT_WR_CFG in cs1_config register.
4050     Signed-off-by: Dave Liu <daveliu@freescale.com>
4051     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4053 commit 1aa3d08a0244506b94031522e54fe06ee7a5ae0e
4054 Author: Dave Liu <daveliu@freescale.com>
4055 Date:   Wed Dec 16 10:24:38 2009 -0600
4057     fsl-ddr: add override for the Rtt_Wr
4059     Different boards may require different settings of Dynamic ODT (Rtt_Wr).
4060     We provide a means to allow the board specific code to provide its own
4061     value of Rtt_Wr.
4063     Signed-off-by: Dave Liu <daveliu@freescale.com>
4064     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4066 commit bdc9f7b5eab8d5edd8a8cc5d80ef080836b00e85
4067 Author: Dave Liu <daveliu@freescale.com>
4068 Date:   Wed Dec 16 10:24:37 2009 -0600
4070     fsl-ddr: add the override for write leveling
4072     add the override for write leveling sampling and
4073     start time according to specific board.
4075     Signed-off-by: Dave Liu <daveliu@freescale.com>
4076     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4078 commit 0a71c92c7e1e565111cb34cd389a21ec500ca5c1
4079 Author: Dave Liu <daveliu@freescale.com>
4080 Date:   Wed Dec 16 10:24:36 2009 -0600
4082     fsl-ddr: Fix power-down timing settings
4084     1. TIMING_CFG_0[ACT_PD_EXIT] was set to 6 clocks, but
4085        It should be set to tXP parameter, tXP=max(3CK, 7.5ns)
4086     2. TIMING_CFG_0[PRE_PD_EXIT] was set to 6 clocks, but
4087        It should be set to tXP (if MR0[A12]=1) else to tXPDLL parameter
4088        We are setting the mode register MR0[A12]='1'
4090     Signed-off-by: Dave Liu <daveliu@freescale.com>
4091     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4093 commit c4ca10f1db36c3ce649c656dec14f7aab644dd86
4094 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4095 Date:   Wed Dec 16 01:14:31 2009 +0300
4097     mpc85xx: Add 4-bits eSDHC support for MPC8569E-MDS boards
4099     Thanks to "Errata to MPC8569E PowerQUICC III Integrated Host Processor
4100     Family Reference Manual, Rev. 0" document, which describes all eSDHC
4101     pins, we can add 4-bits eSDHC support for MPC8569E-MDS boards.
4103     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4104     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4106 commit bc20f9a9527afe8ae406a74f74765d4323f04922
4107 Author: Kumar Gala <galak@kernel.crashing.org>
4108 Date:   Wed Dec 9 17:28:17 2009 -0600
4110     ppc/p4080: Fix reporting of PME & FM clock frequencies
4112     We incorrectly had the sense of PME_CLK_SEL, FM1_CLK_SEL, FM2_CLK_SEL
4113     backwards so we report the wrong frequency.
4115     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4117 commit de3cbd78c9a485389b233f8ca705a9e5f51afaf3
4118 Author: Li Yang <leoli@freescale.com>
4119 Date:   Wed Dec 9 14:26:08 2009 +0800
4121     fsl_law: add SRIO2 target id and law_size_bits() macro
4123     Signed-off-by: Li Yang <leoli@freescale.com>
4124     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4126 commit abc76eb6a6936a99811eda256222b3927427f8e2
4127 Author: Kumar Gala <galak@kernel.crashing.org>
4128 Date:   Tue Nov 17 20:21:20 2009 -0600
4130     ppc/85xx: Map boot page guarded for MP boot
4132     We already map the page cache-inhibited.  There is no reason we
4133     shouldn't also be marking it guarded to prevent speculative accesses.
4135     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4137 commit effe4973f2f349e6e87d455ae718aabaf919a75d
4138 Author: Kumar Gala <galak@kernel.crashing.org>
4139 Date:   Tue Nov 17 22:44:52 2009 -0600
4141     ppc: Added macro to test for specific SVR revision
4143     Various SoC errata are specific to a given revision of silicon. This
4144     patch gives us a simple macro to use when doing such tests.
4146     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4148 commit f5ecc6e027150289c2a46db7cec197b2b6da893c
4149 Author: Dave Liu <daveliu@freescale.com>
4150 Date:   Tue Nov 17 20:01:24 2009 -0600
4152     p4080: add readback to bootpage translation window
4154     We need to add the readback to bootpage translation LAW
4155     to make it effect.
4157     Signed-off-by: Dave Liu <daveliu@freescale.com>
4158     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
4159     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4161 commit 5fb6ea3ad3562f78df8693ed8c4ca89654236c4f
4162 Author: Kumar Gala <galak@kernel.crashing.org>
4163 Date:   Fri Nov 13 09:25:07 2009 -0600
4165     ppc/85xx: Make flash TLB entry determined at runtime on FSL boards
4167     Rather than hard coding which TLB entry the FLASH is mapped with we can
4168     use find_tlb_idx to determine the entry.
4170     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4172 commit 783852e467f32a3a5568b542379e9fec3d26a173
4173 Author: Kumar Gala <galak@kernel.crashing.org>
4174 Date:   Fri Nov 13 09:09:10 2009 -0600
4176     ppc/85xx: Remove CONFIG_SYS_DDR_TLB_START
4178     Now that we dynamically determine TLB CAM entries to use we dont need
4179     CONFIG_SYS_DDR_TLB_START anymore.
4181     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4183 commit 355f4f85e90ce2e6d91883012c2993be7970c8b1
4184 Author: Kumar Gala <galak@kernel.crashing.org>
4185 Date:   Fri Nov 13 09:04:19 2009 -0600
4187     ppc/85xx: Make SPD DDR TLB setup code use dynamic entry allocation
4189     Now that we track which TLB CAM entries are used we can allocate
4190     entries on the fly.  Change the SPD DDR TLB setup code to assume
4191     we use at most 8 TLBs (or the number free, which ever is fewer).
4193     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4195 commit 94e9411b9dda182dd63d53ba6ea640c98b35db5f
4196 Author: Kumar Gala <galak@kernel.crashing.org>
4197 Date:   Thu Nov 12 10:26:16 2009 -0600
4199     ppc/85xx: Add tracking of TLB CAM usage
4201     We need to track which TLB CAM entries are used to allow us to
4202     "dynamically" allocate entries later in the code.  For example the SPD
4203     DDR code today hard codes which TLB entries it uses.  We can now make
4204     that pick entries that are free.
4206     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4208 commit ee53650dad2fede057e93fdf6f8cd72b29ef7cd0
4209 Author: Kumar Gala <galak@kernel.crashing.org>
4210 Date:   Wed Nov 4 13:00:55 2009 -0600
4212     ppc/8xxx: Remove is_fsl_pci_agent
4214     All users of is_fsl_pci_agent have been converted to fsl_is_pci_agent
4215     that uses the standard PCI programming model to determine host vs
4216     agent/end-point.
4218     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4220 commit 7cb8f79b44c70a3c66891f407254d9c739e2e7da
4221 Author: Kumar Gala <galak@kernel.crashing.org>
4222 Date:   Wed Nov 4 11:39:55 2009 -0600
4224     ppc/85xx: Move to using fsl_setup_hose on TQM 85xx
4226     We can use fsl_setup_hose to determine if we are a agent/end-point or
4227     a host.  Rather than using some SoC specific register we can just look
4228     at the PCI cfg space of the host controller to determine this.
4230     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4232 commit 9263e829f025661cbd3a80675285b42c14350ea4
4233 Author: Kumar Gala <galak@kernel.crashing.org>
4234 Date:   Wed Nov 4 13:01:51 2009 -0600
4236     ppc/85xx: Move to using fsl_setup_hose on P2020 DS
4238     We can use fsl_setup_hose to determine if we are a agent/end-point or
4239     a host.  Rather than using some SoC specific register we can just look
4240     at the PCI cfg space of the host controller to determine this.
4242     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4244 commit 1e21ba8f6d0708fe7f44066059927cfa6bfedf7a
4245 Author: Kumar Gala <galak@kernel.crashing.org>
4246 Date:   Wed Nov 4 13:01:38 2009 -0600
4248     ppc/85xx: Move to using fsl_setup_hose on P1/P2 RDB
4250     We can use fsl_setup_hose to determine if we are a agent/end-point or
4251     a host.  Rather than using some SoC specific register we can just look
4252     at the PCI cfg space of the host controller to determine this.
4254     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4256 commit 42c01b9d1f0132a6d82e2c8333b236b1e3b0831f
4257 Author: Kumar Gala <galak@kernel.crashing.org>
4258 Date:   Wed Nov 4 13:01:17 2009 -0600
4260     ppc/85xx: Move to using fsl_setup_hose on MPC8572 DS
4262     We can use fsl_setup_hose to determine if we are a agent/end-point or
4263     a host.  Rather than using some SoC specific register we can just look
4264     at the PCI cfg space of the host controller to determine this.
4266     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4268 commit 5e3d7050cf127dfcd6ab260c551e9183299d0dca
4269 Author: Kumar Gala <galak@kernel.crashing.org>
4270 Date:   Wed Nov 4 12:51:10 2009 -0600
4272     ppc/86xx: Clean up MPC8610 HPCD PCI setup code
4274     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4275     board ports, use IO accessors and clean up printing of status info.
4277     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4279 commit 7b626880b4e1fd8d2297c9341b92c2253fc27fd0
4280 Author: Kumar Gala <galak@kernel.crashing.org>
4281 Date:   Wed Nov 4 11:15:29 2009 -0600
4283     ppc/85xx: Clean up MPC8548 CDS PCI setup code
4285     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4286     board ports, use IO accessors and clean up printing of status info.
4288     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4290 commit feadd5d53ba5047c3bc912ff5b7c7a690c8c53cf
4291 Author: Kumar Gala <galak@kernel.crashing.org>
4292 Date:   Wed Nov 4 11:05:02 2009 -0600
4294     ppc/85xx: Clean up ATUM8548 PCI setup code
4296     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4297     board ports, use IO accessors and clean up printing of status info.
4299     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4301 commit 4681457e2aace8dff09dc4c6c02185231b970d6b
4302 Author: Kumar Gala <galak@kernel.crashing.org>
4303 Date:   Wed Nov 4 10:31:53 2009 -0600
4305     ppc/85xx: Clean up MPC8568 MDS PCI setup code
4307     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4308     board ports, use IO accessors and clean up printing of status info.
4310     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4312 commit c847e98b143c154cc466f9d03e90a3495329172b
4313 Author: Kumar Gala <galak@kernel.crashing.org>
4314 Date:   Wed Nov 4 10:26:30 2009 -0600
4316     ppc/85xx: Clean up MPC8569 MDS PCI setup code
4318     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4319     board ports, use IO accessors and clean up printing of status info.
4321     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4323 commit 645d5a7838058ce603803935cd40a62a26aea04d
4324 Author: Kumar Gala <galak@kernel.crashing.org>
4325 Date:   Wed Nov 4 10:22:26 2009 -0600
4327     ppc/85xx: Clean up MPC8544 DS PCI setup code
4329     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4330     board ports, use IO accessors and clean up printing of status info.
4332     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4334 commit 8a414c4258aeeab93fb83fad0544894597c8bd35
4335 Author: Mingkai Hu <Mingkai.hu@freescale.com>
4336 Date:   Wed Oct 28 10:49:31 2009 +0800
4338     ppc/85xx: Clean up MPC8536 DS PCI setup code
4340     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4341     board ports, use IO accessors and clean up printing of status info.
4343     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
4344     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4346 commit 3ad89c4ecba51564c97075f031aef4fa5eafbb16
4347 Author: Kumar Gala <galak@kernel.crashing.org>
4348 Date:   Sat Oct 31 11:23:41 2009 -0500
4350     NET: Base support for etsec2.0
4352     1. Modified the tsec_mdio structure to include the new regs
4353     2. Modified the MDIO_BASE_ADDR so that it will handle both
4354     older version and new version of etsec.
4356     Signed-off-by: Sandeep Gopalpet <sandeep.kumar@freescale.com>
4357     Acked-by: Kim Phillips <kim.phillips@freescale.com>
4358     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4360 commit b9e186fc31683a4f1b6880c086950b2270e62e24
4361 Author: Sandeep Gopalpet <sandeep.kumar@freescale.com>
4362 Date:   Sat Oct 31 00:35:04 2009 +0530
4364     NET: Move MDIO regs out of TSEC Space
4366     Moved the mdio regs out of the tsec structure,and
4367     provided different offsets for tsec base and mdio
4368     base so that provision for etsec2.0 can be provided.
4370     This patch helps in providing the support for etsec2.0
4371     In etsec2.0, the MDIO register space and the etsec reg
4372     space are different.
4374     Also, moved the TSEC_BASE_ADDR and MDIO_BASE_ADDR definitons into
4375     platform specific files.
4377     Signed-off-by: Sandeep Gopalpet <sandeep.kumar@freescale.com>
4378     Acked-by: Kim Phillips <kim.phillips@freescale.com>
4379     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4381 commit bcad21fda187f7d8d5d2c026c395cca35a9c700e
4382 Author: Kumar Gala <galak@kernel.crashing.org>
4383 Date:   Thu Mar 19 02:46:28 2009 -0500
4385     85xx: Add support to set DPAA (data path) devices clock frequencies
4387     Set clock-frequency for Frame Manager 0/1 and Patter Match Engine on p4080.
4389     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4391 commit 178e39e199e9c985e5e5e968d60d7243fceb5616
4392 Author: Kumar Gala <galak@kernel.crashing.org>
4393 Date:   Thu Sep 17 00:01:14 2009 -0500
4395     ppc/8xxx: Don't use pci_cfg on FSL_CORENET platforms
4397     The FSL_CORENET platforms use a completely different means to determine
4398     which PCIe port is enabled as well as if its a host or agent/end-point.
4400     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4402 commit 11588b5dc4c581b2a68a24e3298ab14e83c59d31
4403 Author: Kumar Gala <galak@kernel.crashing.org>
4404 Date:   Thu Oct 15 23:22:10 2009 -0500
4406     ppc/p4080: Added p4080 SERDES registers & USB offset
4408     Added immap definition for SERDES registers on p4080, the USB offset
4409     (since it was missing) and a GPL header.
4411     Signed-off-by: Li Yang <leoli@freescale.com>
4412     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4414 commit 82fd1f8da9add2d74532cf78d224485f0042d00d
4415 Author: Kumar Gala <galak@kernel.crashing.org>
4416 Date:   Thu Mar 19 02:53:01 2009 -0500
4418     85xx: Add support for e500mc cache stashing
4420     The e500mc core supports the ability to stash into the L1 or L2 cache,
4421     however we need to uniquely identify the caches with an id.
4423     We use the following equation to set the various stash-ids:
4425     32 + coreID*2 + 0(L1) or 1(L2)
4427     The 0 (for L1) or 1 (for L2) matches the CT field used be various cache
4428     control instructions.
4430     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4432 commit 26be2c53d671ecfd3e0483f0870649ac28322293
4433 Author: Nick Thompson <nick.thompson@ge.com>
4434 Date:   Sat Dec 12 12:13:10 2009 -0500
4436     Davinci: NAND enable ECC even when not in NAND boot mode
4438     Davinci: NAND enable ECC even when not in NAND boot mode
4440     On Davinci platforms, the default NAND device is enabled (for ECC)
4441     in low level boot code when NAND boot mode is used. If booting in
4442     another mode, NAND ECC is not enabled. The driver should make
4443     sure ECC is enabled regardless of boot mode if NAND is configured
4444     in U-Boot.
4446     Signed-off-by: Nick Thompson <nick.thompson@ge.com>
4448 commit 97f4eb8cfb97c7c5b158e3c0df4611efbf50f403
4449 Author: Nick Thompson <nick.thompson@gefanuc.com>
4450 Date:   Sat Dec 12 12:12:26 2009 -0500
4452     Davinci: Configurable NAND chip selects
4454     Davinci: Configurable NAND chip selects
4456     Add a CONFIG_SYS_NAND_CS setting to all davinci configs and
4457     use it to setup the NAND controller in the davinci_nand
4458     mtd driver.
4460     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
4462 commit 90110e0eab5ac6ab714109ce1fd8873c858dd552
4463 Author: Nick Thompson <nick.thompson@gefanuc.com>
4464 Date:   Sat Dec 12 12:10:51 2009 -0500
4466     Davinci: Table driven pinmux configuration
4468     Davinci: Table driven pinmux configuration
4470     Add code to allow pinmux_config tables to be grouped and configured
4471     as a single resource. This removes multiple calls to the pinmux
4472     configuration code from board_init and allows pinmuxes to be
4473     individually configured and added by data manipulation only.
4475     All related #ifdefs can the be removed from board_init code and
4476     since the compiler optimises away statics, #ifdefs can be reduced in
4477     the data definitions as well.
4479     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
4481 commit 1270ec13d4fbae48a537dc76d418a6efa72f5725
4482 Author: Robert P. J. Day <rpjday@crashcourse.ca>
4483 Date:   Sat Dec 12 12:10:33 2009 -0500
4485     Remove superfluous uses of V_PROMPT macro.
4487     A number of config files define the V_PROMPT macro for the
4488     command-line prompt, only to immediately use that macro to define
4489     CONFIG_SYS_PROMPT, making V_PROMPT entirely superfluous.
4491     Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
4493 commit 8b432bebc205a959684559477472c048e31d137d
4494 Author: Grazvydas Ignotas <notasas@gmail.com>
4495 Date:   Fri Dec 11 15:07:30 2009 +0200
4497     pandora: don't enable VAUX3, VDAC and VPLL2 regulators
4499     These regulators are not needed to start the kernel and only
4500     cause "incomplete constraints" warnings from kernel, so don't
4501     turn them on to save power.
4503     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
4505 commit ead39d7aa3ddccb2e374217aeab23bd65cedb762
4506 Author: Grazvydas Ignotas <notasas@gmail.com>
4507 Date:   Thu Dec 10 17:10:21 2009 +0200
4509     TWL4030: make LEDs selectable for twl4030_led_init()
4511     Not all boards have both LEDs hooked, so enabling both on
4512     boards with single LED will just waste power. Make it
4513     possible to choose LEDs by adding argument to
4514     twl4030_led_init().
4516     Using this turn on only LEDB for pandora, leave both LEDs
4517     on for all other boards, as it was before this patch.
4519     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
4521 commit be34fef7fdcfaffc68495e50929669ac5e4bd800
4522 Author: Stefan Roese <sr@denx.de>
4523 Date:   Wed Dec 16 09:27:31 2009 +0100
4525     ppc4xx: alpr: Remove some not needed commands to make image fit again
4527     The latest changes increased the size of the alpr image a bit more.
4528     Now it doesn't fit into the 256k reserved for it. This patch now removes
4529     the commands "ping" and "diag" which are not needed in the production
4530     systems.
4532     Signed-off-by: Stefan Roese <sr@denx.de>
4533     Cc: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
4535 commit 072e754b6b9bef438fc0870318755e33051baa7d
4536 Author: Heiko Schocher <hs@denx.de>
4537 Date:   Thu Dec 3 11:23:17 2009 +0100
4539     i2c, ppc4xx: fix compiling KAREF and METROBOX boards.
4541     commit eb5eb2b0f744f0cba405160c5d01335c40f09acf
4543     ppc4xx: Cleanup PPC4xx I2C infrastructure
4545     This patch cleans up the PPC4xx I2C intrastructure:
4547     - Use C struct to describe the I2C registers instead of defines
4548     - Coding style cleanup (braces, whitespace, comments, line length)
4549     - Extract common code from i2c_read() and i2c_write()
4550     - Remove unneeded IIC defines from ppc405.h & ppc440.h
4552     breaks comiling for the KAREF and METROBOX boards.
4554     This patch fixes this issue.
4556     Signed-off-by: Heiko Schocher <hs@denx.de>
4557     Signed-off-by: Stefan Roese <sr@denx.de>
4559 commit 87d93a1ba2ae23550e1370adb7a3b00af0831165
4560 Author: Wolfgang Wegner <w.wegner@astro-kom.de>
4561 Date:   Wed Dec 9 15:16:47 2009 +0100
4563     move prototypes for gunzip() and zunzip() to common.h
4565     Prototype for gunzip/zunzip was only in lib_generic/gunzip.c and thus
4566     repeated in every file using it. This patch moves the prototypes to
4567     common.h and removes all prototypes distributed anywhere else.
4569     Signed-off-by: Wolfgang Wegner <w.wegner@astro-kom.de>
4571 commit 127e10842b2474ac20e40572a4102dd4d5ed80f1
4572 Author: Mahavir Jain <mjain@marvell.com>
4573 Date:   Tue Nov 3 12:22:10 2009 +0530
4575     usb: write command for RAW partition.
4577     This patch implements write support to usb device with raw partition.
4578     It will be useful for filesystem write support to usb device from
4579     u-boot in future.
4581     Tested with writing kernel image to raw usb disk & booting with usb
4582     read command into ram.
4584     [Note:  run usb part to get info about start sector & number of
4585     sectors on a partition for usb write operation.]
4587     Signed-off-by: Mahavir Jain <mjain@marvell.com>
4589 commit 73c8640e93881439b87a5734485a9e56a494ef50
4590 Author: Ajay Kumar Gupta <ajay.gupta@ti.com>
4591 Date:   Wed Nov 4 15:58:23 2009 -0600
4593     omap3evm: musb: add USB config
4595     Added USB host and device config for host (MSC, Keyboard) and
4596     device (ACM) functionalities.
4598     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
4600 commit ae4caf2fb53cc7be5d59a649b8aee86d542cbb6f
4601 Author: Tom Rix <Tom.Rix@windriver.com>
4602 Date:   Sat Oct 31 12:37:46 2009 -0500
4604     OMAP3 USB Initialize twl4030 only if required
4606     OMAP3EVM uses ISP1504 phy and so twl4030 related init is not required.
4608     Submitted-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
4609     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4611 commit 2ec1abea4359b94523d45a20d68d8582e09ace46
4612 Author: Tom Rix <Tom.Rix@windriver.com>
4613 Date:   Sat Oct 31 12:37:45 2009 -0500
4615     OMAP3 zoom2 Use usbtty if the debug board is not connected.
4617     The preferred serial output comes from the debug board.
4618     When the debug board is disconnected, fall back on using
4619     usbtty from the usb connector on the Zoom2 board.
4621     This shows up as /dev/ttyACM0 in a linux host.
4623     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4625 commit 6299487ef5dcdb06e0394f5955755c8dd9ce707b
4626 Author: Tom Rix <Tom.Rix@windriver.com>
4627 Date:   Sat Oct 31 12:37:44 2009 -0500
4629     USBTTY make some function declarations easier to use.
4631     Zoom2 needs to use these declarations and the include directory is a
4632     better place from them than in the middle of the driver directory.
4633     It did not make sense to create a new file for just a couple of
4634     lines so they were appended to the serial.h
4636     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4638 commit 25374bfbf3a6c6624d8db512c95a4960e3a84635
4639 Author: Tom Rix <Tom.Rix@windriver.com>
4640 Date:   Sat Oct 31 12:37:43 2009 -0500
4642     OMAP3 beagle Add usbtty configuration
4644     The primary console of beagle is the serial header.
4646     A secondary console is to use the usbtty.  The user can set this
4647     manually by doing
4649     setenv stdout usbtty; setenv stdin usbtty; setenv stderr usbtty
4650     saveenv
4652     usbtty will be usable by accessing the /dev/ttyACM0 on a linux host.
4654     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4656 commit 05be5a60e98eb1243901f556fefd66b1691fabe4
4657 Author: Tom Rix <Tom.Rix@windriver.com>
4658 Date:   Sat Oct 31 12:37:42 2009 -0500
4660     OMAP3 zoom1 Add usbtty configuration
4662     The primary console of zoom1 is the serial out from the jumpers
4663     accessed by removing the back panel.
4665     A secondary console is to use the usbtty.  The user can set this
4666     manually by doing
4668     setenv stdout usbtty; setenv stdin usbtty; setenv stderr usbtty
4669     saveenv
4671     usbtty will be usable by accessing the /dev/ttyACM0 on a linux host.
4673     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4675 commit f298e4b6dd56df3e35a13a6ddd572ca3baf06ad2
4676 Author: Tom Rix <Tom.Rix@windriver.com>
4677 Date:   Sat Oct 31 12:37:41 2009 -0500
4679     OMAP3 Add usb device support
4681     This change adds the usb device support for musb.
4683     Omap3 platform support added at the same level as davinci.
4685     The interface for usbtty to use the musb device support was added.
4687     Verified on omap3 beagle, zoom1 and zoom2.
4689     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4691 commit bffbb2a86d2a3aa28bd8f9869aa553082fb5af5f
4692 Author: Tom Rix <Tom.Rix@windriver.com>
4693 Date:   Sat Oct 31 12:37:40 2009 -0500
4695     TWL4030 Add usb PHY support
4697     The twl4030 provides a PHY device for connecting a link device,
4698     like musb, to physical connection.
4700     This change adds the twl4030 usb registers and functions for
4701     initializing the PHY as required by omap3.
4703     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4705 commit 988365a2048356f94ed0c294009233317c9fb4b2
4706 Author: Tom Rix <Tom.Rix@windriver.com>
4707 Date:   Sat Oct 31 12:37:39 2009 -0500
4709     USB add macros for debugging usb device setup.
4711     When developing usb device features, it is useful to print out
4712     common usb structures.
4714     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4716 commit 8f8bd565f35ff8a068727bfcf8975c50df082043
4717 Author: Tom Rix <Tom.Rix@windriver.com>
4718 Date:   Sat Oct 31 12:37:38 2009 -0500
4720     USB Consolidate descriptor definitions
4722     The header files usb.h and usbdescriptors.h have the same nameed
4723     structure definitions for
4725     usb_config_descriptor
4726     usb_interface_descriptor
4727     usb_endpoint_descriptor
4728     usb_device_descriptor
4729     usb_string_descriptor
4731     These are out right duplicates in usb.h
4733     usb_device_descriptor
4734     usb_string_descriptor
4736     This one has extra unused elements
4738     usb_endpoint_descriptor
4740         unsigned char   bRefresh
4741         unsigned char   bSynchAddress;
4743     These in usb.h have extra elements at the end of the usb 2.0
4744     specified descriptor and are used.
4746     usb_config_descriptor
4747     usb_interface_descriptor
4749     The change is to consolidate the definition of the descriptors
4750     to usbdescriptors.h.  The dublicates in usb.h are removed.
4751     The extra element structure will have their name shorted by
4752     removing the '_descriptor' suffix.
4754     So
4756     usb_config_descriptor -> usb_config
4757     usb_interface_descriptor -> usb_interface
4759     For these, the common descriptor elements are accessed now
4760     by an element 'desc'.
4762     As an example
4764     -   if (iface->bInterfaceClass != USB_CLASS_HUB)
4765     +   if (iface->desc.bInterfaceClass != USB_CLASS_HUB)
4767     This has been compile tested on MAKEALL arm, ppc and mips.
4769     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
4771 commit e5e4e705ce402856a4800ebf4c0cc163d41b58b0
4772 Author: Li Yang <leoli@freescale.com>
4773 Date:   Wed Dec 9 18:13:26 2009 +0800
4775     Update Makefile for tag generating
4777     Get tag directories from the $(__LIB) and also generate tag for .S files.
4779     Signed-off-by: Li Yang <leoli@freescale.com>
4781 commit d02ffbf8d72085035f746c63c2609daf20a84765
4782 Author: Kumar Gala <galak@kernel.crashing.org>
4783 Date:   Wed Dec 16 14:12:11 2009 -0600
4785     drivers/bios_emulator: Fix compile error in .depend not being generated
4787     make -C drivers/bios_emulator/
4788     make[2]: Entering directory
4789     `drivers/bios_emulator'
4790     In file included from atibios.c:49:
4791     biosemui.h:47:21: error: biosemu.h: No such file or directory
4792     ...
4793     x86emu/decode.c:40:28: error: x86emu/x86emui.h: No such file or directory
4794     ...
4796     Due to lack of proper CPPFLAGS being passed to .depend generation rule
4798     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4800 commit a200a7c04d89853d2a1395b96d8ca5e3dd754551
4801 Author: Wolfgang Denk <wd@denx.de>
4802 Date:   Tue Dec 15 23:20:54 2009 +0100
4804     Update CHANGELOG; prepare Prepare v2009.11
4806     Signed-off-by: Wolfgang Denk <wd@denx.de>
4808 commit f9476902b789b0481b9df49af88d6ca94fb16fa0
4809 Author: Peter Tyser <ptyser@xes-inc.com>
4810 Date:   Tue Dec 15 12:10:47 2009 -0600
4812     mpc85xx, mpc86xx: Fix gd->cpu pointer after relocation
4814     The gd->cpu pointer is set to an address located in flash when the
4815     probecpu() function is called while U-Boot is executing from flash.
4816     This pointer needs to be updated to point to an address in RAM after
4817     relocation has occurred otherwise Linux may not be able to boot due to
4818     "fdt board" crashing if flash has been erased or changed.
4820     This bug was introduced in commit
4821     a0e2066f392782730f0398095e583c87812d97f2.
4823     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4824     Reported-by: Ed Swarthout <Ed.Swarthout@freescale.com>
4825     Tested-by: Kumar Gala <galak@kernel.crashing.org>
4826     Tested on MPC8527DS.
4827     Tested by: Ed Swarthout <Ed.Swarthout@freescale.com>
4829 commit 1ab70f6fff9fa3b7910c11b874f625e004256c50
4830 Author: Ben Warren <biggerbadderben@gmail.com>
4831 Date:   Mon Dec 14 16:30:39 2009 -0800
4833     Net: Clean up LAN91C96 Support
4835     A previous Commit converted the LAN91C96 Ethernet driver to using the
4836     CONFIG_NET_MULTI API, but did not include full board support.  This patch
4837     finishes the job.
4839     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4841 commit 3363a34b9eeda9783afcbbed5cdd738926d1f4bf
4842 Author: Peter Tyser <ptyser@xes-inc.com>
4843 Date:   Sun Dec 13 17:58:34 2009 -0600
4845     MVBLUE: Remove CONFIG_CMD_IRQ
4847     Neither the MVBLUE nor its underlying architecture implement the
4848     do_irqinfo() function which is required when CONFIG_CMD_IRQ is defined.
4849     This change fixes the following MVBLUE compiler error:
4851     -> ./MAKEALL MVBLUE
4852     Configuring for MVBLUE board...
4853     common/libcommon.a(cmd_irq.o):(.u_boot_cmd+0x24): undefined reference to `do_irqinfo'
4854     make: *** [u-boot] Error 1
4856     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4857     Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
4859 commit 18e8ad60ee87431c01cc2686985b60cc54f5dd3b
4860 Author: Detlev Zundel <dzu@denx.de>
4861 Date:   Mon Dec 14 17:54:40 2009 +0100
4863     imx27lite: Reenable MTD support on NOR flash.
4865     The support for this was silently dropped by a configuration
4866     split during the merge of the imx27lite board support in commit
4867     864aa034f3a0e10ce710e8bbda171df3cab59414 (cmd_mtdparts: Move to common
4868     handling of FLASH devices via MTD layer).
4870     Signed-off-by: Detlev Zundel <dzu@denx.de>
4872 commit 076cd24cb4278c125c8f36df386852dc0fcfefae
4873 Author: Thomas Weber <weber@corscience.de>
4874 Date:   Wed Dec 9 09:38:04 2009 +0100
4876     net: dm9000x: fix debug output
4878     commit 60f61e6d7655400bb785a2ef637581679941f6d1 breaks compile with gcc by introducing __func__
4879     instead of constant string "func" in the macro call but missed to change the macro.
4881     Signed-off-by: Thomas Weber <weber@corscience.de>
4882     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4884 commit c179a2896e6a5138e30786f1d7961d880dbd6d31
4885 Author: John Ogness <john.ogness@linutronix.de>
4886 Date:   Fri Dec 11 09:47:28 2009 +0100
4888     fec_mxc: incomplete error handling
4890     fec_init() will only allocate fec->base_ptr if it is non-NULL. But
4891     the cleanup routine on error will free the pointer without setting
4892     it to NULL. This means that a later call to fec_init() would result
4893     in using an invalid pointer.
4895     Signed-off-by: John Ogness <john.ogness@linutronix.de>
4896     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4898 commit 2ab4a4d0952b754b1c74f4d2b12b83d600d449c8
4899 Author: Reinhard Arlt <reinhard.arlt@esd.eu>
4900 Date:   Fri Dec 4 09:52:17 2009 +0100
4902     net: e1000: Add support for the Intel 82546GB controller
4904     This chip is equipped for example on the esd PMC-ETH2-GB board. So let's
4905     add it to the list of supported chips to the e1000 driver.
4907     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd.eu>
4908     Signed-off-by: Stefan Roese <sr@denx.de>
4909     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4911 commit aafda38fb266b94ca344e5ff014d430790c72279
4912 Author: Remy Bohmer <linux@bohmer.net>
4913 Date:   Wed Oct 28 22:13:40 2009 +0100
4915     Add error codes/handling for TFTP-server
4917     Signed-off-by: Remy Bohmer <linux@bohmer.net>
4918     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4920 commit ac6b362a2598b8cd27beb071fa6224cf8b121e1b
4921 Author: Nishanth Menon <nm@ti.com>
4922 Date:   Fri Oct 16 00:06:37 2009 -0500
4924     LAN91C96: Enable NET_MULTI LAN driver
4926     This modification is NOT tested on any of the
4927     platforms modified as I dont have them. please
4928     help by testing+building+fixing
4930     Signed-off-by: Nishanth Menon <nm@ti.com>
4931     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4933 commit a1725999b8b7527971183122cdfb54e2f87f61ae
4934 Author: Nishanth Menon <nm@ti.com>
4935 Date:   Fri Oct 16 00:06:36 2009 -0500
4937     TI OMAP3: SDP3430 FIX NET_MULTI Warning
4939     Enable the NET MULTI option and remove build warning
4941     Tested: SDP3430
4943     Signed-off-by: Nishanth Menon <nm@ti.com>
4944     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4946 commit b7ad4109da342dfc787468fc713d88d0a8b9e67a
4947 Author: Nishanth Menon <nm@ti.com>
4948 Date:   Fri Oct 16 00:06:35 2009 -0500
4950     NET: LAN91C96 CONFIG_NET_MULTIify
4952     Make the lan91c96 driver capable of CONFIG_NET_MULTI
4953     to be clean for the new arch, add a a lil detect function
4954     Most of the formatting change was done to keep checkpatch
4955     silent, but a few functions and #if 0ed code which
4956     does not make sense for NET_MULTI have been removed
4958     Now, use the lan91c96_initialize() function to init the driver
4960     Signed-off-by: Nishanth Menon <nm@ti.com>
4961     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4963 commit 6ac59c5518e1d2e2ef1c4b8dee99267dfbdf9cdc
4964 Author: Mike Frysinger <vapier@gentoo.org>
4965 Date:   Tue Nov 3 11:35:42 2009 -0500
4967     net: pull CONFIG checks out of source and into makefile
4969     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4970     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4972 commit f4cfe42758192d09f8375e384cc000aa70d97029
4973 Author: Stefan Roese <sr@denx.de>
4974 Date:   Wed Dec 9 09:01:43 2009 +0100
4976     nand: Fix access to last block in NAND devices
4978     Currently, the last block of NAND devices can't be accessed. This patch
4979     fixes this issue by correcting the boundary checking (off-by-one error).
4981     Signed-off-by: Stefan Roese <sr@denx.de>
4982     Cc: Scott Wood <scottwood@freescale.com>
4983     Cc: Wolfgang Denk <wd@denx.de>
4985 commit 3b887ca8ce72cc12129183538f6e828db13f4867
4986 Author: Peter Korsgaard <jacmet@sunsite.dk>
4987 Date:   Tue Dec 8 22:20:34 2009 +0100
4989     mpc83xx: boot time regression, move LCRR setup back to cpu_init_f
4991     Commit c7190f02 (retain POR values of non-configured ACR, SPCR, SCCR,
4992     and LCRR bitfields) moved the LCRR assignment to after relocation
4993     to RAM because of the potential problem with changing the local bus
4994     clock while executing from flash.
4996     This change unfortunately adversely affects the boot time, as running
4997     all code up to cpu_init_r can cause significant slowdown.
4999     E.G. on a 8347 board a bootup time increase of ~600ms has been observed:
5001        0.020 CPU:   e300c1, MPC8347_PBGA_EA, Rev: 3.0 at 400 MHz, CSB: 266.667 MHz
5002        0.168 RS:    232
5003        0.172 I2C:   ready
5004        0.176 DRAM:  64 MB
5005        1.236 FLASH: 32 MB
5007     Versus:
5009        0.016 CPU:   e300c1, MPC8347_PBGA_EA, Rev: 3.0 at 400 MHz, CSB: 266.667 MHz
5010        0.092 RS:    232
5011        0.092 I2C:   ready
5012        0.096 DRAM:  64 MB
5013        0.644 FLASH: 32 MB
5015     So far no boards have needed the late LCRR setup, so simply revert it
5016     for now - If it is needed at a later time, those boards can either do
5017     their own final LCRR setup in board code (E.G. in board_early_init_r),
5018     or we can introduce a CONFIG_SYS_LCRR_LATE config option to only do
5019     the setup in cpu_init_r.
5021     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
5022     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5024 commit 4b142febff71eabdb7ddbb125c7b583b24ddc434
5025 Author: Heiko Schocher <hs@denx.de>
5026 Date:   Thu Dec 3 11:21:21 2009 +0100
5028     common: delete CONFIG_SYS_64BIT_VSPRINTF and CONFIG_SYS_64BIT_STRTOUL
5030     There is more and more usage of printing 64bit values,
5031     so enable this feature generally, and delete the
5032     CONFIG_SYS_64BIT_VSPRINTF and CONFIG_SYS_64BIT_STRTOUL
5033     defines.
5035     Signed-off-by: Heiko Schocher <hs@denx.de>
5037 commit 00b6d927ba8900cdf218b90b277e1090e284bea6
5038 Author: Heiko Schocher <hs@denx.de>
5039 Date:   Thu Dec 3 11:20:06 2009 +0100
5041     5xxx, fdt: move fdt_fixup_memory() to cpu.c file
5043     u-boot updates, before starting Linux, the memory node in the
5044     DTS. As this is a "standard" feature, move this functionality
5045     to the cpu.c file for mpc5xxx and mpc512x processors.
5047     Signed-off-by: Heiko Schocher <hs@denx.de>
5049 commit 386118a896554b13f14ad0f82356276988f7de82
5050 Author: Michal Simek <monstr@monstr.eu>
5051 Date:   Tue Dec 8 09:12:49 2009 +0100
5053     microblaze: Correct ffs regression for Microblaze
5055     We are using generic implementation of ffs. This should
5056     be part of Simon's commit 0413cfecea350000eab5e591a0965c3e3ee0ff00
5058     Here is warning message which this patch removes.
5060     In file included from /tmp/u-boot-microblaze/include/common.h:38,
5061                      from cmd_mtdparts.c:87:
5062     /tmp/u-boot-microblaze/include/linux/bitops.h:123:1: warning: "ffs" redefined
5063     In file included from /tmp/u-boot-microblaze/include/linux/bitops.h:110,
5064                      from /tmp/u-boot-microblaze/include/common.h:38,
5065                      from cmd_mtdparts.c:87:
5066     /tmp/u-boot-microblaze/include/asm/bitops.h:269:1:
5067     warning: this is the location of the previous definition
5069     Signed-off-by: Michal Simek <monstr@monstr.eu>
5071 commit 8fe7b29f9811322931f0192a56431edcf819d6b9
5072 Author: Graeme Smecher <graeme.smecher@mail.mcgill.ca>
5073 Date:   Mon Dec 7 08:09:57 2009 -0800
5075     microblaze: Stop stack clobbering in microblaze-generic.
5077     A typo caused the stack and malloc regions to overlap, which prevented
5078     mem_malloc_init() from returning. This commit makes the memory layout match
5079     the example described in include/configs/microblaze-generic.h
5081     Signed-off-by: Graeme Smecher <graeme.smecher@mail.mcgill.ca>
5082     Signed-off-by: Michal Simek <monstr@monstr.eu>
5084 commit 0fc52948bda0734431cb528ee4fd82f1dec8c7b5
5085 Author: Wolfgang Denk <wd@denx.de>
5086 Date:   Mon Dec 7 23:14:13 2009 +0100
5088     Update CHANGELOG, prepare -rc2
5090     Signed-off-by: Wolfgang Denk <wd@denx.de>
5092 commit f2352877cb2daac88115192fb09991a2397d0b27
5093 Author: Peter Tyser <ptyser@xes-inc.com>
5094 Date:   Sun Dec 6 23:58:28 2009 -0600
5096     MAKEALL: Fix return value
5098     Previously MAKEALL would always return a value of 0, even if 1 or more
5099     boards did not compile.  This change causes MAKEALL to return 0 if all
5100     boards were able to build, otherwise 1.
5102     This change also requires changing the script interpreter from sh to
5103     bash to support bash's PIPESTATUS variable.
5105     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5107 commit fbc1c8f6f6c972524197829c56dd8f2f5da0200a
5108 Author: Peter Tyser <ptyser@xes-inc.com>
5109 Date:   Sun Dec 6 01:33:24 2009 -0600
5111     tools/mkimage: Remove duplicate line of code
5113     Recent commits 1a99de2cb4d08eb3bf9fb3f60a9d533150de8c0e and
5114     6a590c5f5fd12cdd27f3153522acfac3854590e7 both fixed the same bug in the
5115     same manner.  Unfortunately git was "smart" enough to merge both changes
5116     which resulted in some duplicate code.
5118     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5120     Reordered code and comment a bit.
5122     Signed-off-by: Wolfgang Denk <wd@denx.de>
5124 commit df002fa6b9cd475909ede35bf95b803c2289c6a4
5125 Author: Heiko Schocher <hs@denx.de>
5126 Date:   Sat Dec 5 11:59:51 2009 +0100
5128     i2c: fix dangling comment in do_i2c_mw()
5130     commit bd3784df94bfeca43fbf34094df9cb1bd3ecca3b deleted some unused
5131     code in do_i2c_mw(), but missed to also remove the respective
5132     commment. This patch fixes this.
5134     Signed-off-by: Heiko Schocher <hs@denx.de>
5136 commit 7cb5fc15f22de46cc6fabc26baf994cf8f7fa546
5137 Author: Heiko Schocher <hs@denx.de>
5138 Date:   Thu Dec 3 11:20:42 2009 +0100
5140     mpc52xx, manroland: add some commands
5142     add the following commands for the manroland boards:
5144     CONFIG_CMDLINE_EDITING
5145     CONFIG_COMMAND_HISTORY
5146     CONFIG_AUTO_COMPLETE
5148     Signed-off-by: Heiko Schocher <hs@denx.de>
5150 commit 39ff7d5f4cc547a2034a8bfc2a5b5f4b62fd5c20
5151 Author: Stefan Roese <sr@denx.de>
5152 Date:   Thu Dec 3 06:24:30 2009 +0100
5154     POST: Remove duplicated post_hotkey_pressed() functions
5156     This patch introduces a weak default function for post_hotkey_pressed(),
5157     returning 0, for boards without hotkey support. The long-running tests
5158     won't be started on those boards. This default function was implemented
5159     in many board directories. By implementing this weak default we can
5160     remove all those duplicate versions.
5162     Boards with hotkey support, can override this weak default function
5163     by defining one in their board specific code.
5165     Signed-off-by: Stefan Roese <sr@denx.de>
5167 commit f8450829f921cf10667af98a8d08edfa3d998f04
5168 Author: Heiko Schocher <hs@denx.de>
5169 Date:   Tue Dec 1 19:30:47 2009 +0100
5171     52xx, manroland: add fdt_fixup_memory() in ft_board_setup()
5173     To update the real memory size in the memory node on the
5174     uc101 and mucmc52 boards call fdt_fixup_memory() in
5175     ft_board_setup().
5177     Signed-off-by: Heiko Schocher <hs@denx.de>
5179 commit 0ec81db20294efdad2454a753e79f1fe244a43ca
5180 Author: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
5181 Date:   Tue Dec 1 14:05:55 2009 +0100
5183     Fix computation in nand_util.c:get_len_incl_bad
5185     Depending on offset, flash size and the number of bad blocks,
5186     get_len_incl_bad may return a too small value which may lead to:
5188     1) If there are no bad blocks, nand_{read,write}_skip_bad chooses the
5189     bad block aware read/write code. This may hurt performance, but does
5190     not have any adverse effects.
5192     2) If there are bad blocks, the nand_{read,write}_skip_bad may choose
5193     the bad block unaware read/write code (if len_incl_bad == *length)
5194     which leads to corrupted data.
5196     Signed-off-by: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
5198 commit aabb8cb0818e285aeed0cfaf243635997e07554d
5199 Author: Evan Samanas <esamanas@xes-inc.com>
5200 Date:   Mon Nov 9 20:08:36 2009 -0600
5202     nfs: NfsTimeout() updates
5204     - NfsTimeout() does not correctly update the NFS timeout value which
5205       results in NfsTimeout() only being called once in certain situations.
5206       This can result in the 'nfs' command hanging indefinetly.  For
5207       example, the command:
5209         nfs 192.168.0.1:/home/user/file
5211       will not exit until ctrl-c is pressed if 192.168.0.1 does not have an
5212       NFS server running.
5214       This issue is resolved by reinitializting the NFS timeout value inside
5215       NfsTimeout() when a timeout occurs.
5217     - Make the 'nfs' command print the 'T' character when a timeout occurs.
5218       Previously there was no indication that timeouts were occuring.
5220     - Mimic the 'tftpboot' command and when a download fails print "Retry
5221       count exceeded; starting again", and restart the download taking the
5222       'netretry' environment variable into account.
5224     Signed-off-by: Evan Samanas <esamanas@xes-inc.com>
5225     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5227     Tested on TQM8xxL.
5229     Tested by: Wolfgang Denk <wd@denx.de>
5231     Tested on MPC8527DS.
5233     Tested by: Ed Swarthout <Ed.Swarthout@freescale.com>
5235 commit 224c90d1060bf1a83cbf33ca51d060b9d19e0294
5236 Author: Peter Tyser <ptyser@xes-inc.com>
5237 Date:   Wed Nov 18 19:08:59 2009 -0600
5239     bootm: Fix help message's sub-command ordering
5241     The help message for the 'bootm' command listed the 'cmdline' and 'bdt'
5242     sub-commands in the wrong order which resulted in the error below when
5243     following the 'help' command's instructions:
5245       "Trying to execute a command out of order"
5247     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5249 commit a93c92cddaedd5f0720e0da15c6664f7a688b582
5250 Author: Robert P. J. Day <rpjday@crashcourse.ca>
5251 Date:   Tue Nov 17 07:30:23 2009 -0500
5253     help: Correct syntax of nandecc help output.
5255     "nandecc" help output should not reproduce the command name, nor have
5256     a trailing newline.
5258     Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
5260 commit c2fff331a32ceca837d76eb7827d6340da270d52
5261 Author: Mike Rapoport <mike@compulab.co.il>
5262 Date:   Wed Nov 11 10:03:03 2009 +0200
5264     smc911x: update SMC911X related configuration description
5266     Since commit 736fead8fdbf8a8407048bebc373cd551d01ec98 "Convert SMC911X
5267     Ethernet driver to CONFIG_NET_MULTI API" SMC911X configration options
5268     are called CONFIG_SMC911X rather than CONFIG_DRIVER_SMC911X. Update
5269     README to reflect that change.
5271     Signed-off-by: Mike Rapoport <mike@compulab.co.il>
5273 commit 45b6b65c6bf06a589ef3123192af94b0381db27b
5274 Author: Mike Rapoport <mike@compulab.co.il>
5275 Date:   Wed Nov 11 10:03:09 2009 +0200
5277     smc911x: fix typo in smc911x_handle_mac_address name
5279     Signed-off-by: Mike Rapoport <mike@compulab.co.il>
5281 commit f64ef9bb995687e24e0b61b52316f4eaa97c3bbc
5282 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
5283 Date:   Thu Nov 19 02:47:28 2009 -0600
5285     fix nfs symlink name corruption
5287     An off by one error may cause nfs readlink lookup fail if
5288     nfs_path_buff has non-zero data from a previous use.
5290     Loading: *** ERROR: File lookup fail
5292     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
5294 commit e8fac25e83426fdf461c66aa8a2530ec28ec536e
5295 Author: Wolfgang Denk <wd@denx.de>
5296 Date:   Mon Dec 7 21:06:40 2009 +0100
5298     at91sam9261ek.c: fix minor coding style issue.
5300     Signed-off-by: Wolfgang Denk <wd@denx.de>
5302 commit 4713010adf5beda87410d637ebfc58db0db9a9db
5303 Author: Wolfgang Denk <wd@denx.de>
5304 Date:   Sun Dec 6 01:21:28 2009 +0100
5306     trab: fix warning: implicit declaration of function 'disable_vfd'
5308     Signed-off-by: Wolfgang Denk <wd@denx.de>
5310 commit a9f99ab44b473fb394169ba365f8b4380f981584
5311 Author: Wolfgang Denk <wd@denx.de>
5312 Date:   Sun Dec 6 00:53:18 2009 +0100
5314     zlib.c: avoid build conflicts for cradle board
5316     Commit dce3d79710 updated the zlib code to v0.95; this caused
5317     conflicts when building for the "cradle" board, because the (pretty
5318     generic) preprocessor variable "OFF" was used in multiple files.
5319     Make sure to avoid further conflicts by #undef'ing it in zlib.c
5320     before redefining it.
5322     Signed-off-by: Wolfgang Denk <wd@denx.de>
5323     cc: Giuseppe Condorelli <giuseppe.condorelli@st.com>
5324     cc: Angelo Castello <angelo.castello@st.com>
5325     cc: Alessandro Rubini <rubini-list@gnudd.com>
5327 commit 8cbf4e4f17121d732e78764f0ba317c9a1838ea6
5328 Author: Wolfgang Denk <wd@denx.de>
5329 Date:   Sun Dec 6 00:26:19 2009 +0100
5331     Fix out-of-tree building of "apollon" board.
5333     Signed-off-by: Wolfgang Denk <wd@denx.de>
5335 commit f68ab43de67f59925542efb6bcec30f4a84fe695
5336 Author: Mike Frysinger <vapier@gentoo.org>
5337 Date:   Fri Dec 4 05:35:15 2009 -0500
5339     lzma: ignore unset filesizes
5341     The Linux kernel build system changed how it compresses things with LZMA
5342     such that the header no longer contains the filesize (it is instead set to
5343     all F's).  So if we get a LZMA image that has -1 for the 64bit field,
5344     let's just assume that the decompressed size is unknown and continue on.
5346     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5348 commit cccfc2ab77877dbdd2abe26b28d4c1f467feb0c0
5349 Author: Detlev Zundel <dzu@denx.de>
5350 Date:   Tue Dec 1 17:16:19 2009 +0100
5352     README: Rearrange paragraphs to regain linear arrangement.
5354     Two later additions to the Configuration Option section unfortunately
5355     split the description of Show boot progress and the list of its call outs.
5357     Signed-off-by: Detlev Zundel <dzu@denx.de>
5359 commit cd514aeb996e2f7aefbe1f78481965d9d074aed4
5360 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
5361 Date:   Thu Nov 19 13:22:44 2009 +0100
5363     zlib: Optimize decompression
5365     This patch optimizes the direct copy procedure.
5366     Uses get_unaligned() but only in one place.
5367     The copy loop just above this one can also use this
5368     optimization, but I havn't done so as I have not tested if it
5369     is a win there too.
5370     On my MPC8321 this is about 17% faster on my JFFS2 root FS
5371     than the original. No speed test has been performed in u-boot.
5373     Size increase on ppc: 484 bytes
5375     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
5376     Acked-by: Peter Korsgaard <jacmet@sunsite.dk>
5378 commit 20dde48bcadd856c86a91d5463831a10be46db83
5379 Author: Peter Korsgaard <jacmet@sunsite.dk>
5380 Date:   Thu Nov 19 11:37:51 2009 +0100
5382     add lzop decompression support
5384     Add lzop decompression support to the existing lzo bitstream handling
5385     (think gzip versus zlib), and support it for uImage decompression if
5386     CONFIG_LZO is enabled.
5388     Lzop doesn't compress as good as gzip (~10% worse), but decompression
5389     is very fast (~0.7s faster here on a slow ppc). The lzop decompression
5390     code is based on Albin Tonnerre's recent ARM Linux lzo support patch.
5392     Cc: albin.tonnerre@free-electrons.com
5393     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
5395 commit c81296c16fd9d12422c9968cc0f1d9bf440a7d88
5396 Author: Peter Tyser <ptyser@xes-inc.com>
5397 Date:   Tue Nov 24 16:42:10 2009 -0600
5399     tools/mkimage: Print FIT image contents after creation
5401     Previously, there was no indication to the user that a FIT image was
5402     successfully created after executing mkimage.  For example:
5404       $ mkimage -f uImage.its uImage.itb
5405       DTC: dts->dtb  on file "uImage.its"
5407     Adding some additional output after creating a FIT image lets the user
5408     know exactly what is contained in their image, eg:
5410       $ mkimage -f uImage.its uImage.itb
5411       DTC: dts->dtb  on file "uImage.its"
5412       FIT description: Linux kernel 2.6.32-rc7-00201-g7550d6f-dirty
5413       Created:         Tue Nov 24 15:43:01 2009
5414        Image 0 (kernel@1)
5415         Description:  Linux Kernel 2.6.32-rc7-00201-g7550d6f-dirty
5416         Type:         Kernel Image
5417         Compression:  gzip compressed
5418         Data Size:    2707311 Bytes = 2643.86 kB = 2.58 MB
5419         Architecture: PowerPC
5420         OS:           Linux
5421         Load Address: 0x00000000
5422         Entry Point:  0x00000000
5423         Hash algo:    crc32
5424         Hash value:   efe0798b
5425         Hash algo:    sha1
5426         Hash value:   ecafba8c95684f2c8fec67e33c41ec88df1534d7
5427        Image 1 (fdt@1)
5428         Description:  Flattened Device Tree blob
5429         Type:         Flat Device Tree
5430         Compression:  uncompressed
5431         Data Size:    12288 Bytes = 12.00 kB = 0.01 MB
5432         Architecture: PowerPC
5433         Hash algo:    crc32
5434         Hash value:   a5cab676
5435         Hash algo:    sha1
5436         Hash value:   168722b13e305283cfd6603dfe8248cc329adea6
5437        Default Configuration: 'config@1'
5438        Configuration 0 (config@1)
5439         Description:  Default Linux kernel
5440         Kernel:       kernel@1
5441         FDT:          fdt@1
5443     This brings the behavior of creating a FIT image in line with creating a
5444     standard uImage, which also prints out the uImage contents after
5445     creation.
5447     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5449 commit 8e1c89663cc8796b85588910046e03b388a7597c
5450 Author: Peter Tyser <ptyser@xes-inc.com>
5451 Date:   Tue Nov 24 16:42:09 2009 -0600
5453     tools/fit_image.c: Remove unused fit_set_header()
5455     The FIT fit_set_header() function was copied from the standard uImage's
5456     image_set_header() function during mkimage reorganization.  However, the
5457     fit_set_header() function is not used since FIT images use a standard
5458     device tree blob header.
5460     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5462 commit 1a99de2cb4d08eb3bf9fb3f60a9d533150de8c0e
5463 Author: Peter Tyser <ptyser@xes-inc.com>
5464 Date:   Tue Nov 24 16:42:08 2009 -0600
5466     tools/mkimage: Assume FDT image type for FIT images
5468     When building a Flattened Image Tree (FIT) the image type needs to be
5469     "flat_dt".  Commit 89a4d6b12fd6394898b8a454cbabeaf1cd59bae5 introduced a
5470     regression which caused the user to need to specify the "-T flat_dt"
5471     parameter on the command line when building a FIT image.  The "-T
5472     flat_dt" parameter should not be needed and is at odds with the current
5473     FIT image documentation.
5475     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5477 commit 3eb90bad651fab39cffba750ec4421a9c01d60e7
5478 Author: Ingo van Lil <inguin@gmx.de>
5479 Date:   Tue Nov 24 14:09:21 2009 +0100
5481     Generic udelay() with watchdog support
5483     According to the PPC reference implementation the udelay() function is
5484     responsible for resetting the watchdog timer as frequently as needed.
5485     Most other architectures do not meet that requirement, so long-running
5486     operations might result in a watchdog reset.
5488     This patch adds a generic udelay() function which takes care of
5489     resetting the watchdog before calling an architecture-specific
5490     __udelay().
5492     Signed-off-by: Ingo van Lil <inguin@gmx.de>
5494 commit 1c409bc7101a24ecd47a13a4e851845d66dc23ce
5495 Author: Graeme Russ <graeme.russ@gmail.com>
5496 Date:   Tue Nov 24 20:04:21 2009 +1100
5498     i386: Final Relocation
5500     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5502 commit cabe5794803fbe18bedac2d9c7f2417a0fa95ec1
5503 Author: Graeme Russ <graeme.russ@gmail.com>
5504 Date:   Tue Nov 24 20:04:20 2009 +1100
5506     i386: Move references to link script exports
5508     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5510 commit 0fc1b49ecbd7ec7371f9ede0600e4fd28cec7f33
5511 Author: Graeme Russ <graeme.russ@gmail.com>
5512 Date:   Tue Nov 24 20:04:19 2009 +1100
5514     i386: Remove inline asm symbols from .dynsym
5516     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5518 commit 564a9984bdbf86a02cf4f0d848933a9fff4a1d18
5519 Author: Graeme Russ <graeme.russ@gmail.com>
5520 Date:   Tue Nov 24 20:04:18 2009 +1100
5522     i386: Rearrange Interupt Handling
5524     In preperation for full relocation
5526     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5528 commit 27f13075a659da046372dfe249d808f2f6ddb432
5529 Author: Graeme Russ <graeme.russ@gmail.com>
5530 Date:   Tue Nov 24 20:04:17 2009 +1100
5532     i386: Fix race condition when using SC520 timers
5534     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5536 commit 141a62cc12bfbab49f0f44a394518a360dcddad8
5537 Author: Graeme Russ <graeme.russ@gmail.com>
5538 Date:   Tue Nov 24 20:04:16 2009 +1100
5540     i386: Fix global label in inline asm compile error
5542     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5544 commit 4ee4e413baa8e951e3c42c17a808578867a63572
5545 Author: Graeme Russ <graeme.russ@gmail.com>
5546 Date:   Tue Nov 24 20:04:15 2009 +1100
5548     i386: Reorder source objects in lib_i386 Makefile
5550     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5552 commit aea14421c52f31e39837aa2890e07e9c70ee61fd
5553 Author: Graeme Russ <graeme.russ@gmail.com>
5554 Date:   Tue Nov 24 20:04:14 2009 +1100
5556     i386: Fix link collisions resulting from gcc4.4.1 upgrade
5558     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5560 commit b4feeb4e8a1d9124bae39985a97b99d08e06186d
5561 Author: Graeme Russ <graeme.russ@gmail.com>
5562 Date:   Tue Nov 24 20:04:13 2009 +1100
5564     i386: Fix malloc initialization
5566     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5568 commit c74bfce0fb20ec4d01809fa0566263894923467b
5569 Author: Graeme Russ <graeme.russ@gmail.com>
5570 Date:   Tue Nov 24 20:04:12 2009 +1100
5572     i386: Fix dlmalloc compile warning
5574     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5576 commit 270737acca21f3939f814de5dcf350a1c3d80d83
5577 Author: Michael Brandt <Michael.Brandt@emsyso.de>
5578 Date:   Sun Nov 22 14:13:27 2009 +0100
5580     EXT2FS: fix inode size for ext2fs rev#0
5582     extfs.c assumes that there is always a valid inode_size field in the
5583     superblock. But this is not true for ext2fs rev 0. Such ext2fs images
5584     are for instance generated by genext2fs. Symptoms on ARM machines are
5585     messages like: "raise: Signal # 8 caught"; on PowerPC "ext2ls" will
5586     print nothing.
5587     This fix checks for rev 0 and uses then 128 bytes as inode size.
5589     Signed-off-by: Michael Brandt <Michael.Brandt@emsyso.de>
5590     Tested on: TQM5200S
5591     Tested-by: Wolfgang Denk <wd@denx.de>
5592     Signed-off-by: Wolfgang Denk <wd@denx.de>
5594 commit bcb324d68f7955c1136dafc944eb55db8ebaa601
5595 Author: Robert P. J. Day <rpjday@crashcourse.ca>
5596 Date:   Thu Nov 19 11:00:28 2009 -0500
5598     Remove superfluous preprocessor tests from some cmd_*.c files.
5600     A small number of common/cmd_*.c files contain preprocessor tests that
5601     are apparently superfluous since those same tests are used in the
5602     Makefile to control the compilation of those files.  Those tests are
5603     clearly redundant as long as they surround the entirety of the source
5604     in those files.
5606     Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
5608 commit 3ee8c12071f0e3bdda25125b63c9d3fd54a7c9d8
5609 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
5610 Date:   Thu Nov 19 13:44:16 2009 +0100
5612     crc32: Impl. linux optimized crc32()
5614     Ported over the more efficient linux crc32() function.
5615     A quick comparsion on ppc:
5616     After changing the old crc32 to do 4 bytes in the
5617     inner loop to be able to compare with new version one can note:
5618     - old inner loop has 61 insn, new has 19 insn.
5619     - new crc32 does one 32 bit load of data to crc while
5620       the old does four 8 bits loads.
5621     - size is bit bigger for the new crc32:
5622       1392(old) 1416(new) of text. The is because the new version
5623       shares code with crc32_no_comp() instead of duplicating code.
5624     - about 33% faster on ppc:
5625       New > crc 0 0xfffffff -> 39 secs
5626       Old > crc 0 0xfffffff -> 60 secs
5628     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
5630 commit ad53226156fa64b6d04c0d1d6e91e09979cbea15
5631 Author: Robert P. J. Day <rpjday@crashcourse.ca>
5632 Date:   Tue Nov 17 01:59:29 2009 -0500
5634     README: Update the list of directories.
5636     Bring the directory listing more into line with current content.
5638     Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
5640 commit bd3784df94bfeca43fbf34094df9cb1bd3ecca3b
5641 Author: Pratap Chandu <pratap.rrke@gmail.com>
5642 Date:   Thu Nov 12 19:28:25 2009 +0530
5644     Removes dead code in the file common/cmd_i2c.c
5646     There is some dead code enclosed by #if 0 .... #endif in the file
5647     common/cmd_i2c.c
5648     This patch removes the dead code.
5650     Signed-off-by: Pratap Chandu <pratap.rrke@gmail.com>
5652 commit 64a480601a5614b441de692ae15a62c51e0bb381
5653 Author: Mike Frysinger <vapier@gentoo.org>
5654 Date:   Wed Nov 11 17:51:56 2009 -0500
5656     smc91111_eeprom: drop CONFIG stub protection
5658     Since the Makefile now controls the compilation of this, there is no need
5659     for CONFIG checking nor the stub function.
5661     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5663 commit f3a7bddc06c927c36a1a99a97131299479ef207a
5664 Author: Magnus Lilja <lilja.magnus@gmail.com>
5665 Date:   Wed Nov 11 19:56:58 2009 +0100
5667     RTC: Fix return code in MC13783 RTC driver.
5669     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
5671 commit d52e3e0176a74c30549251e16c5c00a363c544d2
5672 Author: Magnus Lilja <lilja.magnus@gmail.com>
5673 Date:   Wed Nov 11 19:56:36 2009 +0100
5675     cmd_date: Fix spelling in error message.
5677     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
5679 commit c253122395753abb9e531d8906c5265dc8803fb1
5680 Author: Peter Tyser <ptyser@xes-inc.com>
5681 Date:   Wed Nov 11 10:36:28 2009 -0600
5683     Move do_irqinfo() to common/cmd_irq.c
5685     cmd_irq.c is a much better home and it is already conditionally
5686     compiled based on CONFIG_CMD_IRQ.
5688     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5690 commit a5dd4dc64fe68e549c5ffcf6a048281b5ba94752
5691 Author: Peter Tyser <ptyser@xes-inc.com>
5692 Date:   Wed Nov 11 10:36:19 2009 -0600
5694     cmd_license: Remove unneeded #ifdef CONFIG_CMD_LICENSE
5696     cmd_license is already conditionally compiled at the Makefile-level.
5698     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5700 commit 06015146a15adc7455440c491d543f6a8091551d
5701 Author: Peter Tyser <ptyser@xes-inc.com>
5702 Date:   Mon Nov 9 15:18:52 2009 -0600
5704     m41t11: Remove unused functions
5706     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5708 commit 9ef78511cda39987e5fc10febf386fd19f58ecf7
5709 Author: Peter Tyser <ptyser@xes-inc.com>
5710 Date:   Mon Nov 9 15:17:50 2009 -0600
5712     circbuf: Move to lib_generic and conditionally compile
5714     circbuf could be used as a generic library and is only currently
5715     needed when CONFIG_USB_TTY is defined.
5717     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5719 commit 604f7ce55ad74694ef8743ad2e99933dc0265e46
5720 Author: Sanjeev Premi <premi@ti.com>
5721 Date:   Mon Nov 9 22:43:00 2009 +0530
5723     Fix build failure in examples/standalone
5725     Some versions of 'make' do not handle trailing white-spaces
5726     properly. Trailing spaces in ELF causes a 'fake' source to
5727     be added to the variable COBJS; leading to build failure
5728     (listed below). The problem was found with GNU Make 3.80.
5730     Using text-function 'strip' as a workaround for the problem.
5732     make[1]: Entering directory `/home/sanjeev/u-boot/examples/standalone'
5733     arm-none-linux-gnueabi-gcc -g  -Os   -fno-common -ffixed-r8 -msoft-float
5734     -D__KERNEL__ -DTEXT_BASE=0x80e80000 -I/home/sanjeev/u-boot/include
5735     -fno-builtin -ffreestanding -nostdinc -isystem /opt/codesourcery/2009q1-
5736     203/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -pipe  -DCONFIG_
5737     ARM -D__ARM__ -marm  -mabi=aapcs-linux -mno-thumb-interwork -march=armv5
5738     -Wall -Wstrict-prototypes -fno-stack-protector -g  -Os   -fno-common -ff
5739     ixed-r8 -msoft-float   -D__KERNEL__ -DTEXT_BASE=0x80e80000 -I/home/sanje
5740     ev/u-boot/include -fno-builtin -ffreestanding -nostdinc -isystem /opt/co
5741     desourcery/2009q1-203/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/includ
5742     e -pipe  -DCONFIG_ARM -D__ARM__ -marm  -mabi=aapcs-linux -mno-thumb-inte
5743     rwork -march=armv5 -I.. -Bstatic -T u-boot.lds  -Ttext 0x80e80000 -o .c
5744     arm-none-linux-gnueabi-gcc: no input files
5745     make[1]: *** [.c] Error 1
5746     make[1]: Leaving directory `/home/sanjeev/u-boot/examples/standalone'
5747     make: *** [examples/standalone] Error 2
5748     premi #
5750     Signed-off-by: Sanjeev Premi <premi@ti.com>
5752     Fixed typo (s/ElF/ELF/).
5753     Signed-off-by: Wolfgang Denk <wd@denx.de>
5755 commit d984fed068b3bec8a7edaf7a3de71479abde080a
5756 Author: Scott Wood <scottwood@freescale.com>
5757 Date:   Wed Nov 4 18:41:41 2009 -0600
5759     makefiles: fixes for building build tools
5761     Currently, some of the tools instead set CC to be HOSTCC in order to re-use
5762     some pattern rules -- but this fails when the user overrides CC on the make
5763     command line.  Also, the HOSTCFLAGS in tools/Makefile are currently not
5764     being used because config.mk overwrites them.
5766     This patch adds static pattern rules for files that have been requested to
5767     be built with the native compiler using $(HOSTSRCS) and $(HOSTOBJS), and
5768     converts the tools to use them.
5770     It restores easylogo to using the host compiler, which was broken by commit
5771     38d299c2db81bd889c601b5dfc12c4e83ef83333 (if this was an intentional change,
5772     please let me know -- but it seems to be a build tool).
5774     It restores -pedantic and the special flags for darwin and cygwin that were
5775     requested in tools/makefile (but keeps the flags added by config.mk) --
5776     hopefully someone can test this on those platforms.  It no longer
5777     conditionalizes -pedantic on not being darwin; it wasn't clear that that was
5778     intentional, and unless there's a real problem it's just inviting people to
5779     contribute non-pedantic patches to those files (I'm not a fan of -pedantic
5780     personally, but if it's on for one platform it should be on for all).
5782     HOST_LDFLAGS is renamed HOSTLDFLAGS for consistency with the previous
5783     HOST_CFLAGS to HOSTCFLAGS rename.  A new HOSTCFLAGS_NOPED is made available
5784     for those files which currently cannot be built with -pedantic, and replaces
5785     the old FIT_CFLAGS.
5787     imls now uses the cross compiler properly, rather than by trying to
5788     reconstruct CC using the typoed $(CROSS_COMPILER).
5790     envcrc.c is now dependency-processed unconditionally -- previously it would
5791     be built without being on (HOST)SRCS if CONFIG_ENV_IS_EMBEDDED was not
5792     selected.
5794     Signed-off-by: Scott Wood <scottwood@freescale.com>
5796 commit af860962b544ddf323c4ff68454f00d31e44df0a
5797 Author: Becky Bruce <beckyb@kernel.crashing.org>
5798 Date:   Wed Nov 4 18:30:08 2009 -0600
5800     85xx: Remove unused CONFIG_ASSUME_AMD_FLASH from config files
5802     A bunch of the 85xx boards have this cruft in them - it's not used
5803     anywhere.  Delete it.
5805     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
5807 commit bf44f3f327acddba202ff67f70192926ea47dfd1
5808 Author: Mike Frysinger <vapier@gentoo.org>
5809 Date:   Wed Nov 4 16:34:42 2009 -0500
5811     exports: rewrite jump table init
5813     The current jump table init fails to initialize a bunch of exported
5814     symbols (forceenv/do_reset/etc...).  Rather than fix just these few
5815     missing pieces, rewrite the code to utilize the existing list of
5816     exported symbols -- _exports.h.  Since every exported symbol has to
5817     be listed in this header, it makes sense to use it so that we only
5818     ever have one list that needs to be updated and things can't fall
5819     out of sync again.
5821     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5823 commit deec1fbd4f704dded2e668bb9e368631981ea139
5824 Author: Wolfgang Denk <wd@denx.de>
5825 Date:   Wed Dec 2 22:26:30 2009 +0100
5827     MAINTAINERS: update responsible for MPC85xx/86xx
5829     Signed-off-by: Wolfgang Denk <wd@denx.de>
5830     Cc: Kumar Gala <galak@kernel.crashing.org>
5831     Cc: Becky Bruce <beckyb@kernel.crashing.org>
5833 commit 71636fa7c3de63de29c0f514d5c725eccb011657
5834 Author: Tom Rix <Tom.Rix@windriver.com>
5835 Date:   Sun Nov 29 17:56:36 2009 -0600
5837     ARM Update mach-types
5839     Fetched from http://www.arm.linux.org.uk/developer/machines/download.php
5840     And built with
5842     repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm
5843     commit 3fcca9ac6cbce35b3e81e247d375534117d5f4cd
5845     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
5847 commit 7c15121f4007751af8c45c978c4ad7d6c5ff11f9
5848 Author: Vaibhav Hiremath <hvaibhav@ti.com>
5849 Date:   Mon Nov 23 16:36:05 2009 +0530
5851     omap3_mmc: Encapsulate twl4030 under option CONFIG_TWL4030_POWER
5853     Fixes the build/compilation error if we try to re-use the omap3_mmc code
5854     without TWL4030_POWER.
5856     Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
5858 commit 6406d6daea51bbeed21f3829b37d3f395c198e54
5859 Author: Sandeep Paulraj <s-paulraj@ti.com>
5860 Date:   Sat Nov 21 13:13:59 2009 -0500
5862     TI DaVinci: Adding a README for the DaVinci series of SOC's
5864     Adding an initial README for the DaVinci series of SOC's
5866     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
5868 commit 990f569c4fa6b9e76b31d0a5229981c092b02dcf
5869 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj at>
5870 Date:   Sat Jun 6 10:30:58 2009 +0000
5872     avr32/hsdramc: Move conditional compilation to Makefile
5874     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj <at> jcrosoft.com>
5875     Cc: Haavard Skinnemoen <haavard.skinnemoen <at> atmel.com>
5877 commit 3f12f5217e8bdf8f6842bf1b8c5c5b98425ac3db
5878 Author: Sandeep Paulraj <s-paulraj@ti.com>
5879 Date:   Sat Nov 21 13:24:17 2009 -0500
5881     NAND: Add config option for imx27lite
5883     We will get compilation warnings without
5884     "CONFIG_SYS_64BIT_VSPRINTF" being defined
5885     in the board config.
5887     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
5889 commit 43a5f0df2f2e3a2b5eab05d6742501c98d3c0d0c
5890 Author: Po-Yu Chuang <ratbert.chuang@gmail.com>
5891 Date:   Wed Nov 11 17:27:30 2009 +0800
5893     arm: A320: Add support for Faraday A320 evaluation board
5895     This patch adds support for A320 evaluation board from Faraday. This board
5896     uses FA526 processor by default and has 512kB and 32MB NOR flash, 64M RAM.
5897     FA526 is an ARMv4 processor and uses the ARM920T source in this patch.
5899     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
5901 commit 39ba774f9b02c44b8fd4df44afac932800c18662
5902 Author: Po-Yu Chuang <ratbert.chuang@gmail.com>
5903 Date:   Wed Nov 11 17:26:00 2009 +0800
5905     arm: A320: driver for FTRTC010 real time clock
5907     This patch adds an FTRTC010 driver for Faraday A320 evaluation board.
5909     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
5911 commit c1ee63cee89c5822fbbcc63586c8f2a1add70614
5912 Author: Sandeep Paulraj <s-paulraj@ti.com>
5913 Date:   Sat Nov 21 18:08:49 2009 -0500
5915     TI DaVinci DM646x: Enable NAND on DM6467 EVM
5917     This patch enables NAND on the DM6467 EVM
5919     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
5921 commit d414aae552bc229dafcad92028effb4a8306c7a5
5922 Author: Nishanth Menon <nm@ti.com>
5923 Date:   Mon Nov 9 09:29:34 2009 -0500
5925     OMAP3: Fix SDRC init
5927     Defaults are for Infineon DDR timings.
5928     Since none of the supported boards currently do
5929     XIP boot, these seem to be faulty. fix the values
5930     as per the calculations(ACTIMA,B), conf
5931     the sdrc power with pwdnen and wakeupproc bits
5933     Signed-off-by: Nishanth Menon <nm@ti.com>
5935 commit 30563a04bff73fd4fbd840b846f4b6459759a839
5936 Author: Nishanth Menon <nm@ti.com>
5937 Date:   Sat Nov 7 10:51:24 2009 -0500
5939     OMAP3:SDRC: introduce DDR types
5941     Micron DDR timings based on:
5942     http://www.sakoman.net/cgi-bin/gitweb.cgi?p=x-load-omap3.git;a=blob;f=include/asm/arch-omap3/mem.h;h=e6fbfe3947f5d0d85fea776e30821d4017316d86;hb=HEAD
5944     Introduce Micron DDR timings and provide
5945     CONFIG_OMAP3_INFINEON_DDR and CONFIG_OMAP3_MICRON_DDR config
5946     options to allow for platform files to setup their timings as
5947     per the type of DDR selected
5949     Reported-by: Steve Sakoman in http://www.nabble.com/forum/Permalink.jtp?root=25779518&post=25959734&page=y
5951     Signed-off-by: Nishanth Menon <nm@ti.com>
5953 commit 169a4c804dbaf11facb041b1333d394c6ceb8d68
5954 Author: Nishanth Menon <nm@ti.com>
5955 Date:   Sat Nov 7 10:40:47 2009 -0500
5957     OMAP3:SDRC: Cleanup references to SDP
5959     Remove SDP referenced unused defines
5961     Signed-off-by: Nishanth Menon <nm@ti.com>
5963 commit 2819e1365be0c81a0141ef5c6a7996b40888f6d8
5964 Author: Sekhar Nori <nsekhar@ti.com>
5965 Date:   Thu Nov 12 11:09:25 2009 -0500
5967     TI DA8xx: Integrate DA830 EVM support into U-Boot
5969     Integrate DA830 EVM support into U-Boot.
5971     Provides initial support for TI OMAP-L137/DA830 SoC devices on a Spectrum
5972     Digital EVM board. See http://www.spectrumdigital.com/
5974     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
5976 commit bdc9c6c7f77a9a63349ecb9f54b20ad34033a2ae
5977 Author: Sekhar Nori <nsekhar@ti.com>
5978 Date:   Thu Nov 12 11:08:39 2009 -0500
5980     TI DA8xx: Add new directory for da830evm board
5982     Add new directory for da830evm board
5984     Provides initial support for TI OMAP-L137/DA830 SoC devices on a Spectrum
5985     Digital EVM board. See http://www.spectrumdigital.com/
5987     Provides:
5988     Initial boot and configuration.
5989     Support for i2c.
5990     UART support (console).
5992     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
5994 commit 91172baf46a57807233eb7bcd724b9f10109cfe0
5995 Author: Sekhar Nori <nsekhar@ti.com>
5996 Date:   Thu Nov 12 11:07:22 2009 -0500
5998     TI DA8xx: Add DA8xx cpu functions
6000     Provides initial support for TI OMAP-L1x/DA8xx SoC devices.
6001     See http://www.ti.com
6003     Provides:
6004     Low level initialisation.
6005     System clock API.
6006     Timer control.
6008     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
6010 commit bbed056e550b26712edc173411c9d7ff9cb7e0e6
6011 Author: Nick Thompson <nick.thompson@gefanuc.com>
6012 Date:   Thu Nov 12 11:06:08 2009 -0500
6014     Add TI DA8xx support: DA8xx includes
6016     Provides initial support for TI OMAP-L1x/DA8xx SoC devices.
6017     See http://www.ti.com
6019     The DA8xx devices are similar to DaVinci devices but have a differing
6020     memory map and updated peripheral versions.
6022     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
6023     Signed-off-by: Sekhar Nori <nsekhar@ti.com>
6025 commit ca8480d444bdcc1670e42a613c5a5e4e8366d2d9
6026 Author: Nick Thompson <nick.thompson@gefanuc.com>
6027 Date:   Thu Nov 12 11:03:23 2009 -0500
6029     TI Davinci: add a pin multiplexer configuration API
6031     Creates a method allowing pin settings to be logically grouped into data
6032     structure arrays and provides an API to configure the pinmux settings to
6033     enable the relevant pin functions.
6035     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
6037 commit 9868a36dfb8de4bb98b48e4f4eb912312d67279e
6038 Author: Nick Thompson <nick.thompson@gefanuc.com>
6039 Date:   Thu Nov 12 11:02:17 2009 -0500
6041     TI Davinci timer.c: Remove volatiles and memory mapped structures
6043     Remove volatiles and memory mapped structure accesses and replace with
6044     readl and writel macro usage.
6046     Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com>
6048 commit c90b32739a50ca52d9b8d220ea6875ae994566ec
6049 Author: Grazvydas Ignotas <notasas@gmail.com>
6050 Date:   Thu Nov 12 11:46:07 2009 +0200
6052     OMAP3: pandora: fix booting without serial attached
6054     When the board is booted without serial cable attached (which
6055     is how most of them will be used) UART RX is left floating and
6056     sometimes picks noise, which interrupts countdown and enters
6057     U-Boot prompt instead of booting the kernel.
6059     Fix this by setting up internal pullup on UART RX pin. This
6060     does not prevent serial from working as the internal pullup
6061     is weak.
6063     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
6065 commit ac67804fbb2d82a19170066c02af7053d474ce8d
6066 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
6067 Date:   Tue Nov 17 18:30:34 2009 +0900
6069     Add a unified s3c24x0 header file
6071     This patch adds a unified s3c24x0 cpu header file that selects the header
6072     file for the specific s3c24x0 cpu from the SOC and CPU configs defined in
6073     board config file. This removes the current chain of s3c24-type #ifdef's
6074     from the s3c24x0 code.
6076     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
6077     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
6079 commit a59a23d68ae4f4a1c07d105520c93e6e289d186f
6080 Author: Seunghyeon Rhee <rhee4j1@gmail.com>
6081 Date:   Fri Nov 13 16:49:41 2009 +0900
6083     S3C6400/SMDK6400: fix stack_setup in start.S
6085     Fix stack_setup to place the stack on the correct address in DRAM
6086     accroding to U-Boot standard and remove conditional compilation by
6087     CONFIG_MEMORY_UPPER_CODE macro that is not necessry. This macro
6088     was introduced and used only by this board for some unclear reason.
6090     The definition of this macro is also removed because it's not
6091     referenced elsewhere.
6093     Signed-off-by: Seunghyeon Rhee <seunghyeon@lpmtec.com>
6094     Tested-by: Minkyu Kang <mk7.kang@samsung.com>
6096 commit 940032260914076b1594906334b2e3f7af6fb7cf
6097 Author: Minkyu Kang <mk7.kang@samsung.com>
6098 Date:   Tue Nov 10 20:23:50 2009 +0900
6100     s5pc1xx: serial: fix the error check logic
6102     Because of Frame error, Parity error and Overrun error are occured only receive
6103     operation, need to masking when error checking.
6105     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
6107 commit 9ebfdc202275bcd9eb4af56e32bfb4253ff1b781
6108 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
6109 Date:   Wed Nov 4 17:49:31 2009 +0900
6111     Clean-up of s3c24x0 header files
6113     Cleans up the s3c24x0 header files:
6115     s4c24x0.h: removes the use of 'volatile' from the S3C24X0_REG8,
6116     S3C24X0_REG16 and S3C24X0_REG32 register typedef's. Registers are always
6117     accessed using the IO accessor functions which cast the register address
6118     as 'volatile' anyway so it isn't required here.
6120     s3c2400.h and s3c2410.h: insert a blank line between the static inline
6121     functions
6123     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
6125 commit 47e801bec360e69e4b087a141d015b318e1b0212
6126 Author: Minkyu Kang <mk7.kang@samsung.com>
6127 Date:   Wed Nov 4 16:07:59 2009 +0900
6129     s3c64xx: move s3c64xx header files to asm-arm/arch-s3c64xx
6131     This patch moves the s3c64xx header files from include/
6132     to include/asm-arm/arch-s3c64xx
6134     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
6136 commit 492fb1fdbcdd5e21be0b6742c15f76c648f0653b
6137 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
6138 Date:   Tue Nov 3 18:08:41 2009 +0900
6140     Move s3c24x0 header files to asm-arm/arch-s3c24x0/
6142     This patch moves the s3c24x0 header files from include/ to
6143     include/asm-arm/arch-s3c24x0/.
6145     checkpatch.pl showed 2 errors and 3 warnings. The 2 errors were both due
6146     to a non-UTF8 character in David M?ller's name:
6148     ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
6149     #489: FILE: include/asm-arm/arch-s3c24x0/s3c2410.h:3:
6150     + * David M?ller ELSOFT AG Switzerland. d.mueller@elsoft.ch
6152     As David's name correctly contains a non-UTF8 character I haven't fixed
6153     these errors.
6155     The 3 warnings were all because of the use of 'volatile' in s3c24x0.h:
6157     WARNING: Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt
6158     #673: FILE: include/asm-arm/arch-s3c24x0/s3c24x0.h:35:
6159     +typedef volatile u8        S3C24X0_REG8;
6160     +typedef volatile u16       S3C24X0_REG16;
6161     +typedef volatile u32       S3C24X0_REG32;
6163     I'll fix these errors in another patch.
6165     Tested by running MAKEALL for ARM8 targets and ensuring there were no new
6166     errors or warnings.
6168     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
6169     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
6171 commit 2d251ccaa90997012e0b1f13bf791df2bf03a144
6172 Author: Tom Rix <Tom.Rix@windriver.com>
6173 Date:   Sun Nov 15 10:58:06 2009 -0600
6175     ARM Update mach-types
6177     Fetched from http://www.arm.linux.org.uk/developer/machines/download.php
6178     And built with
6180     repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm
6181     commit 156171c71a0dc4bce12b4408bb1591f8fe32dc1a
6183     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
6185 commit c88ed4cb2eed29a690ac6689ed1dc2f5e9547d15
6186 Author: Mark Asselstine <[mark.asselstine@windriver.com]>
6187 Date:   Tue Oct 27 19:40:40 2009 +0530
6189     sheevaplug: correct SDRAM address control register
6191     value
6193     The SheevaPlug DevKit is shipped with 4x8 by 1Gb DDR devices in
6194     two banks for a total of 512MB of RAM. Based on this configuration
6195     the existing values for SDRAM address control register are incorrect
6196     and result in random kernel oops as memory is incorrectly accessed
6197     (while for example extracting a large tarball such as a rootfs).
6198     Based on the hardware configuration along with the supporting
6199     documentation from Marvell these are the correct values, as
6200     well this change mimics values previously used in Marvell's own
6201     u-boot git tree for the SheevaPlug.
6203     Other variants of the hardware such as the PogoPlug and TonidoPlug
6204     may have different memory configurations but to properly support
6205     those additional board directories should be maintained or a better
6206     system to support other kwb*.cfg is needed.
6208     Tested on SheevaPlug DevKit.
6210     Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
6212 commit 9829cabbaa0474e94075bf7d62c99bdba996518b
6213 Author: Sandeep Paulraj <s-paulraj@ti.com>
6214 Date:   Wed Oct 28 19:16:43 2009 -0400
6216     Fix for Void function returning value in sbc35-a9g20
6218     Void function was returning 0 in the m41t94 rtc driver.
6219     This makes it similar to m41t62 rtc driver.
6221     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6223 commit d5e2d625c74c84aa419ba7fa0c81bad93fc69a60
6224 Author: Tom Rix <Tom.Rix@windriver.com>
6225 Date:   Sat Oct 24 14:48:33 2009 -0500
6227     ARM Update mach-types.h
6229     From http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm
6231     Commit id 0996391139f43d032335b5360db11da62a2cbb39
6233     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
6235 commit 34ddbd171ba154e9afd83f07a07ad8b57ac592e3
6236 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6237 Date:   Thu Oct 22 23:06:59 2009 +0200
6239     ppc4xx: Remove autoupdate feature from PLU405 board
6241     The autoupdate feature is not used on PLU405 boards.
6242     So remove it.
6244     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6245     Signed-off-by: Stefan Roese <sr@denx.de>
6247 commit 824d82997fbcf28e49081d36fdd5d3be1b92b03d
6248 Author: Ira W. Snyder <iws@ovro.caltech.edu>
6249 Date:   Wed Nov 4 13:37:59 2009 -0800
6251     Fix example FIT image source files
6253     The example FIT image source files do not compile with the latest dtc and
6254     mkimage. The following error message is produced:
6256     DTC: dts->dtb  on file "kernel.its"
6257     Error: kernel.its 7:0 - 1:0 syntax error
6258     FATAL ERROR: Unable to parse input tree
6259     ./mkimage: Can't read kernel.itb.tmp: Invalid argument
6261     The FIT image source files are missing the "/dts-v1/;" directive at the
6262     beginning of the file. Add the directive to the examples.
6264     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
6266 commit fd66066ee3ce15c2966feb9b2be0f0d51a95db48
6267 Author: Mike Frysinger <vapier@gentoo.org>
6268 Date:   Wed Nov 4 16:13:19 2009 -0500
6270     img2srec: use standard types
6272     The img2srec code creates a lot of typedefs with common names.  These
6273     easily clash with system headers that include these typedefs (like mingw).
6275     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6277 commit 8204e068110e8abe5db9c3b7df9971b58cda8f26
6278 Author: Mike Frysinger <vapier@gentoo.org>
6279 Date:   Wed Nov 4 16:03:25 2009 -0500
6281     tools: gitignore *.exe binaries
6283     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6285 commit 425d3b666eee5c58fdb82fb894a535dd71782a05
6286 Author: Peter Tyser <ptyser@xes-inc.com>
6287 Date:   Tue Nov 3 23:31:07 2009 -0600
6289     ppc: Move conditional compilation of kgdb.c to Makefile
6291     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6293 commit e06ab6546b332acc55ac4e7c31338662328b0fb3
6294 Author: Mike Frysinger <vapier@gentoo.org>
6295 Date:   Tue Nov 3 11:36:39 2009 -0500
6297     spi_flash.h: pull in linux/types.h for u## types
6299 commit 0008555f4d57c15ad86ee735861ca0d783042f61
6300 Author: Mike Frysinger <vapier@gentoo.org>
6301 Date:   Tue Nov 3 11:36:26 2009 -0500
6303     bootm: mark local boot_os[] table static
6305     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6307 commit a8fa379d47f06c7d3ed75c8fb26ae43ee38e1fd7
6308 Author: Nishanth Menon <nm@ti.com>
6309 Date:   Mon Nov 2 09:40:18 2009 -0600
6311     mkconfig: deny messed up ARCH definition
6313     Refuse to setup a platform if the command line ARCH= is not the same
6314     as the one required for the board. This prevents any user with
6315     prehistoric aliases from messing up their builds.
6317     Reported in thread:
6318     http://old.nabble.com/-U-Boot--Build-breaks-on-some-OMAP3-configs-to26132721.html
6320     Inputs from: Mike Frysinger and Wolfgang Denk:
6321     http://lists.denx.de/pipermail/u-boot/2009-November/063642.html
6323     Cc: Wolfgang Denk <wd@denx.de>
6324     Cc: Mike Frysinger <vapier@gentoo.org>
6325     Cc: Anand Gadiyar <gadiyar@ti.com>
6326     Cc: Dirk Behme <dirk.behme@googlemail.com>
6327     Signed-off-by: Nishanth Menon <nm@ti.com>
6329 commit 67b96e87da1b84660fa1e5b78cc760246d116814
6330 Author: Remy Bohmer <linux@bohmer.net>
6331 Date:   Wed Oct 28 22:13:39 2009 +0100
6333     Repair the 'netretry=once' option.
6335     'netretry = once' does the same as 'netretry = yes', because it is not stored
6336     when it was tried once.
6338     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6339     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6341 commit b25e38fc36e13fa8037fa4d37fe909d1d6e6f372
6342 Author: Remy Bohmer <linux@bohmer.net>
6343 Date:   Thu Oct 29 14:24:22 2009 +0100
6345     Repair build fail in case CONFIG_PPC=n and CONFIG_FIT=y
6347     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6349 commit 01826abc02ce160501534788e63629ccbe31b05c
6350 Author: Grazvydas Ignotas <notasas@gmail.com>
6351 Date:   Thu Nov 12 11:46:07 2009 +0200
6353     OMAP3: pandora: fix booting without serial attached
6355     When the board is booted without serial cable attached (which
6356     is how most of them will be used) UART RX is left floating and
6357     sometimes picks noise, which interrupts countdown and enters
6358     U-Boot prompt instead of booting the kernel.
6360     Fix this by setting up internal pullup on UART RX pin. This
6361     does not prevent serial from working as the internal pullup
6362     is weak.
6364     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
6366 commit 41dfd8a60324243dbe2dc313a607910824a68aa7
6367 Author: Remy Bohmer <linux@bohmer.net>
6368 Date:   Wed Oct 28 22:13:37 2009 +0100
6370     Add support for CS2 dataflash for Atmel-SPI.
6372     The only missing chipselect line support is CS2, and I need it on
6373     CS2...
6375     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6377 commit faf36c1437c95e4a86835633d9801c5f6396a3c7
6378 Author: Remy Bohmer <linux@bohmer.net>
6379 Date:   Wed Oct 28 22:13:36 2009 +0100
6381     Fix mingw tools build
6383     mkimage does not build due to missing strtok_r() and getline() implementation
6385     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6387 commit 6a590c5f5fd12cdd27f3153522acfac3854590e7
6388 Author: Remy Bohmer <linux@bohmer.net>
6389 Date:   Wed Oct 28 22:13:35 2009 +0100
6391     Building of FIT images does not work.
6393     The type is not set for generation of the FIT images, resulting
6394     in no images being created without printing or returning an error
6396     Signed-off-by: Remy Bohmer <linux@bohmer.net>
6398 commit 0a7691e820e33b23f61c6ea0ef6fa72099d1a6ae
6399 Author: Renato Andreola <renato.andreola@imagos.it>
6400 Date:   Mon Nov 23 16:45:14 2009 -0500
6402     Nios2: do_boom_linux(): kernel gunzip input data integrity problem due to
6403         missing cache flush.
6405         Added instruction and data caches flush.
6407     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
6409 commit de03825386eaedb5e17261dd87cde86e9a764ba9
6410 Author: Scott McNutt <smcnutt@psyent.com>
6411 Date:   Mon Nov 23 16:29:40 2009 -0500
6413     Nios2: Fix compiler warnings in lib_nios2/board.c (unused variables)
6415     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
6417 commit 57baa379cf2f67df89a5c6052767fd25daff20bd
6418 Author: Scott McNutt <smcnutt@psyent.com>
6419 Date:   Mon Nov 23 15:54:25 2009 -0500
6421     Nios2/Nios: Remove unnecessary (residual) linker Nios command scripts from
6422         the standalone examples.
6424     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
6426 commit eb5eb2b0f744f0cba405160c5d01335c40f09acf
6427 Author: Stefan Roese <sr@denx.de>
6428 Date:   Thu Nov 19 14:03:17 2009 +0100
6430     ppc4xx: Cleanup PPC4xx I2C infrastructure
6432     This patch cleans up the PPC4xx I2C intrastructure:
6434     - Use C struct to describe the I2C registers instead of defines
6435     - Coding style cleanup (braces, whitespace, comments, line length)
6436     - Extract common code from i2c_read() and i2c_write()
6437     - Remove unneeded IIC defines from ppc405.h & ppc440.h
6439     Signed-off-by: Stefan Roese <sr@denx.de>
6441 commit b2f618f2150b15b2674f11d09e1c0fdfe460c1cd
6442 Author: Stefan Roese <sr@denx.de>
6443 Date:   Thu Nov 19 11:49:36 2009 +0100
6445     ppc4xx: Remove some testing code from 4xx_pcie.c
6447     This code got included accidentally.
6449     Signed-off-by: Stefan Roese <sr@denx.de>
6451 commit 4e574c4e2d3776d9db62dca4ca3c73be1574af43
6452 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
6453 Date:   Mon May 18 13:20:54 2009 +0200
6455     at91: Extended soft_i2c driver for AT91SAM9263 SoC
6457     While hard_i2c support is not available
6458     (see http://lists.denx.de/pipermail/u-boot/2009-March/049751.html),
6459     this patch enables soft_i2c on AT91SAM9263 SoC.
6461     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
6463 commit 396fd17338b9bf1f84f494ec1860427e18868ede
6464 Author: Peter Tyser <ptyser@xes-inc.com>
6465 Date:   Fri Oct 16 17:36:27 2009 -0500
6467     Add 'true' and 'false' commands
6469     These commands are only enabled when the hush shell is enabled and can
6470     be useful in scripts such as:
6472     while true do
6473         echo "Booting OS...";
6474         run $bootcmd;
6475         echo "Booting OS failed";
6476         sleep 10;
6477     done
6479     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6481 commit 4e1ca93b6bae34b68be9280b43bf0289d994656c
6482 Author: Peter Tyser <ptyser@xes-inc.com>
6483 Date:   Fri Oct 16 17:36:26 2009 -0500
6485     cmd_help: General cleanup
6487     Shorten the overly-verbose help message of 'help' and clean up some
6488     redundant ifdefery while we're at it.
6490     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6492 commit 6b8f5ad10f567362a3682840f59ba0fc470af319
6493 Author: Peter Tyser <ptyser@xes-inc.com>
6494 Date:   Fri Oct 16 17:36:25 2009 -0500
6496     command.c: Break commands out to appropriate cmd_*.c files
6498     command.c should contain common code related to commands, not
6499     miscellaneous command implementations.
6501     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6503 commit fcffb680e77fcb48598d4a9944dbe2d4503170e0
6504 Author: Mike Frysinger <vapier@gentoo.org>
6505 Date:   Wed Oct 14 19:28:03 2009 -0400
6507     sf: fix stmicro offset setup while erasing
6509     Reported-by: Peter Gombos <gombos@protecta.hu>
6510     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6512 commit d394a7795027d96ca55799df40bd5c4a13dbeebe
6513 Author: Jason McMullan <mcmullan@netapp.com>
6514 Date:   Fri Oct 9 17:12:23 2009 -0400
6516     sf: new driver for Winbond W25X16/32/64 devices
6518     Signed-off-by: Jason McMullan <jason.mcmullan@gmail.com>
6519     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6521 commit cada315100c88894b85972a91309a6f2413966b6
6522 Author: Marcel Ziswiler <marcel@ziswiler.com>
6523 Date:   Thu Oct 1 23:55:17 2009 +0200
6525     mpc8260: move FDT memory node fixup into common CPU code.
6527     Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
6528     Tested-by: Heiko Schocher <hs@denx.de>
6530 commit f2cea405f83da46b72098ea874fb3eefe185d312
6531 Author: Po-Yu Chuang <ratbert.chuang@gmail.com>
6532 Date:   Wed Sep 23 15:52:35 2009 +0800
6534     Add driver for FTRTC010 real time clock
6536     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
6538     Edited commit message.
6539     Signed-off-by: Wolfgang Denk <wd@denx.de>
6541 commit c0356a88011330646e960dfac8a2c909bede3304
6542 Author: Mark Jackson <mpfj-list@mimc.co.uk>
6543 Date:   Mon Aug 17 16:42:52 2009 +0100
6545     MIMC200: set default fbmem value
6547     This patch adds a default bootargs "fbmem" value to the
6548     CONFIG_BOOTARGS string for the MIMC200 board.
6550     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
6552 commit 10a5a7991258019af155bc19b3b246aaa708b0e2
6553 Author: Sandeep Paulraj <s-paulraj@ti.com>
6554 Date:   Thu Nov 19 23:04:42 2009 -0500
6556     NAND: Add Support for 4K page size in DaVinci NAND driver
6558     This patch adds support for NAND devices with a page size of
6559     4K in the DaVinci NAND driver. The layout matches the layout that TI uses
6560     for 4K page size NAND devices in the kernel NAND driver.
6562     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6564 commit 14ce02c88116316a0285cc7d9c05f83367a5aae8
6565 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
6566 Date:   Wed Nov 18 16:29:29 2009 +0100
6568     ppc4xx: Remove unused features from PMC440 board support
6570     This patch shrinks the PMC440 u-boot binary (from next branch)
6571     to fit into 384kB again.
6573     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6574     Signed-off-by: Stefan Roese <sr@denx.de>
6576 commit 629ab99b3b19c1b7e06a7c4e5d666138bc924c7c
6577 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
6578 Date:   Wed Nov 18 16:28:42 2009 +0100
6580     ppc4xx: Remove confusing comment
6582     This is not the sequoia board.
6584     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6585     Signed-off-by: Stefan Roese <sr@denx.de>
6587 commit 79e2d8df3776b667257e609aefefa071b4fe13a2
6588 Author: Stefan Roese <sr@denx.de>
6589 Date:   Tue Nov 17 15:53:00 2009 +0100
6591     ppc4xx: alpr: Remove some not needed commands to make image fit again
6593     The latest changes in the u-boot/next branch increased the size of the
6594     alpr image a bit more. Now it doesn't fit into the 256k reserved for it.
6595     This patch now removes the commands "askenv" and "irq" which are not
6596     needed in the production systems.
6598     Signed-off-by: Stefan Roese <sr@denx.de>
6599     Cc: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
6601 commit 6c70049bd14e8e81764570732be7f34a89831f09
6602 Author: Stefan Roese <sr@denx.de>
6603 Date:   Thu Nov 12 17:19:37 2009 +0100
6605     ppc4xx: Consolidate pci_master_init() function
6607     This patch removes the duplicted implementations of the pci_master_init()
6608     function by introducing a weak default function for it. It can be
6609     overridden by a board specific version.
6611     Signed-off-by: Stefan Roese <sr@denx.de>
6613 commit a760b0203155da6fb8b8e9086169bb87d09d76fa
6614 Author: Stefan Roese <sr@denx.de>
6615 Date:   Thu Nov 12 16:41:09 2009 +0100
6617     ppc4xx: Consolidate pci_pre_init() function
6619     This patch removes the duplicted implementations of the pci_pre_init()
6620     function by introducing a weak default function for it. This weak default
6621     has a different implementation for some PPC variants. It can be
6622     overridden by a board specific version.
6624     Signed-off-by: Stefan Roese <sr@denx.de>
6626 commit 1095493a5d4c16f481a783f6f54d83ad0e07dfa0
6627 Author: Stefan Roese <sr@denx.de>
6628 Date:   Thu Nov 12 12:00:49 2009 +0100
6630     ppc4xx: Consolidate pci_target_init() function
6632     This patch removes the duplicted implementations of the pci_target_init()
6633     function by introducing a weak default function for it. This weak default
6634     has a different implementation for 440EP(x)/GR(x) PPC's. It can be
6635     overridden by a board specific version (e.g. PMC440, korat).
6637     Signed-off-by: Stefan Roese <sr@denx.de>
6638     Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6640 commit 5e1ded558b7cc28a62c14598f6437023b6262444
6641 Author: Hui.Tang <zetalabs@gmail.com>
6642 Date:   Wed Nov 18 16:24:04 2009 +0800
6644     S3C2410 NAND Flash Add Missing Function
6646     This patch add nand_read_buf() for S3C2410 NAND SPL.
6647     In nand_spl/nand_boot.c, nand_boot() will check nand->select_chip,
6648     so nand->select_chip should also be initialized.
6650     Signed-off-by: Hui.Tang <zetalabs@gmail.com>
6652 commit 6cd752f927e515e63a038fa363edceec5a59c028
6653 Author: Sandeep Paulraj <s-paulraj@ti.com>
6654 Date:   Mon Nov 16 13:32:01 2009 -0500
6656     NAND: Update read_read_subpage API check
6658     This patch updates a check condition in the NAND driver.
6659     The check condition is similat to what is in linux/next.
6661     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6663 commit bb3e9828e7fbcc9e4518e51592876f4a0997d9ec
6664 Author: Sandeep Paulraj <s-paulraj@ti.com>
6665 Date:   Mon Nov 16 13:31:47 2009 -0500
6667     NAND:Extending the nand_ecclayout structure
6669     NANDs with page size of lesser than and equal to 2K are
6670     reaching EOL. They are bing replaced with NANDs of
6671     page size 4K and above.
6672     To support this we have to extend the eccpos field
6674     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6676 commit 3ffc0d61bad7d986e344ce7062b37c5c8f04fb0e
6677 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6678 Date:   Tue Oct 27 19:58:09 2009 +0100
6680     ppc4xx: Initialize magnetic coupler on VOM405 boards
6682     This patch fixes an ugly behavior of the IL712 magnetic coupler
6683     as used on VOM405. These parts will remember their last state
6684     over a power cycle which might cause unwanted behavior.
6686     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6687     Signed-off-by: Stefan Roese <sr@denx.de>
6689 commit be0db3e3141c6c6b4e232b51091f35a284cc54e5
6690 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
6691 Date:   Mon Oct 26 09:58:45 2009 +0100
6693     ppc4xx: Initialize magnetic couplers in PLU405
6695     This patch fixes an ugly behavior of the IL712 magnetic couplers
6696     as used on PLU405. These parts will remember their last state
6697     over a power cycle which might cause unwanted behavior.
6699     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6700     Signed-off-by: Stefan Roese <sr@denx.de>
6702 commit 067f54c66acd469870ef6946e1591bfcc02de1b3
6703 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
6704 Date:   Mon Oct 26 09:55:40 2009 +0100
6706     Add minimal SJA1000 header for basic CAN mode
6708     This patch is in preparation for the upcoming PLU405 board fix.
6710     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
6711     Signed-off-by: Stefan Roese <sr@denx.de>
6713 commit 1d2e96de56cc57e25a19bc40d297f36c4c4443a2
6714 Author: Dirk Behme <dirk.behme@googlemail.com>
6715 Date:   Mon Nov 2 20:36:26 2009 +0100
6717     OMAP2/3: I2C: Add support for second and third bus
6719     Add support to use second and third I2C bus, too.
6721     Bus 0 is still the default, but by calling i2c_set_bus_num(1/2) before doing
6722     I2C accesses, code can switch to bus 1 and 2, too. Don't forget to switch
6723     back afterwards, then.
6725     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
6727 commit c758e947aa7d39a2be607ecdedd818ad300807b2
6728 Author: Amul Kumar Saha <amul.saha@samsung.com>
6729 Date:   Wed Nov 4 10:38:46 2009 +0530
6731     ENV Variable support for Flex-OneNAND
6733     Define and use CONFIG_ENV_ADDR_FLEX and CONFIG_ENV_SIZE_FLEX
6734     for storing environment variables.
6736     Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
6737     Signed-off-by: Amul Kumar Saha <amul.saha@samsung.com>
6739 commit cacbe919584193f64e74088e03f068e52775bb86
6740 Author: Amul Kumar Saha <amul.saha@samsung.com>
6741 Date:   Fri Nov 6 17:15:31 2009 +0530
6743     Flex-OneNAND driver support
6745     This patch adds support for Flex-OneNAND devices.
6747     Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
6748     Signed-off-by: Amul Kumar Saha <amul.saha@samsung.com>
6750 commit 35209cbceebe212a8c5ec17d552960f8bd4725f3
6751 Author: Mingkai Hu <Mingkai.hu@freescale.com>
6752 Date:   Tue Oct 20 16:58:17 2009 +0800
6754     fsl_elbc_nand: remove the bbt descriptors relocation fixup
6756     The commit 66372fe2 manually relocated the bbt pattern pointer,
6757     which can be removed by using full relocation.
6759     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
6761 commit 25643d4da257e51f6200b213c75de4fb5b345780
6762 Author: Mingkai Hu <Mingkai.hu@freescale.com>
6763 Date:   Tue Oct 20 16:58:16 2009 +0800
6765     ppc/85xx: make boot from NAND full relocation to RAM
6767     Take advantage of the latest full relocation commit of PPC platform
6768     for boot from NAND.
6770     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
6771     Acked-by: Kumar Gala <galak@kernel.crashing.org>
6773 commit 7e86661cd777eec1e81c5e57c468e81138fda983
6774 Author: David Brownell <dbrownell@users.sourceforge.net>
6775 Date:   Sat Nov 7 16:27:01 2009 -0500
6777     NAND: fix "raw" reads with ECC syndrome layouts
6779     The syndrome based page read/write routines store ECC, and possibly other
6780     "OOB" data, right after each chunk of ECC'd data.  With ECC chunk size of
6781     512 bytes and a large page (2KiB) NAND, the layout is:
6783       data-0 OOB-0 data-1 OOB-1 data-2 OOB-2 data-3 OOB-3 OOB-leftover
6785     Where OOBx is (prepad, ECC, postpad).  However, the current "raw" routines
6786     use a traditional layout -- data OOB, disregarding the prepad and postpad
6787     values -- so when they're used with that type of ECC hardware, those calls
6788     mix up the data and OOB.  Which means, in particular, that bad block
6789     tables won't be found on startup, with data corruption and related chaos
6790     ensuing.
6792     The current syndrome-based drivers in mainline all seem to use one chunk
6793     per page; presumably they haven't noticed such bugs.
6795     Fix this, by adding read/write page_raw_syndrome() routines as siblings of
6796     the existing non-raw routines; "raw" just means to bypass the ECC
6797     computations, not change data and OOB layout.
6799     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
6800     Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
6801     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
6803 commit 5df3c2b62cebaa0ddb2817364f93726e5dbe3525
6804 Author: Sandeep Paulraj <s-paulraj@ti.com>
6805 Date:   Sat Nov 7 14:25:18 2009 -0500
6807     NAND: Don't walk past end of oobfree[]
6809     When computing oobavail from the list of free areas in the OOB,
6810     don't assume there will always be an unused slot at the end.
6811     This syncs up with the kernel NAND driver.
6813     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6815 commit 18b5a4b43af3c8359cb568f4fa32d6b9dcebbf26
6816 Author: Sandeep Paulraj <s-paulraj@ti.com>
6817 Date:   Sat Nov 7 14:25:03 2009 -0500
6819     NAND: Update check condition for nand_read_page_hwecc API
6821     The patch updates the check condition for determining
6822     whether the ECC corrections has failed.
6823     This makes it similar to what is in the kernel NAND driver.
6825     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6827 commit e25ee0396226fb56679702d0361cf2645504e7f6
6828 Author: Sandeep Paulraj <s-paulraj@ti.com>
6829 Date:   Sat Nov 7 14:24:50 2009 -0500
6831     NAND: Updating comments/explanations in the NAND driver
6833     Patch updates the comments and explanations for
6834     the arguments to various functions.
6836     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6838 commit aad4a28b2518e1d24ee606d9ea31f9b4dd029777
6839 Author: Sandeep Paulraj <s-paulraj@ti.com>
6840 Date:   Sat Nov 7 14:24:34 2009 -0500
6842     NAND: Subpage shift for ecc_steps equal to 16
6844     This was originally part of Thomas Gleixner's patch for
6845     adding support for 4KiB pages.
6846     This is not part of the U-Boot NAND driver so updating the
6847     driver with this to sync up with the kernel NAND driver.
6849     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6851 commit 36e0b98ec832bb5ec42d6e249058d5b84f75dff8
6852 Author: Sandeep Paulraj <s-paulraj@ti.com>
6853 Date:   Sat Nov 7 14:24:20 2009 -0500
6855     NAND: Remove commented out code
6857     Patch removes already commented out dead code
6859     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6861 commit 4f41e7ea1a17ba7207ca41379bf344b317e72c12
6862 Author: Sandeep Paulraj <s-paulraj@ti.com>
6863 Date:   Sat Nov 7 14:24:06 2009 -0500
6865     NAND: Correct the "chip_shift" calculation
6867     This patch updates the "chip_shift" calculation in the
6868     NAND driver. This is being done to sync up the NAND driver with
6869     the kernel NAND driver.
6871     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6873 commit aaa8eec532876c47acfd31bf9b573a00eaad92ae
6874 Author: Sandeep Paulraj <s-paulraj@ti.com>
6875 Date:   Fri Oct 30 13:51:23 2009 -0400
6877     NAND: Update to support 64 bit device size
6879     This patch adds support for NANDs greater than 2 GB.
6880     Patch is based on the MTD NAND driver in the kernel.
6882     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6883     Signed-off-by: Scott Wood <scottwood@freescale.com>
6885 commit 581d04f14d7a39b63d418e2a21e44101233096d1
6886 Author: Peter Tyser <ptyser@xes-inc.com>
6887 Date:   Thu Oct 15 10:48:18 2009 -0500
6889     cmd_nand: Move conditional compilation to Makefile
6891     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6893 commit 9574fd63a97d080e379f30b6a81a1221eaeb797e
6894 Author: Peter Tyser <ptyser@xes-inc.com>
6895 Date:   Thu Oct 15 10:48:17 2009 -0500
6897     cmd_nand: Remove duplicate include
6899     Also remove vague, unnecessary comment
6901     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6903 commit cdbdbe65f5f006cba208accee5a126c659d4b867
6904 Author: Kumar Gala <galak@kernel.crashing.org>
6905 Date:   Fri Nov 13 08:52:21 2009 -0600
6907     ppc/85xx: Fix how we determine the number of CAM entries
6909     We were incorrectly use the max CAM size as the number of entries in
6910     the array for setting up the addrmap.  We should be using the NENTRY
6911     field which is the low 12-bits of TLB1CFG.
6913     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6915 commit fbd47b6753b08162436d9ccad1e63c8d43ede54c
6916 Author: Mike Rapoport <mike@compulab.co.il>
6917 Date:   Thu Nov 12 15:35:08 2009 +0200
6919     smc911x: make smc911x_initialize return correct value
6921     Make smc911x_initialize return -1 on error and number of interfaces
6922     detected otherwise.
6924     Signed-off-by: Mike Rapoport <mike@compulab.co.il>
6925     Acked-by: Mike Frysinger <vapier@gentoo.org>
6926     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6928 commit c44efcf97b335dcef7d014f65b7d3094e79adb13
6929 Author: Mike Frysinger <vapier@gentoo.org>
6930 Date:   Thu Nov 12 22:26:02 2009 -0500
6932     smc911x_eeprom: fix building after smc911x overhaul
6934     When the smc911x driver was converted to NET_MULTI, the smc911x eeprom was
6935     missed.  The config option needed updating as well as overhauling of the
6936     rergister read/write functions.
6938     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6939     Tested-by: Mike Rapoport <mike.rapoport@gmail.com>
6940     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6942 commit 3ad95deb30ac73bd57e966d321215a17d3236f9f
6943 Author: Dave Liu <daveliu@freescale.com>
6944 Date:   Thu Nov 12 07:26:37 2009 +0800
6946     fsl-ddr: Fix the chip-select interleaving issue
6948     commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
6949     introduced one new bug to chip-select interleaving.
6951     Single DDR controller also can do the chip-select
6952     interleaving if there is dual-rank or qual-rank DIMMs.
6954     Signed-off-by: Dave Liu <daveliu@freescale.com>
6955     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6957 commit 651ef90fa6ca824c8e581aeef9e04bbbe7f7e9ce
6958 Author: javier Martin <javier.martin@vista-silicon.com>
6959 Date:   Thu Oct 29 08:22:43 2009 +0100
6961     mxc_fec: avoid free() calls to already freed pointers.
6963     Sometimes, inside NetLoop, eth_halt() is called before eth_init() has
6964     been called. This is harmless except for free() calls to pointers
6965     which have not been allocated yet.
6967     This patch initializes those pointers to NULL and allocates them only
6968     the first time. This way we can get rid of free calls in halt callback.
6970     This has been tested in i.MX27 Litekit board and eldk-4.2 toolchains.
6972     Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
6973     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6975 commit e8f1546a88b4ade6a910c4a7958a774ee1b40023
6976 Author: javier Martin <javier.martin@vista-silicon.com>
6977 Date:   Thu Oct 29 08:18:34 2009 +0100
6979     mxc_fec: fix some erroneous PHY accesses.
6981     This patch fixes erroneous access to the ethernet PHY which broke the driver.
6982     1. Selector field in the auto-negotiation register must be 0x00001 for
6983     using 802.3, not 0x00000 which is reseved.
6984     2. Access to the PHY address specified by CONFIG_FEC_MXC_PHYADDR, not
6985     0x0 fixed address.
6987     This has been tested in i.MX27 Litekit board and eldk-4.2 toolchains.
6989     Now using proper defines for auto-negotiation register.
6991     Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
6992     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6994 commit f865fcbbb35851e75fee9c3a3fa8e0f71d9e6463
6995 Author: Ron Lee <ron@debian.org>
6996 Date:   Wed Aug 5 20:14:01 2009 +0200
6998     ARM Don't inline weak symbols
7000     ------------------------------------------------------------------------
7002     GCC 4.4 complains about this now.
7004     Signed-off-by: Ron Lee <ron@debian.org>
7006 commit efe12bcec55c3d77b9ead56e62010d26b66781f3
7007 Author: Stefan Roese <sr@denx.de>
7008 Date:   Mon Nov 9 14:15:42 2009 +0100
7010     ppc4xx: Katmai: Add chip_config command
7012     This patch removes the Katmai "bootstrap" command and replaces it
7013     with the now common command "chip_config".
7015     Signed-off-by: Stefan Roese <sr@denx.de>
7017 commit cdaed5dc31f4023610f180fe158ec8c6f5e855a3
7018 Author: Stefan Roese <sr@denx.de>
7019 Date:   Mon Nov 9 14:13:43 2009 +0100
7021     ppc4xx: Switch to I2C bus numer 0 for chip_config command
7023     All currently available 4xx derivats have the I2C bootstrap EEPROM
7024     located on I2C bus number 0. This patch now first sets this bus number,
7025     so that the chip_config command also works for board with multiple
7026     I2C busses, like Katmai.
7028     Signed-off-by: Stefan Roese <sr@denx.de>
7030 commit 985edaccc4fbaef6d357d104aed08f839058a32f
7031 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
7032 Date:   Tue Oct 27 12:19:11 2009 +0100
7034     ppc4xx: Add UBI support to PLU405 boards
7036     -add UBI support
7037     -increase malloc'able memory size
7038     -cleanup MONITOR|FLASH_BASE|LEN constants
7040     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
7041     Signed-off-by: Stefan Roese <sr@denx.de>
7043 commit d14c7ec2b51fb92c4a5218b299b772c3d186510d
7044 Author: Ben Warren <biggerbadderben@gmail.com>
7045 Date:   Mon Nov 9 13:09:57 2009 -0800
7047     Fix SMC91111 regression: lpd7a40x build failures
7049     Both lpd7a400 and lpd7a404 failed to compile because they had
7050     CONFIG_SMC_USE_IOFUNCS defined:
7052     examples/standalone/smc91111_eeprom.c:388: undefined reference to `SMC_outw'
7054     Also removed an orphaned paren in lpd7a404.h
7056     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7058 commit 1031ae960ce6ce8332190278a06e2d72c2b2793e
7059 Author: Ben Warren <biggerbadderben@gmail.com>
7060 Date:   Mon Nov 9 14:01:08 2009 -0800
7062     SMC91111: Clean up SMC_inx macros on xsengine and xaeniax
7064     This patch fixes the following warnings:
7066     Configuring for xaeniax board...
7067     smc91111_eeprom.c: In function 'print_macaddr':
7068     smc91111_eeprom.c:278: warning: suggest parentheses around + or - in operand of &
7069     smc91111_eeprom.c:281: warning: suggest parentheses around + or - in operand of &
7070     ...
7071     Configuring for xsengine board...
7072     smc91111_eeprom.c: In function 'print_macaddr':
7073     smc91111_eeprom.c:278: warning: suggest parentheses around + or - inside shift
7074     smc91111_eeprom.c:281: warning: suggest parentheses around + or - inside shift
7076     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7078 commit 830c7b6722c6a9762411bf52a7bf2fae4dc71dab
7079 Author: Ben Warren <biggerbadderben@gmail.com>
7080 Date:   Mon Nov 9 11:43:18 2009 -0800
7082     Fix CS8900 regression on impa7 board
7084     The following error was seen on impa7 board, due to its use of a 32-bit bus
7085     on CS8900.
7086     cs8900.c:137:37: error: macro "get_reg_init_bus" passed 2 arguments, but takes just 1
7088     This patch gives the macro the correct number of arguments
7090     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7092 commit e5c5d9e0834bacf1c4787fa76cc4e369f2597cf5
7093 Author: Mike Frysinger <vapier@gentoo.org>
7094 Date:   Sun Nov 1 22:39:56 2009 -0500
7096     clarify eth driver halt/recv steps
7098     The dev->halt() func can be called at any time, and the dev->recv() func
7099     does not need to use NetRxPackets[] when calling NetReceive().
7101     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7102     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7104 commit 497ab0eec5e1e2dfccc141a4485cd6b940e1424a
7105 Author: Hui.Tang <zetalabs@gmail.com>
7106 Date:   Thu Nov 5 09:58:44 2009 +0800
7108     Fix cs8900 dev->priv not init issue
7110     Ensure all CS8900 data structures are assigned before accessing device
7112     Signed-off-by: Hui.Tang <zetalabs@gmail.com>
7113     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7115 commit 4fe5193d464ecdac26ddc71b1351be5b86bbff29
7116 Author: Stefan Roese <sr@denx.de>
7117 Date:   Tue Nov 3 14:34:45 2009 +0100
7119     ppc4xx: 44x_spd_ddr2.c: Fix register macro ECCCR -> ECCES (SDRAM_ECCES)
7121     This error only appears when DEBUG is enabled in this driver. That's why
7122     it went unnoticed till now.
7124     Signed-off-by: Stefan Roese <sr@denx.de>
7126 commit 916ed9444d3ab7b5cd6312557005f2a764a8baf7
7127 Author: Stefan Roese <sr@denx.de>
7128 Date:   Thu Oct 29 18:37:45 2009 +0100
7130     ppc4xx: Canyonlands: Change EBC bus config to drive always (no high-z)
7132     This patch fixes a problem only seen very occasionally on Canyonlands.
7133     The NOR flash interface (CFI driver) doesn't work reliably in all cases.
7134     Erasing and/or programming sometimes doesn't work. Sometimes with
7135     an error message, like "flash not erased" when trying to program an
7136     area that should have just been erased. And sometimes without any error
7137     messages. As mentioned above, this problem was only seen rarely and with
7138     some PLL configuration (CPU speed, EBC speed).
7140     Now I spotted this problem a few times, when running my Canyonlands with
7141     the following setup (chip_config):
7143     1000-nor         - NOR  CPU:1000 PLB: 200 OPB: 100 EBC: 100
7145     Changing the EBC configuration to not release the bus into high
7146     impedance state inbetween the transfers (ATC, DTC and CTC bits set to 1
7147     in EBC0_CFG) seems to fix this problem. I haven't seen any failure
7148     anymore with this patch applied.
7150     Signed-off-by: Stefan Roese <sr@denx.de>
7151     Cc: David Mitchell <dmitchell@amcc.com>
7152     Cc: Jeff Mann <MannJ@embeddedplanet.com>
7154 commit 56f9b39d1f5d3c51e4b19792adb65bd93a8b6fcb
7155 Author: Stefan Roese <sr@denx.de>
7156 Date:   Mon Nov 9 13:01:19 2009 +0100
7158     ppc4xx: Fix NAND booting targets after 4xx linker script consolidation
7160     Somehow I missed the NAND booting targets in the 4xx linker script
7161     consolidation patchset. This patch fixes this issue.
7163     Signed-off-by: Stefan Roese <sr@denx.de>
7165 commit 9a81c61249d8361ed57d81f496121f3eb9c0eee8
7166 Author: Stefan Roese <sr@denx.de>
7167 Date:   Thu Oct 29 16:54:52 2009 +0100
7169     ppc4xx: Remove duplicated is_pci_host() functions
7171     This patch introduces a weak default function for is_pci_host(),
7172     returning 1. This is the default behaviour, since most boards only
7173     implement PCI host functionality. This weak default can be overridden
7174     by a board specific version if needed.
7176     Signed-off-by: Stefan Roese <sr@denx.de>
7178 commit b0b867462c569e7accd6f78c942cbab028116ecf
7179 Author: Stefan Roese <sr@denx.de>
7180 Date:   Thu Oct 29 15:04:35 2009 +0100
7182     ppc4xx: Consolidate 4xx PCIe board specific configuration
7184     This patch consolidates the PPC4xx board specific PCIe configuration
7185     code. This way the duplicated code is removed. Boards can implement a
7186     special, non standard behaviour (e.g. number of PCIe slots, etc) by
7187     overriding the weak default functions.
7189     Signed-off-by: Stefan Roese <sr@denx.de>
7191 commit 25793f76bf9a7be59c9415ef0f78d034e8d53dae
7192 Author: Remy Bohmer <linux@bohmer.net>
7193 Date:   Thu Oct 29 12:29:37 2009 +0100
7195     ARM: Use Linux version for unaligned access code
7197     The asm-arm/unaligned.h includes linux/unaligned/access_ok.h
7198     This file is unsafe to be used on ARM, since it does an unaligned memory
7199     accesses which fails on ARM.
7201     Lookin at Linux the basic difference seems to be the header
7202     "include/asm-arm/unaligned.h". The Linux version of "unaligned.h"
7203     does *not* include "access_ok.h" at all. It includes "le_byteshift.h"
7204     and "be_byteshift.h" instead.
7206     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7207     Signed-off-by: Stefan Roese <sr@denx.de>
7208     --
7209      include/asm-arm/unaligned.h            |    3 -
7210      include/linux/unaligned/be_byteshift.h |   70 +++++++++++++++++++++++++++++++++
7211      include/linux/unaligned/le_byteshift.h |   70 +++++++++++++++++++++++++++++++++
7212      3 files changed, 142 insertions(+), 1 deletion(-)
7213      create mode 100644 include/linux/unaligned/be_byteshift.h
7214      create mode 100644 include/linux/unaligned/le_byteshift.h
7216 commit 6d6e7c53d5c75e5e24841c5506f4ed9d82adee09
7217 Author: Kumar Gala <galak@kernel.crashing.org>
7218 Date:   Wed Nov 4 18:02:10 2009 -0600
7220     ppc/85xx: Fix inclusion of 83xx immap in 85xx builds
7222     The nand_boot_fsl_elbc.c is shared between 83xx & 85xx however we should
7223     not be including the immap_83xx.h when building 85xx.  We can just get
7224     this all from common.h
7226     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7228 commit 107b579c75256212d4bf8b99ee8d68e0078f3646
7229 Author: Becky Bruce <beckyb@kernel.crashing.org>
7230 Date:   Wed Nov 4 17:34:04 2009 -0600
7232     86xx: Remove redundant code in initdram
7234     The same code exists both inside an #ifdef and outside of it.
7235     Remove the extra code for all the 86xx boards.
7237     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
7238     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7240 commit 715d8f7608f77c93f1807a032644893fd5b6d08b
7241 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
7242 Date:   Mon Nov 2 09:05:49 2009 -0600
7244     fsl_pci_init_port end-point initialization is broken
7246     commit 70ed869e broke fsl pcie end-point initialization.
7247     Returning 0 is not correct.  The function must return the first free
7248     bus number for the next controller.
7250     fsl_pci_init() must still be called and a bus allocated even if the
7251     controller is an end-point.
7253     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
7254     Acked-by: Vivek Mahajan <vivek.mahajan@freescale.com>
7255     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7257 commit 01471d538fb163f472a769f21267d7676c91267c
7258 Author: Kumar Gala <galak@kernel.crashing.org>
7259 Date:   Wed Nov 4 01:29:04 2009 -0600
7261     Revert "ppc/85xx/pci: fsl_pci_init: pcie agent mode support"
7263     This reverts commit 70ed869ea5f6b1d13d7b140c83ec0dcd8a127ddc.
7265     There isn't any need to modify the API for fsl_pci_init_port to pass the
7266     status of host/agent(end-point) status.  We can determine that
7267     internally to fsl_pci_init_port.  Revert the patch that makes the API
7268     change.
7270     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7272 commit 2cd95a25cb0ee8218b271d23d64fb3f719ac5390
7273 Author: Stefan Roese <sr@denx.de>
7274 Date:   Tue Oct 27 16:20:05 2009 +0100
7276     ppc4xx: Remove board specific linker scripts from most PPC4xx boards
7278     All these linker scripts can be removed since the new common ppc4xx
7279     linker script should be able to handle all of those boards.
7281     Please test and report problems. Thanks.
7283     Signed-off-by: Stefan Roese <sr@denx.de>
7285 commit 4649913ea5f440d756d150a6fdf2fb2e8ecb75fd
7286 Author: Stefan Roese <sr@denx.de>
7287 Date:   Tue Oct 27 16:11:26 2009 +0100
7289     ppc4xx: Add common ppc4xx linker script
7291     This linker script can be used by all PPC4xx platforms. It works for
7292     PPC405 and PPC440 platforms. Boards which need a board specific linker
7293     script can override this default linker script in board/*/config.mk.
7295     Signed-off-by: Stefan Roese <sr@denx.de>
7297 commit b1245dd3c6409c743f6c2768d00e909a4c8cc4ea
7298 Author: Stefan Roese <sr@denx.de>
7299 Date:   Tue Oct 27 16:16:13 2009 +0100
7301     ppc4xx: Add custom linker script to board/*/config.mk
7303     These boards have special linker scripts right now. We can't use the
7304     common 4xx linker script here. So overrride the linker script (LDSCRIPT)
7305     in board/*/config.mk and choose the board specific version.
7307     Signed-off-by: Stefan Roese <sr@denx.de>
7309 commit ceaa62a6f0237a8ddd2a5f659e6535fcd054332f
7310 Author: Stefan Roese <sr@denx.de>
7311 Date:   Tue Oct 27 15:57:24 2009 +0100
7313     ppc4xx: Fix problems in some ppc4xx board Makefiles
7315     Some 4xx Makefiles didn't add $(SOBJ) to their board library. This was
7316     no till now problem, since those boards included this object (init.o
7317     most of the time) directly from their linker scripts. This patch clean
7318     this up, so that all objects are now collected in the board library. This
7319     is in preparation for the upcoming PPC4xx linker script consolidation.
7321     Signed-off-by: Stefan Roese <sr@denx.de>
7323 commit a0ff1f129a0e1a466e4f8568fce12b7b84578e4c
7324 Author: Stefan Roese <sr@denx.de>
7325 Date:   Tue Oct 27 11:20:53 2009 +0100
7327     ppc4xx: sc3: Remove unreferenced external declarations from sc3.h
7329     Signed-off-by: Stefan Roese <sr@denx.de>
7330     Acked-by: Heiko Schocher <hs@denx.de>
7332 commit 7ec1fedda6ac551c67f2214ced94e4b49b6680e4
7333 Author: Stefan Roese <sr@denx.de>
7334 Date:   Tue Oct 27 11:46:23 2009 +0100
7336     mkconfig: Create board directory (CONFIG_BOARDDIR) in include/config.h
7338     This patch extends the mkconfig script to automatically create a define
7339     for the board directory in include/config.h:
7341     #define CONFIG_BOARDDIR board/amcc/canyonlands
7343     This is needed for the upcoming PPC4xx linker script consolidation,
7344     where the PPC440 platforms need to include a board specific file in
7345     the common linker script.
7347     Signed-off-by: Stefan Roese <sr@denx.de>
7349 commit ff88229549e08fdd3f9127c1cc4db11a3576250f
7350 Author: Dave Liu <daveliu@freescale.com>
7351 Date:   Sat Oct 31 07:59:55 2009 +0800
7353     ppc/85xx: Fix misc L2 cache enabling bug
7355     We need loop-check the flash clear lock and enable bit for L2 cache.
7357     Signed-off-by: Dave Liu <daveliu@freescale.com>
7358     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7360 commit cd12f615e4dd1dd24caab93f4157894783c6c1c0
7361 Author: Wolfgang Grandegger <wg@denx.de>
7362 Date:   Fri Oct 23 12:03:16 2009 +0200
7364     mpc52xx: add support for the IPEK01 board
7366     This patch adds support for the board IPEK01 based on the MPC5200.
7367     The Futjitsu Lime graphics controller is configured in 16 bpp mode.
7369     Signed-off-by: Wolfgang Grandegger <wg@denx.de>
7371 commit 229b6dce675c729ee0ea2d7b61fbcda89b23b6b8
7372 Author: Wolfgang Grandegger <wg@denx.de>
7373 Date:   Fri Oct 23 12:03:15 2009 +0200
7375     video: mb862xx: add option VIDEO_FB_16BPP_WORD_SWAP for IPEK01
7377     In 16 bpp mode, the new IPEK01 board only requires swapping of D16 words
7378     for D32 accesses due to the diffferent connecting to the GDC bus. This
7379     patch introduces the configuration option VIDEO_FB_16BPP_WORD_SWAP,
7380     which should be set for all board using the mb862xx in 16 bpp mode. For
7381     the IPEK01, VIDEO_FB_16BPP_PIXEL_SWAP should not be set.
7383     Signed-off-by: Wolfgang Grandegger <wg@denx.de>
7385 commit 5d16ca87100ea58c93c46b9f0264981eaed49568
7386 Author: Anatolij Gustschin <agust@denx.de>
7387 Date:   Fri Oct 23 12:03:14 2009 +0200
7389     video: mb862xx: add option CONFIG_VIDEO_MB862xx_ACCEL for 32bpp mode
7391     The new IPEK01 board can use the 32 bpp mode for the Lime graphics
7392     controller. For this mode, video accelaration does not work. This patch
7393     makes the accelaration configurable via CONFIG_VIDEO_MB862xx_ACCEL,
7394     which is enabled for the lwmon5 and the socrates board for backward
7395     compatibility.
7397     Signed-off-by: Anatolij Gustschin <agust@denx.de>
7398     Signed-off-by: Wolfgang Grandegger <wg@denx.de>
7400 commit c28d3bbe963f4c57937d6fdc1dd63cd3562c147c
7401 Author: Wolfgang Grandegger <wg@denx.de>
7402 Date:   Fri Oct 23 12:03:13 2009 +0200
7404     video: mb862xx: improve board-specific Lime configuration
7406     To avoid board-specific code accessing the mb862xx registers directly,
7407     the public function mb862xx_probe() has been introduced. Furthermore,
7408     the "Change of Clock Frequency" and "Set Memory I/F Mode" registers
7409     are now defined by CONFIG_SYS_MB862xx_CCF and CONFIG_SYS_MB862xx__MMR,
7410     respectively. The BSPs for the socrates and lwmon5 boards have been
7411     adapted accordingly.
7413     Signed-off-by: Wolfgang Grandegger <wg@denx.de>
7415 commit 08ea550eef310e9d59d83f3cfd57a902373bf17f
7416 Author: Valentin Yakovenkov <yakovenkov@niistt.ru>
7417 Date:   Mon Oct 26 18:49:06 2009 -0400
7419     new PCA9564 i2c bridge driver
7421     Signed-off-by: Valentin Yakovenkov <yakovenkov@niistt.ru>
7422     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7424 commit 08a1c6258c2a04cead33eac50d96ea89979dcb94
7425 Author: Mike Frysinger <vapier@gentoo.org>
7426 Date:   Wed Oct 14 19:27:27 2009 -0400
7428     Blackfin: TWI/I2C: implement bus speed get/set functions
7430     While we're here, improve the speed calculation a bit to match the HRM.
7432     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7434 commit 3814ea4f0002536ac592480b2cdafa319a16e329
7435 Author: Mike Frysinger <vapier@gentoo.org>
7436 Date:   Wed Oct 14 19:27:26 2009 -0400
7438     Blackfin: TWI/I2C: add timeout to transfer
7440     The current transfer code relies on ctrlc() to abort transfers, but this
7441     requires user interactivity.  Naturalize the process with a timeout.
7443     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7445 commit 59434fe243962758742af5cb8e2ced976e17c302
7446 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7447 Date:   Fri Oct 30 10:16:27 2009 +0900
7449     sh: Update lowlevel_init.S of espt-giga
7451     There was the point that did not use write macro.
7452     Change to write macro.
7454     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7456 commit f1cae1969d9e971fb72827a5731ce7e752464aa2
7457 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7458 Date:   Fri Oct 30 10:01:25 2009 +0900
7460     sh: Move some defs to convince 'pcrel too far'
7462     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7463     Signed-off-by: Takashi Yoshii <yoshii.takashi@gmail.com>
7465 commit 0f9eaf4b323ea0ca95944b84c7465b81ba575514
7466 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7467 Date:   Thu Oct 15 13:36:34 2009 +0900
7469     sh: Remove malloc_bin_reloc from lib_sh, lib_nios2 and lib_nios.
7471     By "arm/microblaze/nios/nios2/sh: Remove relocation fixups"
7472     (commit: 0630535e2d062dd73c1ceca5c6125c86d1127a49", doesn't need
7473     malloc_bin_reloc function. This commit remove this.
7475     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7477 commit 0775437293a6963cb21244dfae6978cbf67c6bfe
7478 Author: Ben Warren <biggerbadderben@gmail.com>
7479 Date:   Wed Oct 21 21:53:39 2009 -0700
7481     Fix DM9000 MAC address handling
7483     Proper behavior is to pull MAC address from NVRAM in the initialization() an
7484     stuff it in dev->address, then program the device from dev->address in
7485     the init() function.
7487     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7489 commit 98d92d8c9f4021629a45261ad5ec3f3595f3a27a
7490 Author: Wolfgang Denk <wd@denx.de>
7491 Date:   Wed Oct 28 22:07:56 2009 +0100
7493     sbc8349: fix incorrect comment
7495     The comment for the BR0_PRELIM port size initialization incorrectly
7496     stated 32 bit, while it's actually 16 bit. The code is correct.
7498     Reported-by: Guenter Koellner <guenter.koellner@nsn.com>
7499     Signed-off-by: Wolfgang Denk <wd@denx.de>
7501 commit a38f85e180a30b6225808828ded1017b1a5418c6
7502 Author: Sandeep Paulraj <s-paulraj@ti.com>
7503 Date:   Wed Oct 28 11:05:03 2009 -0400
7505     Fix Compliation warning for TNY-A9260 and TNY-A9G20
7507     The patch fixes a compilation warning by defining
7508     CONFIG_SYS_64BIT_VSPRINTF in the config file
7510     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
7512 commit 264e42ee54f1d322805d9068168fd362b413fd09
7513 Author: Sandeep Paulraj <s-paulraj@ti.com>
7514 Date:   Wed Oct 28 11:04:53 2009 -0400
7516     Fix Compliation warning for SBC35-A9G20 board
7518     The patch fixes a compilation warning by defining
7519     CONFIG_SYS_64BIT_VSPRINTF in the config file
7521     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
7523 commit 353462f6ff9769091fb644d44d8025f20a4192d9
7524 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
7525 Date:   Wed Oct 28 09:37:33 2009 -0500
7527     galaxy5200: Add default environment variables
7529     Extend bootdelay to 10 seconds.  Set boot retry time to 120 seconds and use
7530     reset to retry.  Define default bootcommand and bootargs for production.
7532     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
7534 commit fa36ae790eb10ce70935f9a78f07703719dca422
7535 Author: Stefan Roese <sr@denx.de>
7536 Date:   Tue Oct 27 15:15:55 2009 +0100
7538     cfi: Add weak default function for flash_cmd_reset()
7540     Currently the CFI driver issues both AMD and Intel reset commands.
7541     This is because the driver doesn't know yet which chips are connected.
7542     This dual reset seems to cause problems with the M29W128G chips as
7543     reported by Richard Retanubun. This patch now introduces a weak default
7544     function for the CFI reset command, still with both resets. This can
7545     be overridden by a board specific version if necessary.
7547     Signed-off-by: Stefan Roese <sr@denx.de>
7548     Cc: Richard Retanubun <RichardRetanubun@ruggedcom.com>
7550 commit 4946775c6db52dba28f72ba3525764b54f1d4593
7551 Author: Wolfgang Denk <wd@denx.de>
7552 Date:   Wed Oct 28 00:49:47 2009 +0100
7554     Coding Style cleanup; update CHANGELOG, prepare -rc1
7556     Signed-off-by: Wolfgang Denk <wd@denx.de>
7558 commit 246c69225c7b962d5c93e92282b78ca9fc5fefee
7559 Author: Peter Tyser <ptyser@xes-inc.com>
7560 Date:   Sun Oct 25 15:12:56 2009 -0500
7562     Add 'editenv' command
7564     The editenv command can be used to edit an environment variable.
7565     Editing an environment variable is useful when one wants to tweak an
7566     existing variable, for example fix a typo or change the baudrate in the
7567     'bootargs' environment variable.
7569     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7571 commit b0fa8e50632a628766db23f5c884ec63f1469552
7572 Author: Peter Tyser <ptyser@xes-inc.com>
7573 Date:   Sun Oct 25 15:12:55 2009 -0500
7575     setenv(): Delete 0-length environment variables
7577     Previously setenv() would only delete an environment variable if it
7578     was passed a NULL string pointer as a value.  It should also delete an
7579     environment variable when it encounters a valid string pointer of
7580     0-length.
7582     This change/fix is generally useful and is necessary for the upcoming
7583     "editenv" command.
7585     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7587 commit ecc5500ee487170d8af6ff893fd1e0082380a01a
7588 Author: Peter Tyser <ptyser@xes-inc.com>
7589 Date:   Sun Oct 25 15:12:54 2009 -0500
7591     readline(): Add ability to modify a string buffer
7593     If the 'buf' parameter is a non-0-length string, its contents will be
7594     edited.  Previously, the initial contents of 'buf' were ignored and the
7595     user entered its contents from scratch.
7597     This change is necessary to support the upcoming "editenv" command but
7598     could also be used for future commands which require a user to modify
7599     an existing string.
7601     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7603 commit f923943843cd617d681387e7fe81a48060cc6401
7604 Author: Peter Tyser <ptyser@xes-inc.com>
7605 Date:   Sun Oct 25 15:12:53 2009 -0500
7607     cread_line(): Remove unused variables
7609     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7611 commit e491a71e578e93bd3b2f8f20d8ef8f111c98010d
7612 Author: Peter Tyser <ptyser@xes-inc.com>
7613 Date:   Sun Oct 25 15:12:52 2009 -0500
7615     Check for NULL prompt in readline_into_buffer()
7617     Previously, passing readline() or readline_into_buffer() a NULL 'prompt'
7618     parameter would result in puts() printing garbage when
7619     CONFIG_CMDLINE_EDITING was enabled.
7621     Note that no board currently triggers this bug.  Enabling
7622     CONFIG_CMDLINE_EDITING on some boards (eg bab7xx) would result in
7623     the bug appearing.  This change is only intended to prevent someone
7624     from running into this issue in the future.
7626     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7628 commit 16d1c10783660f3fdbc3c19141f42f3b0d1834d3
7629 Author: Wolfgang Denk <wd@denx.de>
7630 Date:   Sun Oct 25 23:00:09 2009 +0100
7632     drivers/net/phy/miiphybb.c: fix warning: no newline at end of file
7634     Add missing newline.
7636     Signed-off-by: Wolfgang Denk <wd@denx.de>
7637     Cc: Luigi Mantellini <luigi.mantellini@idf-hit.com>
7638     Cc: Ben Warren <biggerbadderben@gmail.com>
7640 commit a747a7f31059b9069e97c78bba5496409c33aa05
7641 Author: Wolfgang Denk <wd@denx.de>
7642 Date:   Tue Oct 27 00:03:32 2009 +0100
7644     Revert "env: only build env_embedded and envcrc when needed"
7646     Breaks building on many boards, and no really clean fix available yet.
7648     This reverts commit 6dab6add2d8ee80905234b326abc3de11be1d178.
7650 commit 3fca80375981fe83d4674a0267183b469a1ea7ff
7651 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7652 Date:   Thu Oct 15 17:47:16 2009 +0400
7654     mpc85xx: Configure QE USB for MPC8569E-MDS boards
7656     Setup QE pin multiplexing for USB function, configure needed BCSRs
7657     and add some fdt fixups.
7659     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7660     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7662 commit 14809b6c21c89dd65abaf3fea7627fb5ea0f78a3
7663 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7664 Date:   Thu Oct 15 17:47:13 2009 +0400
7666     mpc85xx: Configure QE UART for MPC8569E-MDS boards
7668     To make QE UART usable by Linux we should setup pin multiplexing
7669     and turn UCC2 Ethernet node into UCC2 QE UART node.
7671     Also, QE UART is mutually exclusive with UART0, so we can't enable
7672     it if eSDHC is in 4-bits mode on pilot boards, or if it's a prototype
7673     board with eSDHC in 1- or 4-bits mode.
7675     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7676     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7678 commit 70d665b1d230b9575a647948e8db3da1e6743e5c
7679 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7680 Date:   Thu Oct 15 17:47:11 2009 +0400
7682     mpc85xx: Setup QE pinmux for SPI Flash on MPC8569E-MDS boards
7684     SPI Flash (M25P40) is connected to the SPI1 bus, we need a few
7685     qe_iop entries to actually enable SPI1 on these boards.
7687     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7688     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7690 commit 65dec3b4599a17e83ec69dfd059e4ea1e795ef37
7691 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7692 Date:   Thu Oct 15 17:47:09 2009 +0400
7694     mpc85xx: Setup SRIO memory region LAW for MPC8569E-MDS boards
7696     This patch sets memory window for Serial RapidIO on MPC8569E-MDS
7697     boards.
7699     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7700     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7702 commit a29155e12286cc5ec2df72c1cab28e3659bfdad5
7703 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7704 Date:   Thu Oct 15 17:47:08 2009 +0400
7706     mpc85xx: Add eLBC NAND support for MPC8569E-MDS boards
7708     Simply add some defines, and adjust TLBe setup to include some
7709     space for eLBC NAND.
7711     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7712     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7714 commit 7f52ed5ef1b490da282ace3316be381a6abf96a5
7715 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7716 Date:   Thu Oct 15 17:47:06 2009 +0400
7718     mpc85xx: Add eSDHC support for MPC8569E-MDS boards
7720     eSDHC is mutually exlusive with UART0 (in 4-bits mode) and I2C2
7721     (in 1-bit mode). When eSDHC is used, we should switch u-boot console to
7722     UART1, and make the proper device-tree fixups.
7724     Because of an erratum in prototype boards it is impossible to use eSDHC
7725     without disabling UART0 (which makes it quite easy to 'brick' the board
7726     by simply issung 'setenv hwconfig esdhc', and not able to interact with
7727     U-Boot anylonger).
7729     So, but default we assume that the board is a prototype, which is a most
7730     safe assumption. There is no way to determine board revision from a
7731     register, so we use hwconfig.
7733     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7734     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7736 commit 48618126f78f05042dae428811809b594f747eb9
7737 Author: Peter Tyser <ptyser@xes-inc.com>
7738 Date:   Fri Oct 23 15:55:48 2009 -0500
7740     xpedite5370: Enable multi-core support
7742     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7743     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7745 commit 5ccd29c3679b3669b0bde5c501c1aa0f325a7acb
7746 Author: Peter Tyser <ptyser@xes-inc.com>
7747 Date:   Fri Oct 23 15:55:47 2009 -0500
7749     85xx: MP Boot Page Translation update
7751     This change has 3 goals:
7752     - Have secondary cores be released into spin loops at their 'true'
7753       address in SDRAM.  Previously, secondary cores were put into spin
7754       loops in the 0xfffffxxx address range which required that boot page
7755       translation was always enabled while cores were in their spin loops.
7757     - Allow the TLB window that the primary core uses to access the
7758       secondary cores boot page to be placed at any address.  Previously, a
7759       TLB window at 0xfffff000 was always used to access the seconary cores'
7760       boot page.  This TLB address requirement overlapped with other
7761       peripherals on some boards (eg XPedite5370).  By default, the boot
7762       page TLB will still use the 0xfffffxxx address range, but this can be
7763       overridden on a board-by-board basis by defining a custom
7764       CONFIG_BPTR_VIRT_ADDR.  Note that the TLB used to map the boot page
7765       remains in use while U-Boot executes.  Previously it was only
7766       temporarily used, then restored to its initial value.
7768     - Allow Boot Page Translation to be disabled on bootup.  Previously,
7769       Boot Page Translation was always left enabled after secondary cores
7770       were brought out of reset.  This caused the 0xfffffxxx address range
7771       to somewhat "magically" be translated to an address in SDRAM.  Some
7772       boards may not want this oddity in their memory map, so defining
7773       CONFIG_MPC8xxx_DISABLE_BPTR will turn off Boot Page Translation after
7774       the secondary cores are initialized.
7776     These changes are only applicable to 85xx boards with CONFIG_MP defined.
7778     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7779     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7781 commit 70ed869ea5f6b1d13d7b140c83ec0dcd8a127ddc
7782 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
7783 Date:   Tue Oct 27 12:18:55 2009 +0530
7785     ppc/85xx/pci: fsl_pci_init: pcie agent mode support
7787     Originally written by Jason Jin and Mingkai Hu for mpc8536.
7789     When QorIQ based board is configured as a PCIe agent, then unlock/enable
7790     inbound PCI configuration cycles and init a 4K inbound memory window;
7791     so that a PCIe host can access the PCIe agents SDRAM at address 0x0
7793     * Supported in fsl_pci_init_port() after adding pcie_ep as a param
7794     * Revamped copyright in drivers/pci/fsl_pci_init.c
7795     * Mods in 85xx based board specific pci init after this change
7797     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
7798     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7800 commit 273a28ad9ef59dcfcd4c056ec1f61f1e0896cfaa
7801 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
7802 Date:   Tue Oct 27 09:36:38 2009 +0530
7804     85xx/p1_p2_rdb: Fixing DDR configuration for 800MHz data rate
7806     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
7807     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7809 commit 924024c396761c267b948f38d78e9905f2036501
7810 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
7811 Date:   Tue Oct 27 09:26:55 2009 +0530
7813     85xx/p1_p2rdb: Fix crash while configuring 32 bit DDR i/f for P1020RDB.
7815     The data being modified was in NOR flash which caused the crash.
7817     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
7818     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7820 commit 2c0c58b92dbb68007061bdc0edd23bdf142efebf
7821 Author: Sergey Mironov <ierton@gmail.com>
7822 Date:   Wed Sep 23 16:47:38 2009 +0400
7824     Fix bug in jumptable call stubs for SPARC.
7826     Signed-off-by: Sergey Mironov <ierton@gmail.com>
7827     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
7829 commit 3e303f748cf57fb23e8ec95ab7eac0074be50e2b
7830 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7831 Date:   Thu Oct 15 17:47:04 2009 +0400
7833     fdt_support: Add multi-serial support for stdout fixup
7835     Currently fdt_fixup_stdout() is using hard-coded CONFIG_CONS_INDEX
7836     constant. With multi-serial support, the CONS_INDEX may no longer
7837     represent actual console, so we should try to extract port number
7838     from the current stdio device name instead of always hard-coding the
7839     constant value.
7841     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7842     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
7843     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7845 commit da0e5f7ee828f246d85997486fff308837069453
7846 Author: Leon Woestenberg <leon.woestenberg@gmail.com>
7847 Date:   Mon Oct 26 10:03:32 2009 +0100
7849     ppc/85xx: Fix crashes due to generation of SPE instruction
7851     U-Boot crashed on the last instruction:
7853     int parse_stream_outer(struct in_str *inp, int flag)
7854     {
7855     effa4784:       94 21 ff 38     stwu    r1,-200(r1)
7856     effa4788:       7c 08 02 a6     mflr    r0
7857     effa478c:       42 9f 00 05     bcl-    20,4*cr7+so,effa4790 <parse_stream_outer+0xc>
7858     effa4790:       7d 80 00 26     mfcr    r12
7859     effa4794:       13 c1 b3 21     evstdd  r30,176(r1)
7861     ...which is a  SPE instruction, although -mno-spe was used.
7863     tmp/cross/ppce500v2/bin/powerpc-angstrom-linux-gnuspe-gcc --version
7864     powerpc-angstrom-linux-gnuspe-gcc (GCC) 4.3.3
7866     Seems to be a known issue (since 2008-04?!)
7868     Googled some, turns out this patch/workaround works for me on MPC8536DS.
7870     See http://gcc.gnu.org/ml/gcc-patches/2008-04/msg00311.html for more info
7872     Signed-off-by: Leon Woestenberg <leon@sidebranch.com>
7873     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7875 commit 654ea1f3184235694306ddc5874baa27ad3018fe
7876 Author: Dave Liu <daveliu@freescale.com>
7877 Date:   Thu Oct 22 00:10:23 2009 -0500
7879     ppc/85xx: Make L2 support more robust
7881     According the user manual, we need loop-check the L2 enable bit set.
7883     Signed-off-by: Dave Liu <daveliu@freescale.com>
7884     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7886 commit 613ad28c3da4c7fc6336ef9d94993b25a5d0586e
7887 Author: Kumar Gala <galak@kernel.crashing.org>
7888 Date:   Mon Oct 26 21:21:25 2009 -0500
7890     ppc/85xx: Fix compiler warning in nand_spl/.../p1_p2_rdb/nand_boot.c
7892     nand_boot.c: In function 'board_init_f':
7893     nand_boot.c:44: warning: 'sys_clk' may be used uninitialized in this function
7895     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7897 commit e8967d96a0e8d09d91a3b7bd292746996dd8e7ac
7898 Author: Kumar Gala <galak@kernel.crashing.org>
7899 Date:   Mon Oct 26 21:18:33 2009 -0500
7901     ppc/85xx: Fix building NAND_SPL out of tree
7903     We need to source files to exist in the O=<FOO> nand_spl dir when
7904     we build out of tree.
7906     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7908 commit f3ee25859e3920ee7c7cc519a3e6f60d70d7a53f
7909 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
7910 Date:   Fri Oct 23 10:52:38 2009 +0200
7912     License cleanup: Fix license header for some esd display configurations
7914     These files were autogenerated by EPSON configuration tools.
7915     This patch replaces the autogenerated file headers by the GPL
7916     license notice.
7918     This change is done with the explicit permission
7919     of Epson Research & Development / IC Software Development.
7921     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
7923 commit 4166ee58d30ada7b298b9c941067f0341c2dccbe
7924 Author: Mike Frysinger <vapier@gentoo.org>
7925 Date:   Fri Oct 9 17:12:44 2009 -0400
7927     sf: add GPL-2 license info
7929     Some of the new spi flash files were missing explicit license lines.
7931     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7932     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7934 commit d535a493004fb701f131b132402a7704f9c9342d
7935 Author: Kumar Gala <galak@kernel.crashing.org>
7936 Date:   Wed Oct 21 23:29:51 2009 -0500
7938     fdt: Fix fdt padding issue for initrd mem_rsv
7940     Its possible that we end up with a device tree that happens to be a
7941     particular size that after we call fdt_resize() we don't have any
7942     space left for the initrd mem_rsv.
7944     Fix this be adding a second mem_rsv into the size calculation.  We
7945     had one to cover the fdt itself and we have the potential of adding
7946     a second for the initrd.
7948     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7949     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
7951 commit 4bc3d2afb380e78fdbb9c501d9a8da6d59eb178e
7952 Author: Steve Sakoman <sakoman@gmail.com>
7953 Date:   Tue Oct 20 18:21:18 2009 +0200
7955     ARM: OMAP3: Refactors the SM911x driver
7957     Move the test up in the function to not hang on systems without ethernet.
7959     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
7960     Acked-by: Ben Warren <biggerbadderben@gmail.com>
7962 commit f3807374787e4394efb767e2e8527887f57e51b8
7963 Author: Minkyu Kang <mk7.kang@samsung.com>
7964 Date:   Thu Oct 15 11:19:15 2009 +0900
7966     s5pc1xx: SMDKC100: fix compile warnings
7968     fix the following compile warnings
7969     warning: dereferencing type-punned pointer will break strict-aliasing rules
7971     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
7973 commit 8003c361deec3ee651451662efd05352f1abdd40
7974 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
7975 Date:   Tue Oct 6 08:44:22 2009 +0200
7977     arm926ejs: 8-byte align stack to avoid LDRD/STRD problems
7979     U-boot for Marvell Kirkwood boards no longer work after the EABI changes
7980     introduced in commit f772acf8a584067033eff1e231fcd1fb3a00d3d9. This
7981     turns out to be caused by a stack alignment issue. The armv5te
7982     instructions ldrd/strd instructions require 8-byte alignment to work
7983     properly (otherwise undefined behavior).
7985     Tested on an OpenRD base board, where both printouts and ubifs stuff now
7986     works.
7988     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
7990 commit e63e5904b48528f3f3cc98317df6fc62fab25bf9
7991 Author: Tom Rix <Tom.Rix@windriver.com>
7992 Date:   Sat Oct 17 12:41:06 2009 -0500
7994     TI OMAP3 SDP3430: Initial Support
7996     Start of support of
7997     Texas Instruments Software Development Platform(SDP)
7998     for OMAP3430 - SDP3430
8000     Highlights of this platform are:
8001     Flash Memory devices:
8002         Sibley NOR, Micron 8bit NAND and OneNAND
8003     Connectivity:
8004         3 UARTs and expanded 4 UART ports + IrDA
8005         Ethernet, USB
8006     Other peripherals:
8007         TWL5030 PMIC+Audio+Keypad
8008         VGA display
8009     Expansion ports:
8010         Memory devices plugin boards (PISMO)
8011         Connectivity board for GPS,WLAN etc.
8012     Completely configurable boot sequence and device mapping
8013     etc.
8015     Support default jumpering and:
8016      - UART1/ttyS0 console(legacy sdp3430 u-boot)
8017      - UART3/ttyS2 console (matching other boards,
8018                  and SDP HW docs)
8019      - Ethernet
8020      - mmc0
8021      - NOR boot
8023     Currently the UART1 is enabled by default.  for
8024     compatibility with other OMAP3 u-boot platforms,
8025     enable the #define of CONSOLE_J9.
8027     Conflicts:
8029         Makefile
8031     Fixed the conflict with smdkc100_config by moving omap_sdp3430_config
8032     to it is alphabetically sorted location above zoom1.
8034     Signed-off-by: David Brownell <david-b@pacbell.net>
8035     Signed-off-by: Nishanth Menon <nm@ti.com>
8036     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8038 commit a4474ff8629be5f28aefb8a9f48d4411d62fb0d2
8039 Author: Sandeep Paulraj <s-paulraj@ti.com>
8040 Date:   Tue Oct 13 19:35:11 2009 -0400
8042     TI DaVinci: Adding Copyright for DM365 EVM
8044     Forgot to add Copyright while submitting the patch.
8045     This patch adds the copyright.
8047     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8049 commit 11b0102218bbb50ac5c04f1521f2a22ed4e90cf1
8050 Author: Sandeep Paulraj <s-paulraj@ti.com>
8051 Date:   Tue Oct 13 12:32:32 2009 -0400
8053     TI DaVinci: Fix DM6467 EVM Compilation Warning
8055     Due to new TI boards being added to U-Boot, the hardware.h
8056     is getting very messy. The warning being fixed is due to
8057     the EMIF addresses being redefined.
8059     The long term solution(after 2009.11) to this is to
8060     have SOC specific header files.
8062     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8064 commit fac1ef4ba685606bf28349d18e050ea08b50e669
8065 Author: Sandeep Paulraj <s-paulraj@ti.com>
8066 Date:   Tue Oct 13 12:01:52 2009 -0400
8068     TI DaVinci: DM355 Leopard: Fix compilation warning
8070     We get a compliation warning when we enable the NAND driver
8071     for DM355 leopard. The waring we get is that we have
8072     an implicit declaration of davinci_nand_init.
8074     It is fixed by including the asm/arch/nand_defs.h header file
8076     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8078 commit f8a812aa656bc34622303a26fa5003d19c34aeed
8079 Author: Nishanth Menon <nm@ti.com>
8080 Date:   Tue Oct 13 12:49:55 2009 -0400
8082     TI OMAP3: make gpmc_config as const
8084     gpmc_config should not be a variant as it is board specific
8085     hence make it a const parameter
8087     Fixes issues identified by Dirk:
8088     - build issue for zoom2
8089     - warnings for all other OMAP3 platforms using nand/onenand etc
8091     Signed-off-by: Nishanth Menon <nm@ti.com>
8093 commit cfc25874624a328f53ad59b1206e2103f2e62d74
8094 Author: Stefan Roese <sr@denx.de>
8095 Date:   Mon Oct 19 16:19:36 2009 +0200
8097     ppc4xx: Sequoia: Add chip_config command
8099     This patch removes the Sequoia "bootstrap" command and replaces it
8100     with the now common command "chip_config".
8102     Please note that the patches with the dynamic PCI sync clock
8103     configuration have to be applied, before this one should go in.
8104     This is because Sequoia has 2 different bootstrap EEPROMs, and
8105     the old bootstrap command configured different values depending
8106     on the detected PCI async clock (33 vs. 66MHz). With the PCI sync
8107     clock patches, this is not necessary anymore. The PCI sync clock
8108     will be configured correctly on-the-fly now.
8110     Signed-off-by: Stefan Roese <sr@denx.de>
8112 commit c85b58397030e25e146ccf5085c86221c40c53b3
8113 Author: Stefan Roese <sr@denx.de>
8114 Date:   Mon Oct 19 14:14:08 2009 +0200
8116     ppc4xx: Yosemite/Yellowstone: Check and reconfigure the PCI sync clock
8118     This patch now uses the 440EP(x)/GR(x) function to check and dynamically
8119     reconfigure the PCI sync clock.
8121     Signed-off-by: Stefan Roese <sr@denx.de>
8123 commit 23c51a2d6393cd3be9eb62cb42d92138ff6db8a9
8124 Author: Stefan Roese <sr@denx.de>
8125 Date:   Mon Oct 19 14:10:50 2009 +0200
8127     ppc4xx: Sequoia/Rainer: Check and reconfigure the PCI sync clock
8129     This patch now uses the 440EP(x)/GR(x) function to check and dynamically
8130     reconfigure the PCI sync clock.
8132     Signed-off-by: Stefan Roese <sr@denx.de>
8134 commit 08c6a2628478ace808b3767db17e4148cac5a7fb
8135 Author: Stefan Roese <sr@denx.de>
8136 Date:   Mon Oct 19 14:44:11 2009 +0200
8138     ppc4xx: Print PCI synchronous clock frequency upon bootup
8140     Some 4xx variants (e.g. 440EP(x)/GR(x)) have an internal
8141     synchronous PCI clock. Knowledge about the currently configured
8142     value might be helpful. So let's print it out upon bootup.
8144     Signed-off-by: Stefan Roese <sr@denx.de>
8146 commit 5e47f9535f53fd4cc05f32fb6166870f976fbb4e
8147 Author: Stefan Roese <sr@denx.de>
8148 Date:   Mon Oct 19 14:06:23 2009 +0200
8150     ppc4xx: Add function to check and dynamically change PCI sync clock
8152     PPC440EP(x)/PPC440GR(x):
8153     In asynchronous PCI mode, the synchronous PCI clock must meet
8154     certain requirements. The following equation describes the
8155     relationship that must be maintained between the asynchronous PCI
8156     clock and synchronous PCI clock. Select an appropriate PCI:PLB
8157     ratio to maintain the relationship:
8159     AsyncPCIClk - 1MHz <= SyncPCIclock <= (2 * AsyncPCIClk) - 1MHz
8161     This patch now adds a function to check and reconfigure the sync
8162     PCI clock to meet this requirement. This is in preparation for
8163     some AMCC boards (Sequoia/Rainier and Yosemite/Yellowstone) using this
8164     function to not violate the PCI clocking rules.
8166     Signed-off-by: Stefan Roese <sr@denx.de>
8168 commit 92b8964bed0d1b779d9e26be4e16755b5c635415
8169 Author: Stefan Roese <sr@denx.de>
8170 Date:   Fri Oct 16 10:01:09 2009 +0200
8172     ppc4xx: Update flash size in reg property of the NOR flash node
8174     Till now only the ranges in the ebc node are updated with the values
8175     currently configured in the PPC4xx EBC controller. With this patch now
8176     the NOR flash size is updated in the device tree blob as well. This is
8177     done by scanning the compatible nodes "cfi-flash" and "jedec-flash"
8178     for the correct chip select number.
8180     This size fixup is enabled for all AMCC eval board right now. Other
8181     4xx boards may want to enable it as well, if this problem with multiple
8182     NOR FLASH sizes exists.
8184     Signed-off-by: Stefan Roese <sr@denx.de>
8185     Cc: Wolfgang Denk <wd@denx.de>
8187 commit 30d45c0d3ea2231f9131276ea113595959a0720e
8188 Author: Stefan Roese <sr@denx.de>
8189 Date:   Wed Oct 21 11:59:52 2009 +0200
8191     fdt: Add fdt_fixup_nor_flash_size() to fixup NOR FLASH size in dtb
8193     This function can be used to update the size in the "reg" property
8194     of the NOR FLASH device nodes. This is necessary for boards with
8195     non-fixed NOR FLASH sizes.
8197     Signed-off-by: Stefan Roese <sr@denx.de>
8198     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
8199     Acked-by: Wolfgang Denk <wd@denx.de>
8201 commit 76706cb86b1c76954ff5353db6757ab99cfd95fb
8202 Author: Wolfgang Denk <wd@denx.de>
8203 Date:   Tue Oct 20 23:12:13 2009 +0200
8205     cpu/ppc4xx/fdt.c: avoid strcpy() to constant string
8207     strcpy() was iused with the target address being a pointer to a
8208     constant string, which potentially is read-only. Use a (writable)
8209     array of characters instead.
8211     Signed-off-by: Wolfgang Denk <wd@denx.de>
8212     Signed-off-by: Stefan Roese <sr@denx.de>
8214 commit 0e1ac981194aa0d92eff0934442cec48a4f57834
8215 Author: Wolfgang Denk <wd@denx.de>
8216 Date:   Tue Oct 20 23:07:04 2009 +0200
8218     cpu/ppc4xx/fdt.c: avoid strcpy() to constant string
8220     strcpy() was iused with the target address being a pointer to a
8221     constant string, which potentially is read-only. Use a (writable)
8222     array of characters instead.
8224     Signed-off-by: Wolfgang Denk <wd@denx.de>
8226 commit c55096c084308c08bf8891c190f90bdc3a232394
8227 Author: Daniel Mack <daniel@caiaq.de>
8228 Date:   Wed Apr 8 13:23:38 2009 +0200
8230     smc911x: add support for LAN9220
8232     Signed-off-by: Daniel Mack <daniel@caiaq.de>
8233     Cc: Sascha Hauer <s.hauer@pengutronix.de>
8234     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8236 commit f67066b6b0740b826ed862615c5ab022aaf4779a
8237 Author: Mike Frysinger <vapier@gentoo.org>
8238 Date:   Sun Oct 18 20:43:14 2009 -0400
8240     envcrc: check return value of fwrite()
8242     Newer toolchains will often complain about unchecked fwrite():
8243         envcrc.c:117: warning: ignoring return value of `fwrite´, declared
8244                 with attribute warn_unused_result
8246     So check the return value to silence the warnings.
8248     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8250 commit efd988ebaa241bab265b1511052350207cb7aaa0
8251 Author: Wolfgang Denk <wd@denx.de>
8252 Date:   Mon Oct 19 09:18:57 2009 +0200
8254     mcc200: fix build error
8256     Fix compile error:
8257     include/configs/mcc200.h:401:6: error: #elif with no expression
8259     Signed-off-by: Wolfgang Denk <wd@denx.de>
8261 commit 4e0539d2696992a5e32643a0c831e870cfe9a036
8262 Author: Nishanth Menon <nm@ti.com>
8263 Date:   Tue Oct 13 12:47:39 2009 -0400
8265     OMAP3: fix warnings when NAND/ONENAND is not used
8267     Fix build warnings by putting specific used variables
8268     under required #ifdefs for removing:
8269     mem.c:227: warning: unused variable 'f_sec'
8270     mem.c:226: warning: unused variable 'f_off'
8271     mem.c:225: warning: unused variable 'size'
8272     mem.c:224: warning: unused variable 'base'
8273     mem.c:222: warning: unused variable 'gpmc_config'
8275     Signed-off-by: Nishanth Menon <nm@ti.com>
8277 commit 73db0c71da365a2d101878ae3aeb8ff3545a1828
8278 Author: Nishanth Menon <nm@ti.com>
8279 Date:   Tue Oct 13 12:47:24 2009 -0400
8281     OMAP3: export enable_gpmc_cs_config to board files
8283     Export enable_gpmc_cs_config into common header to
8284     prevent warning:
8286     warning: implicit declaration of function 'enable_gpmc_cs_config'
8288     Signed-off-by: Nishanth Menon <nm@ti.com>
8290 commit 96a27c6dc29abf11740632ecd8ccab607b209c5d
8291 Author: Tom Rix <Tom.Rix@windriver.com>
8292 Date:   Mon Oct 12 12:07:40 2009 -0400
8294     Zoom2 Fix serial gpmc setup
8296     The offset to the chip select is incorrect.
8298     The change 187af954cf7958c24efcf0fd62289bbdb4f1f24e,
8300     omap3: embedd gpmc_cs into gpmc config struct
8302     introduced a problem with the serial gpmc setup.
8304     This patch reverts the chip select to its previous value.
8306     The symptoms of this problem are that the Zoom2
8307     currently hangs.
8309     This was run tested on Zoom2.
8311     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8313 commit 64d945abe8cffbacdaeca5f63b9b84f895d2d9ab
8314 Author: Sandeep Paulraj <s-paulraj@ti.com>
8315 Date:   Sun Oct 11 09:10:27 2009 -0400
8317     TI DaVinci Sonata: Add Config option for 64 bit Support
8319     Adding the CONFIG_SYS_64BIT_VSPRINTF fot the DM644x based Sonata
8320     Without this option enabled while performing NAND operations we will get
8321     wrong diagnostic messages.
8322     Example if the MTD NAND driver find a bad block while erasing from
8323     a certain address, it will say bad block skipped at 0x00000000.
8325     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8327 commit 54aa603d2ce1d9374a1f5c6336362037ad2d8b51
8328 Author: Sandeep Paulraj <s-paulraj@ti.com>
8329 Date:   Sun Oct 11 09:14:58 2009 -0400
8331     TI DaVinci DVEVM: Add Config option for 64 bit Support
8333     Adding the CONFIG_SYS_64BIT_VSPRINTF in the DVEVM config.
8334     Without this option enabled while performing NAND operations we will get
8335     wrong diagnostic messages.
8336     Example if the MTD NAND driver find a bad block while erasing from
8337     a certain address, it will say bad block skipped at 0x00000000.
8339     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8341 commit b8d0aa0c78b8c0fa51acada3c486b81085924b53
8342 Author: Sandeep Paulraj <s-paulraj@ti.com>
8343 Date:   Sat Oct 10 10:19:20 2009 -0400
8345     TI DaVinci DM365: Add Config option for 64 bit Support
8347     Adding the CONFIG_SYS_64BIT_VSPRINTF in the DM365 EVM config.
8348     Without this option enabled while performing NAND operations we will get
8349     wrong diagnostic messages.
8350     Example if the MTD NAND driver find a bad block while erasing from
8351     a certain address, it will say bad block skipped at 0x00000000.
8353     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8355 commit 86a725b9c8b829c217be90e590f3ca2c91fa1dca
8356 Author: Sandeep Paulraj <s-paulraj@ti.com>
8357 Date:   Sat Oct 10 10:18:46 2009 -0400
8359     TI DaVinci DM355: Add Config option for 64 bit Support
8361     Adding the CONFIG_SYS_64BIT_VSPRINTF in the DM355 EVM config.
8362     Without this option enabled while performing NAND operations we will get
8363     wrong diagnostic messages.
8364     Example if the MTD NAND driver find a bad block while erasing from
8365     a certain address, it will say bad block skipped at 0x00000000.
8367     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8369 commit 9c44ddccb6602f620fc037974f3e4468ad8a7c0c
8370 Author: Sandeep Paulraj <s-paulraj@ti.com>
8371 Date:   Wed Sep 9 11:50:40 2009 -0400
8373     TI: OMAP3: Remove SZ_xx references
8375     This patch removes dependency on the sizes.h header file
8376     and removes all references to SZ_xx.
8378     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8380 commit 13d2cb988ff07addce6e10ab2cb8965a9dd23c63
8381 Author: Steve Sakoman <sakoman@gmail.com>
8382 Date:   Sat Oct 10 14:29:37 2009 -0400
8384     OMAP3: Update Overo and Beagle environment
8386     Update default environment to support new kernel DSS2 subsystem and
8387     simplify rootfs type and location changes.
8389     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
8390     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8392 commit c73607c5525c6957c815e64f7e865fdd3baffe98
8393 Author: Sandeep Paulraj <s-paulraj@ti.com>
8394 Date:   Sat Oct 10 13:46:26 2009 -0400
8396     TI DaVinci: Maintainer for DM355 and DM365 EVM
8398     Adding entries to the MAINTAINERS directory for the
8399     DM355 and DM365 EVM.
8401     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8403 commit 5df65cf56aeef9fdeab83a259c37aa7d23836dd3
8404 Author: Sandeep Paulraj <s-paulraj@ti.com>
8405 Date:   Sat Oct 10 13:37:10 2009 -0400
8407     TI: DaVinci: DM355 Leopard board support
8409     This patch adds support for the leopard board which is
8410     based on the DM355 SOC.
8412     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8414 commit 6ab176d7091d21960a1bd89fcb7fd87b9e91aca1
8415 Author: Sandeep Paulraj <s-paulraj@ti.com>
8416 Date:   Sat Oct 10 12:00:47 2009 -0400
8418     TI DaVinci DM646x: Adding initial support for DM6467 EVM
8420     This patch adds the initial support for DM6467 EVM.
8421     Other features like NET and NAND support will be added as follow up patches.
8423     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8425 commit d884f64a7b8482f6c9688600e0a4731fa5678e0c
8426 Author: Sandeep Paulraj <s-paulraj@ti.com>
8427 Date:   Thu Oct 1 20:22:09 2009 -0400
8429     TI DaVinci DM365: Fix Compilation warning for DM365 EVM
8431     This patch fixes a compilation warning while compiling
8432     the DM365 EVM.
8434     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8436 commit 6fe5e87be4b944edf428835210056e020c8bb794
8437 Author: Sandeep Paulraj <s-paulraj@ti.com>
8438 Date:   Thu Oct 1 20:21:13 2009 -0400
8440     TI DaVinci DM355: Fix Compilation warning for DM355 EVM
8442     This patch fixes a compilation warning while compiling
8443     the DM355 EVM.
8445     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8447 commit 513bbe1b1720682e6de0aba2d9db5e60f3a428bb
8448 Author: Eric Benard <eric@eukrea.com>
8449 Date:   Mon Oct 12 10:15:39 2009 +0200
8451     AT91 CPUAT91 Fix compiler warning
8453     This change fixes the compiler warning
8455     main.c: In function 'abortboot':
8456     main.c:122: warning: too few arguments for format
8458     Signed-off-by: Eric Benard <eric@eukrea.com>
8459     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8461 commit b1e81f701d044eee3884202b127d5d1f0668bdb9
8462 Author: Eric Benard <eric@eukrea.com>
8463 Date:   Mon Oct 12 10:15:40 2009 +0200
8465     AT91 CPU9260 CPU9G20 Fix compile warnings
8467     This change fixes the compiler warning
8469     nand_util.c:45:2: warning: #warning Please define CONFIG_SYS_64BIT_VSPRINTF
8470       for correct output!
8472     Signed-off-by: Eric Benard <eric@eukrea.com>
8473     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8475 commit 94d50c527a3cedb6a41fbe6773256cdd1855317f
8476 Author: Eric Benard <eric@eukrea.com>
8477 Date:   Mon Oct 12 10:08:20 2009 +0200
8479     AT91 CPU9260 Fix machine ID when using a CPU9G20.
8481     Signed-off-by: Eric Benard <eric@eukrea.com>
8482     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8484 commit 8c0a92c8f4cf399e873c2611939f3617983785a9
8485 Author: Alessandro Rubini <rubini@unipv.it>
8486 Date:   Sat Oct 10 11:51:26 2009 +0200
8488     lcd: remove '#if 0' 32-bit scroll, now memcpy does it
8490     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
8491     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
8493 commit e3ea948d4588e7efddbf0ee92147d93f827d7cea
8494 Author: Alessandro Rubini <rubini@unipv.it>
8495 Date:   Sat Oct 10 11:51:16 2009 +0200
8497     lib_generic memset: fill one word at a time if possible
8499     If the destination is aligned, fill ulong values until possible.
8500     Then fill remaining part by byte.
8502     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
8503     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
8504     Acked-by: Mike Frysinger <vapier@gentoo.org>
8506 commit ecd830b863e5c6ac5d804d3b3a92453a98d526fc
8507 Author: Alessandro Rubini <rubini@unipv.it>
8508 Date:   Sat Oct 10 11:51:05 2009 +0200
8510     lib_generic memcpy: copy one word at a time if possible
8512     If source and destination are aligned, this copies ulong values
8513     until possible, trailing part is copied by byte. Thanks for the details
8514     to Wolfgang Denk, Mike Frysinger, Peter Tyser, Chris Moore.
8516     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
8517     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
8518     Acked-by: Mike Frysinger <vapier@gentoo.org>
8520 commit 9c5586aa19bbedf290d2a663813404d2db87dfa5
8521 Author: Alessandro Rubini <rubini@unipv.it>
8522 Date:   Thu Oct 8 14:29:14 2009 +0200
8524     setenv: do console redirection even if previously unset
8526     If "stdout" is not previously set, doing "setenv stdout lcd" had no
8527     effect, since console redirection only worked if the environment
8528     variable was already set; the second time you run setenv it worked.
8529     Most default environments lack stdin/out/err definitions, so I'm sure
8530     I'm not alone with this problem.
8532     This patch simply moves a block of code out of a conditional, to do
8533     the same work even if the variable was previously unset.
8535     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
8536     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
8538 commit c9ee39972a7758e883b73c6c0e3c3a14cd5b2f43
8539 Author: Martha Stan <mmarx@silicontkx.com>
8540 Date:   Wed Oct 7 04:38:46 2009 -0400
8542     mpc512x: fix System Clock Control constants for USB1 & USB2
8544     Signer-off-by: Martha Stan <mmarx@silicontkx.com>
8546 commit 87b22b7787f397fc3daad570d711e478b1a7d253
8547 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
8548 Date:   Fri Oct 2 18:18:33 2009 -0400
8550     mem_mtest: fix error reporting, allow escape with ^C
8552     The basic memtest function tries to watch for ^C after each
8553     pattern pass as an escape mechanism, but if things are horribly
8554     wrong, we'll be stuck in an inner loop flooding the console with
8555     error messages and never check for ^C.  To make matters worse,
8556     if the user waits for all the error messages to complete, we
8557     then incorrectly report the test passed without errors.
8559     Adding a check for ^C after any error is printed will give
8560     the end user an escape mechanism from a console flood without
8561     slowing down the overall test speed on a slow processor.
8563     Also, the more extensive memtest quit after just a single error,
8564     which is inconsistent with the normal memtest, and not useful if
8565     if you are doing dynamic environmental impact testing, such as
8566     heating/cooling etc.
8568     Both tests now track the error count and report it properly
8569     at test completion.
8571     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
8572     Acked-by: Mike Frysinger <vapier@gentoo.org>
8574 commit 9f4a420663419dc13f08a0ce65b93033c6172c69
8575 Author: Mike Frysinger <vapier@gentoo.org>
8576 Date:   Thu Oct 1 12:11:54 2009 -0400
8578     new default shortcut to config & build a board
8580     The majority of the time that I build things in U-Boot, I want to just
8581     build for the board.  I don't make board config tweaks after selecting the
8582     board.  So add a new pattern rule that allows people to combine two steps
8583     in one go:
8584         `make foo_config && make` => `make foo`
8586     This shouldn't conflict with any existing make rules as the pattern rule
8587     is used only the rule doesn't already exist.
8589     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8591 commit 6dab6add2d8ee80905234b326abc3de11be1d178
8592 Author: Mike Frysinger <vapier@gentoo.org>
8593 Date:   Wed Sep 30 15:29:58 2009 -0400
8595     env: only build env_embedded and envcrc when needed
8597     The env code is protected by the ENV_IS_EMBEDDED define, so attempting to
8598     compile the code when this isn't defined is pointless.  Now that the env
8599     headers have unified around CONFIG_ENV_IS_EMBEDDED, convert the build
8600     system to only build the env objects when this is enabled.  And now that
8601     the env code is conditionally compiled, we can drop the source code checks.
8603     For people who want to extract the environment manually, add a new option
8604     CONFIG_BUILD_ENVCRC that only enables the envcrc utility.
8606     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8608 commit 78f4ca7976748159080c9d920d5eb542d1b32d4f
8609 Author: Daniel Mack <daniel@caiaq.de>
8610 Date:   Mon Sep 28 11:40:38 2009 +0200
8612     part_dos: check status flags of partitions
8614     Only read partitions which have 0x00 or 0x80 set in their status field.
8615     All others are invalid.
8617     Signed-off-by: Daniel Mack <daniel@caiaq.de>
8619 commit 45def0ab9d1dedcd2a73939aad8373f760498762
8620 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
8621 Date:   Fri Sep 25 17:47:43 2009 -0500
8623     galaxy5200: change cs1 configuration
8625     Correct the chip select configuration for the nand flash chip select.
8627     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
8629 commit 7936b51165b519a16ecf3db302fb88df8b8b3b3d
8630 Author: Niklaus Giger <niklaus.giger@netstal.com>
8631 Date:   Wed Sep 23 08:12:14 2009 +0200
8633     Cleanup: use constant
8635     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
8637 commit 7120c888101952b7e61b9e54bb42370904aa0e68
8638 Author: Kim Phillips <kim.phillips@freescale.com>
8639 Date:   Mon Oct 12 11:06:19 2009 -0500
8641     mpc83xx: mpc8313 - handle erratum IPIC1 (TSEC IRQ number swappage)
8643     mpc8313e erratum IPIC1 swapped TSEC interrupt ID numbers on rev. 1
8644     h/w (see AN3545).  The base device tree in use has rev. 1 ID numbers,
8645     so if on Rev. 2 (and higher) h/w, we fix them up here.
8647     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
8648     Reviewed-by: Roland Lezuo <roland.lezuo@chello.at>
8650 commit 91525c67153fcf2c19b2fc8d9c6376ac1a019f52
8651 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
8652 Date:   Mon Oct 12 23:55:39 2009 +0400
8654     mpc85xx: Fix booting on various boards
8656     commit 0e870980a64584a591af775bb9c9fe9450124df9 ("8xxx: Removed
8657     CONFIG_NUM_CPUS from 85xx/86xx") breaks U-Boot on various boards,
8658     namely the ones that call get_sys_info() from board_early_init_f().
8660     get_sys_info() calls cpu_numcores(), which depends on probecpu()
8661     being called before. But probecpu() is called after board_early_init_f(),
8662     and so cpu_numcores() returns random values, which in turn crashes
8663     get_sys_info().
8665     To fix the issue we place probecpu() before board_early_init_f()
8666     in an initialization sequence.
8668     Booting on the following boards should be revived now:
8669      mpc8540ads
8670      mpc8541cds
8671      mpc8548cds
8672      mpc8555cds
8673      mpc8560ads
8674      mpc8568mds
8675      mpc8569mds
8676      and maybe more.
8678     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
8679     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8681 commit 26df6aa9916443077139f8f008fbc5f414ba05e5
8682 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
8683 Date:   Fri Oct 2 18:48:07 2009 -0400
8685     mpc86xx: delete unused MPC86xx_DDR_SDRAM_CLK_CNTL define
8687     This is an orphaned legacy leftover that is just polluting
8688     the config file namespace.
8690     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
8691     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8693 commit fad15096e3b34927444ba5f6133742d40d78a425
8694 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
8695 Date:   Thu Oct 8 13:33:29 2009 +0530
8697     ppc/P1_P2_RDB: On-chip BootROM support
8699     On Chip BootROM support for P1 and P2 series RDB platforms.
8701     This patch is derived from latest On Chip BootROM support on MPC8536DS
8703     Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
8704     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8706 commit f7780ec977e545b83bc5068e0957d640f1d98f13
8707 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
8708 Date:   Thu Oct 8 13:33:18 2009 +0530
8710     ppc/P1_P2_RDB: NAND Boot Support
8712     NAND Boot support for P1 and P2 series RDB platforms.
8714     This patch is derived from NAND Boot support on MPC8536DS.
8716     Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
8717     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8719 commit d11823ca3cb551814ffcd926402c8bcf3a7eff35
8720 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
8721 Date:   Wed Oct 7 16:34:28 2009 -0400
8723     mpc8xxx: improve LAW error messages when setting up DDR
8725     When setting up the LAWs for the DDR, if there was an error,
8726     you got the not-so-helpful error text "ERROR" and nothing
8727     else.  Not only is it non-informative, but it is also
8728     pretty frustrating trying to grep for "ERROR" in the source.
8730     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
8731     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8733 commit a9946e3fc7089ddc6b7711a44e07a6b0827b79a7
8734 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
8735 Date:   Wed Sep 30 16:12:31 2009 -0400
8737     sbc8641d: fix LAW so board doesn't hang on DDR init
8739     All versions between now and since this commit:
8741       commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
8742       MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
8744     will fail to allow the SBC8641D to get past DDR init, because the
8745     LAW config was overlapping.  Eventually this board will do SPD
8746     EEPROM config, but for now this gets the board working again.
8748     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
8749     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8751 commit 3d1988ab47cc0e265272967e07d747ec600a44c9
8752 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
8753 Date:   Sat Oct 10 13:34:09 2009 +0900
8755     Clean-up of s3c24x0 nand driver
8757     This patch re-formats the arm920t s3c24x0 nand driver in preparation for changes
8758     to add support for the Embest SBC2440-II Board.
8760     The changes are as follows:
8761     - re-indent the code using Lindent
8762     - make sure register layouts are defined using a C struct
8763     - replace the upper-case typedef'ed C struct names with lower case
8764     non-typedef'ed ones
8765     - make sure registers are accessed using the proper accessor functions
8766     - run checkpatch.pl and fix any error reports
8768     It assumes the following patch has been applied first:
8769     - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
8770      - patches 1/4, 2/4 and 3/4 of this series
8772     Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
8773     any s3c2400 or s3c2410 boards but need this patch applying before I can submit
8774     patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
8775     smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
8776     board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
8777     errors were found.
8779     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
8780     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8782 commit eb0ae7f549b7142826a8bcdd2dc945fac9c36349
8783 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
8784 Date:   Sat Oct 10 13:33:11 2009 +0900
8786     Clean-up of s3c24x0 drivers excluding nand driver
8788     This patch re-formats the arm920t s3c24x0 driver files, excluding the nand
8789     driver, in preparation for changes to add support for the Embest SBC2440-II Board.
8791     The changes are as follows:
8792     - re-indent the code using Lindent
8793     - make sure register layouts are defined using a C struct
8794     - replace the upper-case typedef'ed C struct names with lower case
8795       non-typedef'ed ones
8796     - make sure registers are accessed using the proper accessor functions
8797     - run checkpatch.pl and fix any error reports
8799     It assumes the following patch has been applied first:
8800     - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
8801     - patches 1/4 and 2/4 of this series
8803     Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
8804     any s3c2400 or s3c2410 boards but need this patch applying before I can submit
8805     patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
8806     smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
8807     board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
8808     errors were found.
8810     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
8811     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8813 commit 8250d0bae84229abea397f6b474b3556b0f04e80
8814 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
8815 Date:   Sat Oct 10 13:32:01 2009 +0900
8817     Clean-up of s3c24x0 header files
8819     This patch re-formats the arm920t s3c24x0 header files in preparation for
8820     changes to add support for the Embest SBC2440-II Board.
8822     The changes are as follows:
8823     - re-indent the code using Lindent
8824     - make sure register layouts are defined using a C struct
8825     - replace the upper-case typedef'ed C struct names with lower case
8826     non-typedef'ed ones
8827     - make sure registers are accessed using the proper accessor functions
8828     - run checkpatch.pl and fix any error reports
8830     It assumes the following patch has been applied first:
8831     - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
8832     - patch 1/4 of this series
8834     Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
8835     any s3c2400 or s3c2410 boards but need this patch applying before I can submit
8836     patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
8837     smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
8838     board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
8839     errors were found.
8841     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
8842     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8844 commit d67cce2dda3a40c3bd90a6c6e129fbb26dd4cfab
8845 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
8846 Date:   Sat Oct 10 13:30:22 2009 +0900
8848     Clean-up of cpu_arm920t and cpu_arm920t_s3c24x0 code
8850     This patch re-formats the code in cpu/arm920t and cpu/arm920t/23c24x0 in
8851     preparation for changes to add support for the Embest SBC2440-II Board.
8853     The changes are as follows:
8854     - re-indent the code using Lindent
8855     - make sure register layouts are defined using a C struct
8856     - replace the upper-case typedef'ed C struct names with lower case
8857       non-typedef'ed ones
8858     - make sure registers are accessed using the proper accessor functions
8859     - run checkpatch.pl and fix any error reports
8861     It assumes the following patch has been applied first:
8862     - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
8864     Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
8865     any s3c2400 or s3c2410 boards but need this patch applying before I can submit
8866     patches for the SBC2440-II Board. Also, ran MAKEALL for all ARM9 targets and no
8867     new warnings or errors were found.
8869     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
8870     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8872 commit cd85662b345c0c2248fd7637f65bb2fbb4d53dd9
8873 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
8874 Date:   Sun Sep 6 00:33:13 2009 +0900
8876     CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards
8878     This sets CONFIG_SYS_HZ to 1000 for all boards that use the s3c2400 and
8879     s3c2410 cpu's which fixes various problems such as the timeouts in tftp being
8880     too short.
8882     Tested on an Embest SBC2440-II Board with local u-boot patches as I don't
8883     have any s3c2400 or s3c2410 boards but need this patch applying before I can
8884     submit patches for the SBC2440-II Board. Also, ran MAKEALL for all ARM9 targets
8885     and no new warnings or errors were found.
8887     It was originally submitted on 21/06/2009 but didn't get into the 2009.08
8888     release, and Jean-Pierre made one comment on the original patch (see
8889     http://lists.denx.de/pipermail/u-boot/2009-July/055470.html). I've made two
8890     changes to the original patch:
8891     - it's been re-based to the current release
8892     - I've re-named get_timer_raw() to get_ticks() in response to Jean-Pierre's comment
8894     This affects the sbc2410, smdk2400, smdk2410 and trab boards. I've copied it
8895     directly to the maintainers of all except the sbc2410 which doesn't have an
8896     entry in MAINTAINERS.
8898     Signed-off-by: Kevin Morfitt <kmorfitt@aselaptop-1.localdomain>
8899     Tested-by: Wolfgang Denk <wd@denx.de>
8900     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8902 commit 8bc4ee9e8213abe4031ea1720aa02fa98d4402ad
8903 Author: Minkyu Kang <mk7.kang@samsung.com>
8904 Date:   Thu Oct 1 17:20:40 2009 +0900
8906     s5pc1xx: add support SMDKC100 board
8908     Adds new board SMDKC100 that uses s5pc100 SoC
8910     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8911     Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
8913 commit dd2c9e6a3b67c8ff56694e515e6e3c7baddd8f52
8914 Author: Minkyu Kang <mk7.kang@samsung.com>
8915 Date:   Thu Oct 1 17:20:28 2009 +0900
8917     s5pc1xx: support serial driver
8919     This patch includes the serial driver for s5pc1xx.
8920     s5pc1xx uart driver needs own register setting and clock configuration.
8921     So, need to special driver.
8923     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8925 commit 4678d674f0cacc983dca7f6b9933cd8291c9797c
8926 Author: Minkyu Kang <mk7.kang@samsung.com>
8927 Date:   Thu Oct 1 17:20:08 2009 +0900
8929     s5pc1xx: support onenand driver
8931     This patch includes the onenand driver for s5pc100
8933     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8934     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
8936 commit 399e5ae0d0b2eb4663fc5784201968c07d45afac
8937 Author: Minkyu Kang <mk7.kang@samsung.com>
8938 Date:   Thu Oct 1 17:20:01 2009 +0900
8940     s5pc1xx: support Samsung s5pc1xx SoC
8942     This patch adds support for the Samsung s5pc100 and s5pc110
8943     SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor.
8945     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
8946     Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
8948 commit d087d19a994e741f0ce526124be117c90be482ae
8949 Author: Mike Frysinger <vapier@gentoo.org>
8950 Date:   Tue Oct 13 21:58:26 2009 -0400
8952     Blackfin: drop MAC display at boot
8954     The default Blackfin boot would display the MAC address for the first NIC,
8955     but this relies on the environment.  The current net multi stack no longer
8956     writes the default hardware settings to the environment, so most of the
8957     time the display shows all zeros.  This can be pretty confusing and really
8958     doesn't add anything useful, so just drop it.
8960     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8962 commit 1f003cf4738a199d99c818124784058526d2d40e
8963 Author: Mike Frysinger <vapier@gentoo.org>
8964 Date:   Fri Oct 9 02:24:33 2009 -0400
8966     Blackfin: reset watchdog in udelay()
8968     All arches apparently should reset the watchdog in their udelay loop as
8969     noted on the mailing list recently:
8971       > A comment in flash_status_check() suggests that udelay() is
8972       > expected to reset the watchdog, but I can't find any architecture
8973       > where it does.
8975       If this is missing in other architectures, it should be fixed at the
8976       root cause, i. e. in udelay() or in the respective support routines.
8978     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8980 commit 370ec734557d0b0f266e6d0953229ee12cae5edd
8981 Author: Mike Frysinger <vapier@gentoo.org>
8982 Date:   Fri Oct 9 02:22:11 2009 -0400
8984     Blackfin: Remove relocation fixups
8986     Blackfin pieces like commit 0630535e2d062dd73c1ceca5c6125c86d1127a49.
8988     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8990 commit a380279b2abe130c2d3d2c8de36f8ff98bc6b3b0
8991 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
8992 Date:   Tue Sep 29 08:03:12 2009 +0200
8994     at91: Update MEESC board support
8996     This patch implements several updates:
8997     -disable CONFIG_ENV_OVERWRITE
8998     -add new hardware style variants and set the arch numbers appropriate
8999     -pass the serial# and hardware revision to the kernel
9000     -removed unused macros from include/configs/meesc.h
9001     -fixed multiline comment style
9003     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
9005 commit 9df20ce211576aa7ac75710dcd8d0a6236abfd70
9006 Author: Simon Kagstrom <[simon.kagstrom@netinsight.net]>
9007 Date:   Thu Oct 1 19:41:50 2009 +0530
9009     arm: Correct build with CONFIG_SYS_HUSH_PARSER set
9011     FLAG_PARSE_SEMICOLON is not defined without hush.h, so include that.
9013     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
9014     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
9016 commit df3826262c0efd2baec4df23d44b3942af98f5a7
9017 Author: Olof Johansson <olof@lixom.net>
9018 Date:   Tue Sep 29 10:22:45 2009 -0400
9020     TI: OMAP3: Overo Tobi ethernet support
9022     Add setup for ethernet on Tobi, allowing kernel/ramdisk to be loaded
9023     over tftp.
9025     This also refactors the smc911x driver to allow for detecting when the
9026     chip is missing. I.e. the detect_chip() function is called earlier and
9027     will abort gracefully when the Chip ID read returns all 1's.
9029     Signed-off-by: Olof Johansson <olof@lixom.net>
9030     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
9031     Acked-by: Ben Warren <biggerbadderben@gmail.com>
9033 commit 2a6cc97b91997ae485312ac91ffbcea6a89b663a
9034 Author: Olof Johansson <olof@lixom.net>
9035 Date:   Tue Sep 29 10:21:29 2009 -0400
9037     SMC911X: Add chip auto detection
9039     Refactor the smc911x driver to allow for detecting when the chip is missing.
9040     I.e. the detect_chip() function is called earlier and will abort gracefully
9041     when the Chip ID read returns all 1's.
9043     Signed-off-by: Olof Johansson <olof@lixom.net>
9044     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
9045     Acked-by: Ben Warren <biggerbadderben@gmail.com>
9047 commit 0297ec7e2a4039b8a28346f52f3ccca4db1ddc62
9048 Author: Tom Rix <Tom.Rix@windriver.com>
9049 Date:   Tue Sep 29 10:19:49 2009 -0400
9051     TI OMAP3 Use arm init sequence to initialize i2c
9053     This changes fixes an early i2c error.
9055     It appears that I2C is working because once a read or write
9056     error is detected, the omap24xx_i2c driver calls i2c_init
9057     inside its error handling check.
9059     While it is ok to attempt error handling this way, the boards
9060     must not depend on this side effect to initialize it's i2c.
9062     Instead of explicitly calling i2c_init for every board, use
9063     the generic arm initialization in lib_arm/board.c. By defining
9064     the config variable CONFIG_HARD_I2C, the omap3 i2c initialization
9065     is included in the init_sequence table.
9067     Run tested on Beagle.
9068     Compile tested on the omap3's
9070     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
9071     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
9073 commit 4df30f3bb7285b2c962713a5c693c16fd90885e0
9074 Author: Sandeep Paulraj <s-paulraj@ti.com>
9075 Date:   Tue Sep 29 09:43:04 2009 -0400
9077     TI: DaVinci DM365: Enabling network Support on DM365 EVM
9079     This patch enables EMAC on the DM365 EVM.
9081     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
9082     Acked-by: Tom Rix <Tom.Rix@windriver.com>
9084 commit 00e1665a3cf956e09ac2ce86ef6ec459f6bfb33c
9085 Author: Sandeep Paulraj <s-paulraj@ti.com>
9086 Date:   Tue Sep 29 10:02:38 2009 -0400
9088     TI: DaVinci: GPIO header file and definitions
9090     Some DaVinci SOC's use GPIOs to enable EMAC and DM9000.
9091     This patch adds some definitions for GPIO registers and also adds
9092     structures for GPIO.
9093     A separate header file is being added so that in future we
9094     can have a DaVinci GPIO driver similer to OMAP.
9096     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
9097     Acked-by: Tom Rix <Tom.Rix@windriver.com>
9099 commit 95ae803afbdd9f673c94b992ea624a10d252afc2
9100 Author: Sandeep Paulraj <s-paulraj@ti.com>
9101 Date:   Fri Sep 18 17:30:05 2009 -0400
9103     TI: DaVinci DM646x: Update flag used to represent DM646x SOC's
9105     In the DaVinci specific code, we use both CONFIG_SOC_DM646X and
9106     CONFIG_SOC_DM646x to represent DM646x specific code.
9107     This patch changes occurrences of CONFIG_SOC_DM646x to
9108     CONFIG_SOC_DM646X. This is because for DM644x series of SOCs we use
9109     the flag CONFIG_SOC_DM644X. We want some uniformity.
9111     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
9112     Acked-by: Tom Rix <Tom.Rix@windriver.com>
9114 commit fc9165fdb3b021aa8ff02417692220fe9344072b
9115 Author: Olof Johansson <olof@lixom.net>
9116 Date:   Mon Sep 28 08:19:30 2009 -0400
9118     OMAP3: Clean up whitespace in mux configs
9120     Switch from space-based indentation to tab-based in mux configs, as pointed
9121     out by WD at:
9123     http://lists.denx.de/pipermail/u-boot/2009-September/061241.html
9125     Nothing but whitespace changes in this patch (diff -w gives no output).
9127     Signed-off-by: Olof Johansson <olof@lixom.net>
9129 commit 9de0212bd7c4c82a7e8c2a2c8714f8c7abc57d08
9130 Author: Dirk Behme <dirk.behme@googlemail.com>
9131 Date:   Mon Sep 28 08:17:50 2009 -0400
9133     OMAP3 MMC: Fix warning dereferencing type-punned pointer
9135     Fix warning
9136     Dereferencing type-punned pointer will break strict-aliasing rules
9138     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
9139     CC: Steve Sakoman <sakoman@gmail.com>
9140     Acked-by: Tom Rix <Tom.Rix@windriver.com>
9142 commit e92daeb5c2050438402b87c7d614e8a13c294348
9143 Author: Simon Kagstrom <[simon.kagstrom@netinsight.net]>
9144 Date:   Tue Sep 22 04:01:01 2009 +0530
9146     Support for the OpenRD base board
9148     The implementation is borrowed from the sheevaplug board and the Marvell
9149     1.1.4 code. Unsupported (or untested) is the SD card, PCIe and SATA.
9151     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
9153 commit a62e78fc444c67f958be48891bef3dab0e9eb285
9154 Author: Prafulla Wadaskar <prafulla@marvell.com>
9155 Date:   Mon Sep 21 20:15:17 2009 +0530
9157     Kirkwood: mv88f6281gtw_ge: Add kwbimage build support
9159     This patch adds kwbimage configuration file
9160     (used by mkimage utility)
9161     to support u-boot.kwb target on mv88f6281gtw_ge board.
9163     To create Kirkwood boot image to be flashed on SPI Flash,
9164     additional parameter u-boot.kwb need to be passed during make.
9166     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
9168 commit 5bc7cbc15b1890682c0b279f708914518bd25f8d
9169 Author: Prafulla Wadaskar <prafulla@marvell.com>
9170 Date:   Mon Sep 21 18:23:11 2009 +0530
9172     Kirkwood: rd6281a: Add kwbimage build support
9174     This patch adds kwbimage configuration file
9175     (used by mkimage utility)
9176     to support u-boot.kwb target on rd6281a platform.
9178     To create Kirkwood boot image to be flashed on NAND,
9179     additional parameter u-boot.kwb need to be passed during make.
9181     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
9183 commit 23b80982a02a43bf4ead91574c9d6f1b647ccc8f
9184 Author: Tom Rix <Tom.Rix@windriver.com>
9185 Date:   Sun Sep 27 11:10:09 2009 -0500
9187     Add support for Eukrea CPU9260/CPU9G20 SBC
9189     these boards are built around Atmel's AT91SAM9260/9G20 and have
9190     up to 64MB of NOR flash, up to 128MB of SDRAM, up to 2GB of NAND
9191     and include a 10/100 Ethernet PHY in RMII mode.
9193     Signed-off-by: Eric Benard <eric@eukrea.com>
9194     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
9196 commit d8380c9d35e88759c96e68a03738446ca0cb292f
9197 Author: Tom Rix <Tom.Rix@windriver.com>
9198 Date:   Sun Sep 27 07:47:24 2009 -0500
9200     Add support for Eukrea CPUAT91 SBC
9202     CPUAT91 is built around Atmel's AT91RM9200 and has up to 16MB of NOR
9203     flash, up to 128MB of SDRAM, and includes a Micrel KS8721 PHY in RMII
9204     mode.
9206     Signed-off-by: Eric Benard <eric@eukrea.com>
9207     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
9209 commit eb95aa15e644c29b01832703aa4964fe419170f0
9210 Author: Sandeep Paulraj <s-paulraj@ti.com>
9211 Date:   Mon Sep 14 14:57:47 2009 -0400
9213     TI: DaVinci DM365: Minor config cleanup
9215     The DM365 config was using the 'CONFIG_CMD_SAVEENV' flag.
9216     This is already included when we include the
9217     config_cmd_default.h header file. So this flag is removed.
9218     Also another flag to enable NAND functions was being
9219     enabled incorrectly.
9221     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
9223 commit 5d783c1ffd691ffdadbc2c2f796c41481b7cdce7
9224 Author: Sandeep Paulraj <s-paulraj@ti.com>
9225 Date:   Mon Sep 14 15:03:06 2009 -0400
9227     TI DaVinci DM365: Removing header file which does not exist
9229     The DaVinci DM365 EVM board specific code was including a header file
9230     which does not exist. So removing this header file.
9232     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
9234 commit 409ec37bd8ae8822d276e77419d899571891b191
9235 Author: Sandeep Paulraj <s-paulraj@ti.com>
9236 Date:   Tue Sep 8 18:08:06 2009 -0400
9238     TI DaVinci: DM355: Config Cleanup and Update
9240     This patch does the following
9241     1) Enables the NAND driver which is now available.
9242     2) Enables the 'CONFIG_MTD_DEVICE' as without this the
9243     compilation will fail
9244     3) We now have a safe place to store environment and defines
9245     an offset where this can be stored. This offset value is such that it is after
9246     the location where U-Boot is flashed using TI flash utilities.
9247     4) Enables Bootdelay
9248     5) Increases malloc() arena size. Manufacturers are coming out with
9249     NAND with large blocks sizes of upto 1 MiB. It has been noticed that
9250     as the block size of the NAND used is increased, if this particular
9251     value is not increased, the NAND driver will output out of memory
9252     errors.
9254     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
9256 commit 7908c97a106765ad8816bf2271a5bf315728b274
9257 Author: Sandeep Paulraj <s-paulraj@ti.com>
9258 Date:   Tue Sep 8 11:37:39 2009 -0400
9260     TI DaVinci: DM646x: Initial Support for DM646x SOC
9262     DM646x is an SOC from TI which has both an ARM and a DSP.
9263     There are multiple variants of the SOC mainly dealing with different
9264     core speeds.
9265     This patch adds the initial framework for the DM646x SOC.
9267     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
9269 commit 5d0f53624c24eaf82d58368a6a5b8476392dd5c7
9270 Author: Sandeep Paulraj <s-paulraj@ti.com>
9271 Date:   Wed Sep 9 15:26:00 2009 -0400
9273     TI DaVinci: DM6446: Fix Compilation error in NAND mode
9275     The Default mode that is built for the Davinci DVEVM happens
9276     to be the NOR mode.
9277     When we want to build for the NAND mode, we get a compilation
9278     error. This is overcome by defining the CONFIG_MTD_DEVICE
9279     flag in the NAND mode.
9280     The image built for NAND mode was successfully tested on the
9281     DaVinci DM6446 EVM.
9283     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
9285 commit 7a2aa8b68120f333ed2edc33475ca195810d6cb1
9286 Author: Tom Rix <Tom.Rix@windriver.com>
9287 Date:   Thu Sep 10 15:27:57 2009 -0400
9289     OMAP3 Move cache routine to cache.S
9291     v7_flush_dcache_all, because it depends on omap ROM code is not
9292     generic.  Rename the function to 'invalidate_dcache' and move it
9293     to the omap cpu directory.
9295     Collect the other omap cache routines l2_cache_enable and
9296     l2_cache_disable with invalide_dcache into cache.S.  This
9297     means removing the old cache.c file that contained l2_cache_enable
9298     and l2_cache_disable.
9300     The conversion from cache.c to cache.S was done most through
9301     disassembling the uboot binary.  The only significant change was
9302     to change the comparision for the return of get_cpu_rev from
9304        cmp      r0, #0
9305        beq      earlier_than_label
9307     Which was lost information to
9309        cmp      r0, #CPU_3XX_ES20
9310        blt      earlier_than_label
9312     The paths through the enable routine were verified by
9313     adding an infinite loop and seeing the hang.  Then
9314     removing the infinite loop and seeing it continue.
9316     The disable routine is similar enough that it was not
9317     tested with this method.
9319     Run tested by cold booting from nand on beagle and zoom1.
9320     Compile tested on MAKEALL arm.
9322     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
9324 commit a16df2c11188297eca43cf6080c70fb69b960232
9325 Author: Sandeep Paulraj <s-paulraj@ti.com>
9326 Date:   Tue Sep 8 17:09:52 2009 -0400
9328     TI DaVinci: Remove references to SZ_xx
9330     This patch removes the asm/sizes.h header file from being
9331     included in the DaVinci SOC configs.
9332     References to SZ_xx have been replaced by appropriate
9333     bit shifted values.
9335     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
9336     Acked-by: Wolfgang Denk <wd@denx.de>
9338 commit 285870f75378aca41c5063e4358ad93bf3014fd8
9339 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
9340 Date:   Thu Oct 9 01:27:18 2008 -0500
9342     Leave x86emu op code tables in default section
9344     Forcing the tables into got2 caused extra relocation when using -mrelocatable.
9345     This patch requires any board defining CONFIG_BIOSEMU to use -mrelocatable.
9347     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
9348     Acked-by: Jin Zhengxiong <Jason.Jin@freescale.com>
9350 commit be2254423b86572841aa70ff05d20933d1b49823
9351 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
9352 Date:   Sat Oct 10 12:42:22 2009 +0200
9354     Update all board to support new bbmiiphy driver (with multibus support)
9356     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
9357     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9359 commit 310cecb8ccdbc8a9be580e75b2fd362179d78535
9360 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
9361 Date:   Sat Oct 10 12:42:21 2009 +0200
9363     Add bb_miiphy_init call before any ethernet bring-up code.
9365     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
9366     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9368 commit 4ba31ab33ac824635fcb49ac609070a9ebcab7f0
9369 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
9370 Date:   Sat Oct 10 12:42:20 2009 +0200
9372     Rewrite the miiphybb (Bit-banged MII bus driver) in order to support an arbitrary number of mii buses.
9374     This feature is useful when your board uses different mii buses for different
9375     phys and all (or a part) of these buses are implemented via bit-banging mode.
9377     The driver requires that the following macros should be defined into the board
9378     configuration file:
9380     CONFIG_BITBANGMII       - Enable the miiphybb driver
9381     CONFIG_BITBANGMII_MULTI - Enable the multi bus support
9383     If the CONFIG_BITBANGMII_MULTI is not defined, the board's config file needs
9384     to define at least the following macros:
9386     MII_INIT      - Generic code to enable the MII bus (optional)
9387     MDIO_DECLARE  - Declaration needed to access to the MDIO pin (optional)
9388     MDIO_ACTIVE   - Activate the MDIO pin as out pin
9389     MDIO_TRISTATE - Activate the MDIO pin as input/tristate pin
9390     MDIO_READ     - Read the MDIO pin
9391     MDIO(v)       - Write v on the MDIO pin
9392     MDC_DECLARE   - Declaration needed to access to the MDC pin (optional)
9393     MDC(v)        - Write v on the MDC pin
9395     The previous macros make the driver compatible with the previous version
9396     (that didn't support the multi-bus).
9398     When the CONFIG_BITBANGMII_MULTI is also defined, the board code needs to fill
9399     the bb_miiphy_buses[] array with a record for each required bus and declare
9400     the bb_miiphy_buses_num variable with the number of mii buses.
9401     The record (struct bb_miiphy_bus) has the following fields/callbacks (see
9402     miiphy.h for details):
9404     char name[]            - The symbolic name that must be equal to the MII bus
9405                              registered name
9406     int (*init)()          - Initialization function called at startup time (just
9407                              before the Ethernet initialization)
9408     int (*mdio_active)()   - Activate the MDIO pin as output
9409     int (*mdio_tristate)() - Activate the MDIO pin as input/tristate pin
9410     int (*set_mdio)()      - Write the MDIO pin
9411     int (*get_mdio)()      - Read the MDIO pin
9412     int (*set_mdc)()       - Write the MDC pin
9413     int (*delay)()         - Delay function
9414     void *priv             - Private data used by board specific code
9416     The board code will look like:
9418     struct bb_miiphy_bus bb_miiphy_buses[] = {
9419      { .name = miibus#1, .init = b1_init, .mdio_active = b1_mdio_active, ... },
9420      { .name = miibus#2, .init = b2_init, .mdio_active = b2_mdio_active, ... },
9421      ...
9422     int bb_miiphy_buses_num = sizeof(bb_miiphy_buses) /
9423                               sizeof(bb_miiphy_buses[0]);
9425     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
9426     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9428 commit efaf6f1bf6ebdd8f16b0d0c2960abe8d06f95af4
9429 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
9430 Date:   Fri Oct 2 18:54:20 2009 -0400
9432     mpc83xx: cosmetic comment update relating to SPD EEPROM
9434     commit 6d0f6bcf337c5261c08fabe12982178c2c489d76 did the big
9435     rename of CFG_ macros to CONFIG_SYS macros.  But it missed
9436     a couple of instances within comments.
9438     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
9439     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9441 commit afc3ba0fc4195624e79e21244380ed7cc2fd6969
9442 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
9443 Date:   Thu Oct 8 02:03:51 2009 +0200
9445     relocation: Do not relocate NULL pointers.
9447     NULL is an absolute value and should not be relocated.
9448     After this correction code like:
9449      void weak_fun(void) __attribute__((weak));
9450      printf("weak_fun:%p\n", weak_fun);
9451     will still print null after relocation.
9453     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
9455 commit 3beb40c2473f0dd373231c723d88c51e46ad96f7
9456 Author: Peter Tyser <ptyser@xes-inc.com>
9457 Date:   Wed Oct 7 11:45:00 2009 -0500
9459     85xx: Ensure BSS segment isn't linked at address 0
9461     When U-Boot is relocated from flash to RAM pointers are modified
9462     accordingly.  However, pointers initialzed with NULL values should not
9463     be modified so that they maintain their intended NULL value.  If the
9464     BSS segment is linked at address 0 its address will not be
9465     updated as necessary during relocation.
9467     This is a temporary workaround.  The end goal is to add support to
9468     U-Boot to dynamically locate the BSS at an arbitrary address at
9469     runtime.  When the ability to fixup the BSS inteligently is
9470     added, this workaround can be removed and the 85xx link script
9471     can put the BSS at a fixed address at link time.
9473     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9475 commit 95c44ec485b46ffb43dbdaa299f1491a500fdadf
9476 Author: Detlev Zundel <dzu@denx.de>
9477 Date:   Wed Oct 7 16:38:05 2009 +0200
9479     tqm5200: Correct comment and code in post_hotkeys_pressed.
9481     This fixes the code and the comment according to the original intent of
9482     doing an intensive memory test when PSC6_3 is pulled low on the STK52xx.
9483     Notably PORT_CONFIG will be overridden with this correct code now,
9484     so beware.
9486     The original code only worked by coincidence depending on the PORT_CONFIG
9487     setting from the header file.  The new code was tested to ensure that the
9488     (undocumented) memory test still works on the STK52x.
9490     Signed-off-by: Detlev Zundel <dzu@denx.de>
9491     CC: Martin Krause <Martin.Krause@tqs.de>
9493     Minor white-space cleanup.
9494     Signed-off-by: Wolfgang Denk <wd@denx.de>
9496 commit da01f53404f99db185d196867af79371725d4683
9497 Author: Wolfgang Denk <wd@denx.de>
9498 Date:   Sun Oct 4 22:56:08 2009 +0200
9500     mpc512x: fix fixed_sdram() init code.
9502     Commit 054197ba and later fixes used an array to initialize some of
9503     the MDDRC parameters; however, the use of an array turned out to be a
9504     bad idea as it was not possible to correlate structure entries to
9505     array indices in readable and reliable way. Now we use a struct
9506     instead, which makes this self-explanatory.
9508     Signed-off-by: Wolfgang Denk <wd@denx.de>
9510 commit dbcc357166bed20df13450e93a501f30b197efd1
9511 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
9512 Date:   Sun Oct 4 20:04:22 2009 +0200
9514     ppc4xx: respect 80-chars per line in ppc*.h files
9516     After running checkstyle.pl on the three previous patches I noted that in
9517     the *.h files there were a lot of long lines. This patch solves this problem.
9519     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
9520     Signed-off-by: Stefan Roese <sr@denx.de>
9522 commit 78d2a641371ec71cc3786b167a318c7b115fbb90
9523 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
9524 Date:   Sun Oct 4 20:04:21 2009 +0200
9526     ppc4xx: Rework cmd reginfo
9528     The command "reginfo" got an overhaul for the ppc4xx. It dumps all the
9529     relevant HW configuration registers (address, symbolic name, content).
9530     This allows to easily detect errors in *.h files and changes in the HW
9531     configuration.
9533     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
9534     Signed-off-by: Stefan Roese <sr@denx.de>
9536 commit ddc922ff2c20ae0b7f9ce2df1ac28143e2f325bd
9537 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
9538 Date:   Sun Oct 4 20:04:20 2009 +0200
9540     ppc_4xx: Apply new HW register names
9542     Modify all existing *.c files to use the new register names
9543     as seen in the AMCC manuals.
9545     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
9546     Signed-off-by: Stefan Roese <sr@denx.de>
9548 commit f80e61dcfe53fa3a5936659883415c9bd1b5a3d9
9549 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
9550 Date:   Sun Oct 4 20:04:19 2009 +0200
9552     ppc4xx: Cleanup some HW register names
9554     Here you find all the changes in the include directory for new register names
9555     and adapting other ones to the names used by AMCC in their manuals, e.g.
9556     For 440EPx/GRPPC440EPx/GRX, Revision 1.15 â€“ September 22, 2008
9557     For PPC405GP Embedded Processor, Revision 1.02 â€“ March 22, 2006
9559     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
9560     Signed-off-by: Stefan Roese <sr@denx.de>
9562 commit 56f14818f66c68a8b9e45925f29ceb974405ad48
9563 Author: Stefan Roese <sr@denx.de>
9564 Date:   Tue Oct 6 07:21:08 2009 +0200
9566     ppc4xx: Add PPC405EX(r) Rev D support
9568     Unfortunately some Rev D PPC405EX/405EXr PVR's are identical with older
9569     405EX(r) parts. Here a list:
9571     0x12911475 - 405EX Rev D with Security *and* 405EX Rev A/B witout Sec
9572     0x12911473 - 405EX Rev D without Security *and* 405EXr Rev A/B with Sec
9574     Since there are only a few older parts in the field, this patch now
9575     changes the PVR's above to represent the new Rev D versions.
9577     Signed-off-by: Stefan Roese <sr@denx.de>
9578     Cc: Phong Vo" <pvo@amcc.com>
9580 commit 06dfaeef52a5f773ae4292432e3c74ff52ead316
9581 Author: Stefan Roese <sr@denx.de>
9582 Date:   Fri Oct 2 14:35:16 2009 +0200
9584     ppc4xx: Fix msg "initialization as root-complex failed" upon PCIe scan
9586     This message is printed upon PCIe bus scan, not only upon error, but also
9587     if no PCIe device is detected at all. Since this is not an error, let's
9588     remove this message in this case. We already have the message
9589     "link is not up." if there is no PCIe device present.
9591     Signed-off-by: Stefan Roese <sr@denx.de>
9592     Acked-by: Wolfgang Denk <wd@denx.de>
9594 commit 54f5f056aa1daa3e39bad1c5c3fb43a72cdb9e84
9595 Author: Mike Nuss <mike@terascala.com>
9596 Date:   Mon Oct 5 12:33:28 2009 -0400
9598     PPC4xx: Denali core: Fix incorrect DDR row bits
9600     The SPD detection code for the Denali memory controller used on some
9601     ppc4xx
9602     processors incorrectly encodes DDR0_42. With certain memory
9603     configurations,
9604     this can cause the bootwrapper to incorrectly calculate the installed
9605     memory
9606     size, because the number of row bits is wrong. This patch fixes that
9607     encoding.
9609     Signed-off-by: Mike Nuss <mike@terascala.com>
9610     Signed-off-by: Stefan Roese <sr@denx.de>
9612 commit 99dbd4efd6d5ecc37d7e8f28b20d9be8c83055c7
9613 Author: Ben Warren <biggerbadderben@gmail.com>
9614 Date:   Mon Oct 5 00:02:51 2009 -0700
9616     Add information about return values of xxx_eth_register() in documentation
9618     As discussed on mailing list, <0 indicates failure, >=0 indicates number
9619     of interfaces found.
9621     Also added blurb about private data
9623     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9625 commit 1f1e774ec6242d4ea34e5cff57232deb5bb587e0
9626 Author: Mike Frysinger <vapier@gentoo.org>
9627 Date:   Wed Sep 9 14:41:22 2009 -0400
9629     document network driver framework
9631     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9632     Acked-by: Wolfgang Denk <wd@denx.de>
9633     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9635 commit aba8237257dd15b0e76cc517f0e741c0908ee0b9
9636 Author: Prafulla Wadaskar <prafulla@marvell.com>
9637 Date:   Wed Sep 9 15:59:19 2009 +0530
9639     net: kirkwood_egiga.c: fixed build warning
9641     if link up detection code is disabled through config option, it gives build warning.
9642     This patch fixes the same
9644     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
9645     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9647 commit 7194ab809532eeca3e2ee5dc12017cb901cc5842
9648 Author: Ben Warren <biggerbadderben@gmail.com>
9649 Date:   Sun Oct 4 22:37:03 2009 -0700
9651     Convert SMC91111 Ethernet driver to CONFIG_NET_MULTI API
9653     All in-tree boards that use this controller have CONFIG_NET_MULTI
9654     added
9655     Also:
9656       - changed CONFIG_DRIVER_SMC91111 to CONFIG_SMC91111
9657       - cleaned up line lengths
9658       - modified all boards that override weak function in this driver
9659       - modified all eeprom standalone apps to work with new driver
9660       - updated blackfin standalone EEPROM app after testing
9662     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9663     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9665 commit 32e7f239dda8638377edb0d3e7ac269cabbafbe6
9666 Author: Prafulla Wadaskar <prafulla@marvell.com>
9667 Date:   Mon Sep 21 20:28:18 2009 +0530
9669     net: phy: mv88e61xx.c : fixed build warning
9671     following build warning was observed
9673     mv88e61xx.c: In function â€˜mv88e61xx_busychk’:
9674     mv88e61xx.c:208: warning: dereferencing type-punned pointer will break strict-aliasing rules
9676     This patch fixes the same
9677     Patch tested for rd6281a board build
9679     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
9680     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9682 commit c0b46d8ead3c6c5b569c83544fd71b9d73356869
9683 Author: James Clough <james@rtetc.com>
9684 Date:   Thu Sep 10 09:11:50 2009 +0200
9686     net: Fix problem with 405EZ ethernet interrupt
9688     On 405EZ the RX-/TX-interrupts are coalesced into one IRQ bit in the
9689     UIC. We need to acknowledge the RX-/TX-interrupts in the
9690     SDR0_ICINTSTAT reg as well.
9692     This problem was introduced with commit
9693     d1631fe1 [ppc4xx: Consolidate PPC4xx UIC defines]
9695     Signed-off-by: James Clough <james@rtetc.com>
9696     Signed-off-by: Stefan Roese <sr@denx.de>
9697     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9699 commit 91b469c95faf92435e3d5d78292ba78075a3c5ca
9700 Author: Mike Frysinger <vapier@gentoo.org>
9701 Date:   Wed Sep 2 04:18:55 2009 -0400
9703     net: add random_port() prototype
9705     The random_port() is meant to be used by other net code, but without a
9706     prototype, we get fun warnings like:
9707     dns.c: In function 'DnsSend':
9708     dns.c:89: warning: implicit declaration of function 'random_port'
9710     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9711     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9713 commit 3469424cb6d939c7aedf1e0efdec44a797c0a18c
9714 Author: Peter Tyser <ptyser@xes-inc.com>
9715 Date:   Mon Sep 21 11:20:37 2009 -0500
9717     ppc: Remove reloc_off field from global_data structure
9719     Now that proper relocation is supported, the reloc_off field is no longer
9720     necessary.
9722     Note that the location of the standalone application jump table pointer
9723     in the global data structure is affected by this change, breaking
9724     execution of standalone applications compiled for previous versions of
9725     U-Boot.
9727     We therefore increment XF_VERSION to 6
9729     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9730     Signed-off-by: Wolfgang Denk <wd@denx.de>
9732 commit 0630535e2d062dd73c1ceca5c6125c86d1127a49
9733 Author: Peter Tyser <ptyser@xes-inc.com>
9734 Date:   Tue Sep 22 09:27:55 2009 -0500
9736     arm/microblaze/nios/nios2/sh: Remove relocation fixups
9738     These architectures don't need relocation fixups, so reduce their
9739     codesize a bit by defining CONFIG_RELOC_FIXUP_WORKS.
9741     Also remove the reloc_off field from their global data structures
9742     as it is no longer needed.
9744     Note that the location of the standalone application jump table pointer
9745     in the global data structure is affected by this change, breaking
9746     execution of standalone applications compiled for previous versions of
9747     U-Boot. We will therefore increment XF_VERSION in the next commit,
9748     which also touches this area.
9750     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9751     Signed-off-by: Wolfgang Denk <wd@denx.de>
9753 commit 521af04d853361b49344b61892eb0618f9f713c5
9754 Author: Peter Tyser <ptyser@xes-inc.com>
9755 Date:   Mon Sep 21 11:20:36 2009 -0500
9757     Conditionally perform common relocation fixups
9759     Add #ifdefs where necessary to not perform relocation fixups.  This
9760     allows boards/architectures which support relocation to trim a decent
9761     chunk of code.
9763     Note that this patch doesn't add #ifdefs to architecture-specific code
9764     which does not support relocation.
9766     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9768 commit 3cbcfa70b116df1bbdc90ba31c61adcaec058a8a
9769 Author: Peter Tyser <ptyser@xes-inc.com>
9770 Date:   Mon Sep 21 11:20:35 2009 -0500
9772     p3mx: Remove serial relocation fixups
9774     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9776 commit 80f73b92a19129854876ec3f1aef531a09e86d2d
9777 Author: Peter Tyser <ptyser@xes-inc.com>
9778 Date:   Mon Sep 21 11:20:34 2009 -0500
9780     lwmon, lwmon5: Remove sysmon POST relocation fixups
9782     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9784 commit 331ab60c4a418c39e5b1a05d4648a4155d0ad13e
9785 Author: Peter Tyser <ptyser@xes-inc.com>
9786 Date:   Mon Sep 21 11:20:33 2009 -0500
9788     mpl: Remove memory test relocation fixups
9790     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9792 commit 6385b28116f775da4771b768ba9bf93c3aaaf26e
9793 Author: Peter Tyser <ptyser@xes-inc.com>
9794 Date:   Mon Sep 21 11:20:32 2009 -0500
9796     fpga: Remove relocation fixups
9798     PPC boards are the only users of the current FPGA code which is littered
9799     with manual relocation fixups.  Now that proper relocation is supported
9800     for PPC boards, remove FPGA manual relocation.
9802     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9804 commit cd1011db80287eef933d1599b74cff1116c93134
9805 Author: Peter Tyser <ptyser@xes-inc.com>
9806 Date:   Mon Sep 21 11:20:31 2009 -0500
9808     tsec: Remove PHY command relocation fixups
9810     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9812 commit b5650c5d8c99100144d8e4e9af910405f857bb7a
9813 Author: Peter Tyser <ptyser@xes-inc.com>
9814 Date:   Mon Sep 21 11:20:30 2009 -0500
9816     ppc: Remove board-specific command table relocation fixups
9818     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9820 commit e6b05e774d7ce1641613cdeffb69c1d48139a869
9821 Author: Peter Tyser <ptyser@xes-inc.com>
9822 Date:   Mon Sep 21 11:20:29 2009 -0500
9824     ppc: Remove extable relocation fixups
9826     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9828 commit b32a894011b1436758905fa10e6a03b8539c43c9
9829 Author: Peter Tyser <ptyser@xes-inc.com>
9830 Date:   Mon Sep 21 11:20:28 2009 -0500
9832     ppc: Remove pci config table pointer relocation fixups
9834     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9836 commit a0e2066f392782730f0398095e583c87812d97f2
9837 Author: Peter Tyser <ptyser@xes-inc.com>
9838 Date:   Mon Sep 21 11:20:27 2009 -0500
9840     ppc: Remove board.c relocation fixups
9842     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9844 commit 244615197469dd6fe75ae082f38424b97c79aeaf
9845 Author: Peter Tyser <ptyser@xes-inc.com>
9846 Date:   Mon Sep 21 11:20:26 2009 -0500
9848     ppc: Check for compilers that don't support relocation
9850     Certain ppc compilers are known not to generate the .fixup section
9851     properly.  The .fixup section is necessary to create a relocatable
9852     U-Boot image.  A basic check for the existence of the .fixup section
9853     should hopefully catch the majority of broken compilers which don't
9854     support relocation.
9856     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9858 commit 858290178f222d998b6425d85cf06822467918f3
9859 Author: Peter Tyser <ptyser@xes-inc.com>
9860 Date:   Mon Sep 21 11:20:25 2009 -0500
9862     ppc: Enable full relocation to RAM
9864     The following changes allow U-Boot to fully relocate from flash to
9865     RAM:
9866      - Remove linker scripts' .fixup sections from the .text section
9867      - Add -mrelocatable to PLATFORM_RELFLAGS for all boards
9868      - Define CONFIG_RELOC_FIXUP_WORKS for all boards
9870     Previously, U-Boot would partially relocate, but statically initialized
9871     pointers needed to be manually relocated.
9873     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9875 commit 3b4bd2d75c4b3c1a4570f47ffaaed66f56a78ff4
9876 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
9877 Date:   Wed Sep 30 11:55:04 2009 +0200
9879     ppc4xx: Add SDRAM detection for PMC440 boards
9881     This patch adds support to detect the amount of DDR2 SDRAM
9882     on PMC440 modules. Detection is done by probing through
9883     a list of available and supported hardware configurations
9884     from 1GByte down to 256MB.
9886     The static TLB entry is replaced by dynamically created entries.
9888     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
9889     Signed-off-by: Stefan Roese <sr@denx.de>
9891 commit fb95169e39f2d03270bed552d27bbb02627a443e
9892 Author: Stefan Roese <sr@denx.de>
9893 Date:   Mon Sep 28 17:33:45 2009 +0200
9895     ppc4xx: Merge PPC4xx DDR and DDR2 ECC handling
9897     This patch merges the ECC handling (ECC parity byte writing) into one
9898     file (ecc.c) for all PPC4xx SDRAM controllers except for PPC440EPx/GRx.
9899     This exception is because only those PPC's use the completely different
9900     Denali SDRAM controller core.
9902     Previously we had two routines to generate/write the ECC parity bytes.
9903     With this patch we now only have one core function left.
9905     Tested on Kilauea (no ECC) and Katmai (with and without ECC).
9907     Signed-off-by: Stefan Roese <sr@denx.de>
9908     Cc: Felix Radensky <felix@embedded-sol.com>
9909     Cc: Grant Erickson <gerickson@nuovations.com>
9910     Cc: Pieter Voorthuijsen <pv@prodrive.nl>
9912 commit d24bd2517a2b847f773453eab0ee5b1c8ebc74ba
9913 Author: Felix Radensky <felix@embedded-sol.com>
9914 Date:   Sun Sep 27 23:56:12 2009 +0200
9916     ppc4xx: Reorganize DDR2 ECC handling
9918     Reorganize DDR2 ECC handling to use common code for
9919     SPD DIMMs and soldered SDRAM. Also, use common code
9920     to display SDRAM info (ECC, CAS latency) for SPD and
9921     soldered SDRAM variants.
9923     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
9924     Signed-off-by: Stefan Roese <sr@denx.de>
9926 commit 46a887949e11d2cddb91e17ca47e73341d71a379
9927 Author: Mike Frysinger <vapier@gentoo.org>
9928 Date:   Wed Sep 30 03:09:16 2009 -0400
9930     Blackfin: update default console= settings
9932     The Linux kernel has changed the way it numbers serial ports, so update
9933     the default command line to match it.
9935     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9937 commit 4c5f307d58604dea001cccf388aa077a902ab0a5
9938 Author: Mike Frysinger <vapier@gentoo.org>
9939 Date:   Mon Sep 21 18:04:49 2009 -0400
9941     Blackfin: bf533-ezkit: update env location
9943     The u-boot image has outgrown the current space and overflowed into the
9944     env sector.  So move the env to the next available sector (we've already
9945     allocated the first few sectors anyways for u-boot).
9947     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9949 commit 24b17d8a3c3a4b9ceaf6363ebe0021011b0b8bd8
9950 Author: Kumar Gala <galak@kernel.crashing.org>
9951 Date:   Wed Sep 30 08:39:44 2009 -0500
9953     ppc/85xx: get_law_entry isn't used in CONFIG_NAND_SPL
9955     Don't include get_law_entry as part of the NAND_SPL build since the
9956     code isnt used.
9958     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9960 commit 693a048d8ac191181f5b9adbff642d3f1bbd479f
9961 Author: Mingkai Hu <Mingkai.hu@freescale.com>
9962 Date:   Wed Sep 23 15:20:39 2009 +0800
9964     Add README.mpc8536ds
9966     Add boot from NAND/eSDHC/eSPI description
9968     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
9969     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9971 commit e40ac4870c6e72302044e98338322f45c34435bd
9972 Author: Mingkai Hu <Mingkai.hu@freescale.com>
9973 Date:   Wed Sep 23 15:20:38 2009 +0800
9975     On-chip ROM boot: MPC8536DS support
9977     The MPC8536E is capable of booting from the on-chip ROM - boot from
9978     eSDHC and boot from eSPI. When power on, the porcessor excutes the
9979     ROM code to initialize the eSPI/eSDHC controller, and loads the mian
9980     U-Boot image from the memory device that interfaced to the controller,
9981     such as the SDCard or SPI EEPROM, to the target memory, e.g. SDRAM or
9982     L2SRAM, then boot from it.
9984     The memory device should contain a specific data structure with control
9985     word and config word at the fixed address. The config word direct the
9986     process how to config the memory device, and the control word direct
9987     the processor where to find the image on the memory device, or where
9988     copy the main image to. The user can use any method to store the data
9989     structure to the memory device, only if store it on the assigned address.
9991     The on-chip ROM code will map the whole 4GB address space by setting
9992     entry0 in the TLB1, so the main image need to switch to Address space 1
9993     to disable this mapping and map the address space again.
9995     This patch implements loading the mian U-Boot image into L2SRAM, so
9996     the image can configure the system memory by using SPD EEPROM.
9998     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
9999     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10001 commit 9a1a0aedbbd56f901bfbc124f18ec6d9dcefe282
10002 Author: Mingkai Hu <Mingkai.hu@freescale.com>
10003 Date:   Wed Sep 23 15:20:37 2009 +0800
10005     NAND boot: MPC8536DS support
10007     MPC8536E can support booting from NAND flash which uses the
10008     image u-boot-nand.bin. This image contains two parts: a 4K
10009     NAND loader and a main U-Boot image. The former is appended
10010     to the latter to produce u-boot-nand.bin. The 4K NAND loader
10011     includes the corresponding nand_spl directory, along with the
10012     code twisted by CONFIG_NAND_SPL. The main U-Boot image just
10013     like a general U-Boot image except the parts that included by
10014     CONFIG_SYS_RAMBOOT.
10016     When power on, eLBC will automatically load from bank 0 the
10017     4K NAND loader into the FCM buffer RAM where CPU can execute
10018     the boot code directly. In the first stage, the NAND loader
10019     copies itself to RAM or L2SRAM to free up the FCM buffer RAM,
10020     then loads the main image from NAND flash to RAM or L2SRAM
10021     and boot from it.
10023     This patch implements the NAND loader to load the main image
10024     into L2SRAM, so the main image can configure the RAM by using
10025     SPD EEPROM. In the first stage, the NAND loader copies itself
10026     to the second to last 4K address space, and uses the last 4K
10027     address space as the initial RAM for stack.
10029     Obviously, the size of L2SRAM shouldn't be less than the size
10030     of the image used. If so, the workaround is to generate another
10031     image that includes the code to configure the RAM by SPD and
10032     load it to L2SRAM first, then relocate the main image to RAM
10033     to boot up.
10035     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
10036     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10038 commit 07355700523203c5f72018712cf0d93683f255c8
10039 Author: Mingkai Hu <Mingkai.hu@freescale.com>
10040 Date:   Wed Sep 23 15:19:32 2009 +0800
10042     mpc8536: fix board config file line length
10044     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
10045     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10047 commit dd9ca98f2600000e5c2744735040100b770650e7
10048 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10049 Date:   Fri Sep 25 11:14:11 2009 -0400
10051     sbc8548: reclaim wasted sector in boot flash
10053     By nature of being based off the MPC8548CDS board, this
10054     board inherited an ENV_SIZE setting of 256k.  But since
10055     it has a smaller flash device (8MB soldered on), it has
10056     a native sector size of 128k, and hence the ENV_SIZE was
10057     causing 2 sectors to be used for the environment.
10059     By removing the unused sector, we can push TEXT_BASE up
10060     closer to the end of address space and reclaim that
10061     sector for any other application.  This also fixes the
10062     mismatch between TEXT_BASE and MONITOR_LEN reported by
10063     Kumar earlier.
10065     Since this board also supports the ability to boot off
10066     the 64MB SODIMM flash, this change is forward looking
10067     with that in mind; i.e. the settings for MONITOR_LEN
10068     and ENV_SIZE will work when the 512k sectors of the
10069     SODIMM flash are used for alternate boot in the future.
10071     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10072     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10074 commit 8280912e0657e96a7b7d8da7003656d62b0fd109
10075 Author: Kumar Gala <galak@kernel.crashing.org>
10076 Date:   Mon Sep 28 21:38:00 2009 -0500
10078     ppc/85xx: Clean up immap_85xx.h
10080     * Converted all white space to tabs
10081     * Converted all types to u8/u16/u32
10082     * Reduce lines to fit in 80 columns
10083     * Renamed MPC85xx_{Q,B}MAN -> FSL_CORENET_{Q,B}MAN
10085     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10087 commit d44e9c1736283f0abc5d3c5d28cfea8480c93a79
10088 Author: Scott Wood <scottwood@freescale.com>
10089 Date:   Mon Sep 28 16:33:18 2009 -0500
10091     NAND: davinci: Fix warnings when 4-bit ECC not used
10093     I accidentally left v2 of "NAND: DaVinci:Adding 4 BIT ECC support"
10094     applied when I pushed the tree last merge window, and missed these fixes
10095     which were in v3 of that patch.
10097     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
10098     Signed-off-by: Scott Wood <scottwood@freescale.com>
10100 commit ca6189db484882798f2a35a476c07e618e21f6d3
10101 Author: Kyungmin Park <kmpark@infradead.org>
10102 Date:   Tue Sep 22 09:05:00 2009 +0900
10104     Refactor OneNAND IPL code
10106     Refactoring the OneNAND IPL code
10108     and some minor fixed:
10109     - Remove unnecessary header file
10110     - Fix wrong access at read interrupt
10111     - The recent OneNAND has 4KiB pagesize
10113     Also Board can override OneNAND IPL image
10115     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
10117 commit a05e3f9a084fc8951d87745b3a91df246432df7d
10118 Author: Shinya Kuribayashi <skuribay@pobox.com>
10119 Date:   Sat Sep 12 18:01:40 2009 +0900
10121     MIPS: VCT: Remove read_spareram reference
10123     The commit ecad289fc6bd9d89ef4d5093cc7b6fd712fd0d29 (OneNAND: Remove
10124     unused read_spareram and add unlock_all as kernel does) forgot to remove
10125     a local reference to read_spareram in board/micronas/vct/ebi_onenand.c,
10126     which causes the following build failure when configured with OneNAND:
10128     ebi_onenand.c: In function 'onenand_board_init':
10129     ebi_onenand.c:196: error: 'struct onenand_chip' has no member named 'read_spareram'
10130     make[1]: *** [ebi_onenand.o] Error 1
10131     make[1]: *** Waiting for unfinished jobs....
10132     make: *** [board/micronas/vct/libvct.a] Error 2
10134     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
10135     Acked-by: Stefan Roese <sr@denx.de>
10136     Cc: Kyungmin Park <kyungmin.park@samsung.com>
10137     Signed-off-by: Scott Wood <scottwood@freescale.com>
10139 commit ef37c6835eac66206a9c7c11f0c7186f5d64bf91
10140 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
10141 Date:   Fri Sep 25 14:05:57 2009 +0200
10143     ubifs: Correct dereferencing of files-after-symlinks
10145     Files in directories which are symlinked to were not dereferenced
10146     correctly in last commit. E.g., with a symlink
10148        /boot/lnk -> /boot/real_dir
10150     loading
10152        /boot/lnk/uImage
10154     will fail. This patch fixes that by simply seeing to it that the target
10155     base directory has a slash after it.
10157     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
10158     Signed-off-by: Stefan Roese <sr@denx.de>
10160 commit b306db2f1bf561b5823a655c677fe28cfad80cfb
10161 Author: Stefan Roese <sr@denx.de>
10162 Date:   Thu Sep 24 14:10:30 2009 +0200
10164     ppc4xx: Remove mtsdram0() marcos and use common mtsdram() instead
10166     Additionally some whitespace coding style fixes.
10168     Signed-off-by: Stefan Roese <sr@denx.de>
10170 commit 95b602bab5fec2fffab07a01ea3947c70d1bacc1
10171 Author: Stefan Roese <sr@denx.de>
10172 Date:   Thu Sep 24 13:59:57 2009 +0200
10174     ppc4xx: Convert PPC4xx SDRAM defines from lower case to upper case
10176     The latest PPC4xx register cleanup patch missed some SDRAM defines.
10177     This patch now changes lower case UIC defines to upper case. Also
10178     some names are changed to match the naming in the IBM/AMCC users
10179     manuals (e.g. mem_mcopt1 -> SDRAM0_CFG).
10181     Signed-off-by: Stefan Roese <sr@denx.de>
10183 commit 952e7760bfc5b0e3b142b9ce34e7fbb7d008c900
10184 Author: Stefan Roese <sr@denx.de>
10185 Date:   Thu Sep 24 09:55:50 2009 +0200
10187     ppc4xx: Convert PPC4xx UIC defines from lower case to upper case
10189     The latest PPC4xx register cleanup patch missed the UIC defines.
10190     This patch now changes lower case UIC defines to upper case.
10192     Signed-off-by: Stefan Roese <sr@denx.de>
10194 commit d1c9e5b37901b53ffc1ce3f08ec8ed61bfd557b6
10195 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
10196 Date:   Tue Sep 22 13:40:44 2009 +0200
10198     fsl_i2c: Do not generate STOP after read.
10200     __i2c_read always ends with a STOP condition thereby releasing
10201     the bus. It is cleaner to do the STOP magic in i2c_read(), like
10202     i2c_write() does. This may also help future multimaster systems which
10203     wants to hold on to the bus until all transactions are finished.
10205     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
10207 commit 99404202127346b9e91503bbd69deafa18c980c4
10208 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
10209 Date:   Thu Sep 17 11:07:17 2009 +0200
10211     fsl_i2c: Impl. AN2919, rev 5 to calculate FDR/DFSR
10213     The latest AN2919 has changed the way FDR/DFSR should be calculated.
10214     Update the driver according to spec. However, Condition 2
10215     is not accounted for as it is not clear how to do so.
10217     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
10218     Acked-by: Wolfgang Grandegger <wg@grandegger.com>
10220 commit d01ee4db9302cfccaa5c548a1c4e873b415681a0
10221 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
10222 Date:   Thu Sep 17 11:07:16 2009 +0200
10224     fsl_i2c: Add CONFIG_FSL_I2C_CUSTOM_{DFSR/FDR}
10226     Some boards need a higher DFSR value than the spec currently
10227     recommends so give these boards the means to define there own.
10229     For completeness, add CONFIG_FSL_I2C_CUSTOM_FDR too.
10231     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
10233 commit 21f4cbb77299788e2b06c9b0f48cf20a5ab00d4a
10234 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
10235 Date:   Thu Sep 17 11:07:15 2009 +0200
10237     fsl_i2c: Wait for STOP condition to propagate
10239     After issuing a STOP one must wait until the STOP has completed
10240     on the bus before doing something new to the controller.
10242     Also add an extra read of SR as the manual mentions doing that
10243     is a good idea.
10245     Remove surplus write of CR just before a write, isn't required and
10246     could potentially disturb the I2C bus.
10248     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
10250 commit c7190f028fa950d4d36b6d0b4bb3fc72602ec54c
10251 Author: Kim Phillips <kim.phillips@freescale.com>
10252 Date:   Fri Sep 25 18:19:44 2009 -0500
10254     mpc83xx: retain POR values of non-configured ACR, SPCR, SCCR, and LCRR bitfields
10256     some LCRR bits are not documented throughout the 83xx family RMs.
10257     New board porters copying similar board configurations might omit
10258     setting e.g., DBYP since it was not documented in their SoC's RM.
10260     Prevent them bricking their board by retaining power on reset values
10261     in bit fields that the board porter doesn't explicitly configure
10262     via CONFIG_SYS_<registername>_<bitfield> assignments in the board
10263     config file.
10265     also move LCRR assignment to cpu_init_r[am] to help ensure no
10266     transactions are being executed via the local bus while CLKDIV is being
10267     modified.
10269     also start to use i/o accessors.
10271     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10273 commit 00ec0ff549b8cb6fb6d40e275aeb5a460642a3bd
10274 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10275 Date:   Mon Sep 21 17:44:51 2009 -0400
10277     sbc8349: tidy up Makefile to use new configuration script.
10279     Commit 804d83a5 allows us to move all the configuration
10280     variation tweaks out of the top level Makefile and down
10281     into the board config header.  This takes advantage of
10282     that for the sbc8349 board.
10284     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10285     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10287 commit da6eea0f48c24a318e6de69d6bca0bb5ab70572b
10288 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10289 Date:   Wed Sep 16 23:22:08 2009 +0400
10291     mpc83xx: mpc8360emds: Add QE USB device tree fixups
10293     With this patch we can change QE USB mode without need to hand-edit
10294     the device tree.
10296     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10297     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10299 commit 89da44ce3fe1638312d71cb3add8c6a6d2c7c1f3
10300 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10301 Date:   Wed Sep 16 23:21:59 2009 +0400
10303     mpc83xx: mpc8360emds: Use RGMII-ID mode, add workarounds for rev. 2.1 CPUs
10305     This patch fixes various ethernet issues with gigabit links handling
10306     in U-Boot. The workarounds originally implemented by Kim Phillips for
10307     Linux kernel.
10309     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10310     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10312 commit 034477bb31948d698d18b84bc0834c3e25a14d04
10313 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10314 Date:   Wed Sep 16 23:21:57 2009 +0400
10316     mpc83xx: mpc8360emds: Don't use LBC SDRAM when DDR is available
10318     Since commit 5c2ff323a94e27e481f70c44838d43fcd844dd46 ("mpc8360emds:
10319     rework LBC SDRAM setup"), LBC SDRAM is available for use in Linux.
10321     Though, it appears that QE Ethernet in Gigabit mode can't transmit
10322     large packets when it tries to work with a data in LBC SDRAM (memtest
10323     didn't discover any issues, is LBC SDRAM just too slow?).
10325     With this patch we can still use the board without DDR memory, but
10326     if DDR is available, we don't use LBC SDRAM.
10328     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10329     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10331 commit d77c779bc23596aa3693d1c5c4d5b6e1072f93f2
10332 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10333 Date:   Wed Sep 16 23:21:55 2009 +0400
10335     net: uec: Fix uccf.h and uec.h headers to include headers they depend on
10337     Headers should include headers containing prototypes and defines they
10338     depend on, don't assume that they're included by somebody else.
10340     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10341     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10343 commit 6185f80c311cc3bdef2f8d5096c61e40ca6f48b2
10344 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10345 Date:   Wed Sep 16 23:21:53 2009 +0400
10347     net: uec_phy: Implement TXID and RXID RGMII modes for Marvell PHYs
10349     This will be needed for MPC8360E-MDS boards with rev. 2.1 CPUs.
10351     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10352     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10354 commit 984f10baac8ef6032df52f135943d6b0bc96f724
10355 Author: Wolfgang Denk <wd@denx.de>
10356 Date:   Fri Sep 25 14:16:00 2009 +0200
10358     mpc5121ads: fix breakage introduced when reordering elpida_mddrc_config[]
10360     Signed-off-by: Wolfgang Denk <wd@denx.de>
10362 commit 6e748ea004473cce99fbde6382dd580c10ffdb60
10363 Author: Ken MacLeod <ken@bitsko.slc.ut.us>
10364 Date:   Fri Sep 11 15:16:18 2009 -0500
10366     cmd_fdt.c: fix parse of byte streams and strings
10368     Commit 4abd844d8e extended the fdt command parser to handle property
10369     strings which are split across multiple arguments but it was broken for
10370     byte streams and strings.
10372     Byte stream parsing:
10374      * Fixes where it would terminate early or go into an endless loop.
10376      * Fixes a 0x00 being inserted into the data if there is a space after
10377        '[' or a separate argument.
10379      * Fixes dereferencing the argument pointer after the last argument.
10381      * Checks for bad characters.
10383     String parsing:
10385      * Treat multiple arguments as a string list.  This fixes an issue where
10386        only the last argument was stored.
10388     Signed-off-by: Ken MacLeod <ken@bitsko.slc.ut.us>
10390 commit 3887c3fbdbbe6bbb4df60ed415c8e1ab9fe56b5e
10391 Author: Heiko Schocher <hs@denx.de>
10392 Date:   Wed Sep 23 07:56:08 2009 +0200
10394     mucmc52, uc101: delete ata@3a00 node, if no CF card is detected
10396     U-Boot can detect if an IDE device is present or not.
10397     If not, and this new config option is activated, U-Boot
10398     removes the ATA node from the DTS before booting Linux,
10399     so the Linux IDE driver does not probe the device and
10400     crash. This is needed for buggy hardware (uc101) where
10401     no pull down resistor is connected to the signal IDE5V_DD7.
10403     Signed-off-by: Heiko Schocher <hs@denx.de>
10405 commit 7f625fc6d3ba8f890e843ac01717804c2462ed53
10406 Author: Heiko Schocher <hs@denx.de>
10407 Date:   Wed Sep 23 07:56:04 2009 +0200
10409     mpc5200, mucmc52, uc101: config cleanup
10411     - As these boards are similiar, collect common config options
10412       in manroland/common.h and manroland/mpc52xx-common.h
10413       for mpc5200 specific common options for this manufacturer.
10414     - add OF support
10415     - update default environment
10417     Signed-off-by: Heiko Schocher <hs@denx.de>
10419     Minor edit of commit message.
10421     Signed-off-by: Wolfgang Denk <wd@denx.de>
10423 commit 9d142ea8f787882ab732fa531a34db091bfa363d
10424 Author: Wolfgang Denk <wd@denx.de>
10425 Date:   Fri Sep 25 00:57:49 2009 +0200
10427     Fix "ppc/85xx: Clean up use of LAWAR defines" breakage
10429     Commit 002741ae86 modified include/asm-ppc/mmu.h such that the LAWAR_
10430     defines were only enabled for the 83xx platform, but they are also
10431     needed on MPC512x system. Enabling these for E300 systems seems thus
10432     more appropriate.
10434     Signed-off-by: Wolfgang Denk <wd@denx.de>
10436 commit a5aa3998ab6408a6ac738a3ce8005e647b9465f8
10437 Author: Martha M Stan <mmarx@silicontkx.com>
10438 Date:   Mon Sep 21 14:08:00 2009 -0400
10440     Add Elpida Memory Configuration to mpc5121ads Boards
10442     Signed-off-by: Martha M Stan <mmarx@silicontkx.com>
10444     Minor coding style cleanup.
10446     Signed-off-by: Wolfgang Denk <wd@denx.de>
10448 commit 054197ba8ee5ef1e41694df58531b6e53ec43f2d
10449 Author: Martha M Stan <mmarx@silicontkx.com>
10450 Date:   Mon Sep 21 14:07:14 2009 -0400
10452     mpc512x: Streamlined fixed_sdram() init sequence.
10454     Signed-off-by: Martha M Stan <mmarx@silicontkx.com>
10456     Minor cleanup:
10458     Re-ordered default_mddrc_config[] to have matching indices.
10460     This allows to use the same index "N" for source and target fields;
10461     before, we had code like this
10463         out_be32(&im->mddrc.ddr_time_config2, mddrc_config[3]);
10465     which always looked like a copy & paste error because 2 != 3.
10467     Also, use NULL when meaning a null pointer.
10469     Signed-off-by: Wolfgang Denk <wd@denx.de>
10471 commit 39aaca1f66a0e5b1204b0789f6c0097938c00ad1
10472 Author: Kumar Gala <galak@kernel.crashing.org>
10473 Date:   Thu Mar 19 02:46:19 2009 -0500
10475     ppc/p4080: Determine various chip frequencies on CoreNet platforms
10477     The means to determine the core, bus, and DDR frequencies are completely
10478     new on CoreNet style platforms.  Additionally on p4080 we can have
10479     different frequencies for FMAN and PME IP blocks.  We need to keep track
10480     of the FMAN & PME frequencies since they are used for time stamping
10481     capabilities inside each block.
10483     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10485 commit 3c2a67eec8a0facc865b400caca52e7f6b7adf01
10486 Author: Kumar Gala <galak@kernel.crashing.org>
10487 Date:   Thu Sep 17 01:52:37 2009 -0500
10489     ppc/p4080: Handle timebase enabling and frequency reporting
10491     On CoreNet style platforms the timebase frequency is the bus frequency
10492     defined by 16 (on PQ3 it is divide by 8).  Also on the CoreNet platforms
10493     the core not longer controls the enabling of the timebase.  We now need
10494     to enable the boot core's timebase via CCSR register writes.
10496     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10498 commit 7e4259bba4c56536760e42d32dacfb3233f216fd
10499 Author: Kumar Gala <galak@kernel.crashing.org>
10500 Date:   Thu Mar 19 02:39:17 2009 -0500
10502     ppc/p4080: Add various p4080 related defines (and p4040)
10504     There are various locations that we have chip specific info:
10506     * Makefile for which ddr code to build
10507     * Added p4080 & p4040 to cpu_type_list and SVR list
10508     * Added number of LAWs for p4080
10509     * Set CONFIG_MAX_CPUS to 8 for p4080
10511     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10513 commit 39a7e7fd538cdf49e7e8a2f0634ea5e15e12b4ec
10514 Author: Kumar Gala <galak@kernel.crashing.org>
10515 Date:   Thu Sep 17 01:44:39 2009 -0500
10517     ppc/p4080: CoreNet platfrom style secondary core release
10519     The CoreNet platform style of bringing secondary cores out of reset is
10520     a bit different that the PQ3 style.  Mostly the registers that we use
10521     to setup boot translation, enable time bases, and boot release the cores
10522     have moved around.
10524     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10526 commit a880cf3e0e1c220d780eccd0b101170c4499485d
10527 Author: Kumar Gala <galak@kernel.crashing.org>
10528 Date:   Thu Sep 17 01:44:00 2009 -0500
10530     ppc/p4080: CoreNet platfrom style CCSRBAR setting
10532     On CoreNet based platforms the CCSRBAR address is split between an high &
10533     low register and we no longer shift the address.
10535     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10536     Signed-off-by: Scott Wood <scottwood@freescale.com>
10538 commit 418ec8584343f04048e2cc7ee96b6b29be54ad97
10539 Author: Kumar Gala <galak@kernel.crashing.org>
10540 Date:   Thu Mar 19 02:32:23 2009 -0500
10542     ppc/p4080: Add support for CoreNet style platform LAWs
10544     On CoreNet based platforms the LAW address is split between an high &
10545     low register and we no longer shift the address.  Also, the target IDs
10546     on CoreNet platforms have been completely re-assigned.
10548     Additionally, added a new find_law() API to which LAW an address hits in.
10549     This is need for the CoreNet style boot release code since it will need
10550     to determine what the target ID should be set to for boot window
10551     translation.
10553     Finally, enamed LAWAR_EN to LAW_EN and moved to header so we can use
10554     it elsewhere.
10556     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10558 commit 01df521217957d77d53c2d570183eded7030938f
10559 Author: Kumar Gala <galak@kernel.crashing.org>
10560 Date:   Wed Sep 16 09:43:12 2009 -0500
10562     ppc/p4080: Add p4080 platform immap definitions
10564     The p4080 SoC has a significant amount of commonality with the 85xx/PQ3
10565     platform.  We reuse the 85xx immap and just add new definitions for
10566     local access and global utils.  The global utils is now broken into
10567     global utils, clocking and run control/power management.
10569     The offsets from CCSR for a number of blocks have also changed.  We
10570     introduce the CONFIG_FSL_CORENET define to distinquish the PQ3 style of
10571     platform from the new p4080 platform.  We don't use QoirQ as there are
10572     products (like p2020) that are PQ3 based platforms but have the QoirQ
10573     name.
10575     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10577 commit 25bacf7a2b096496e2c58f2de4e5b2bce8fba038
10578 Author: Kumar Gala <galak@kernel.crashing.org>
10579 Date:   Tue Sep 22 15:45:44 2009 -0500
10581     ppc/85xx: Fix enabling of L2 cache
10583     We need to flash invalidate the locks in addition to the cache
10584     before we enable.
10586     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10588 commit cb0ff65c619efacdc0ba69aa8ee6ede7dd364a38
10589 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
10590 Date:   Tue Sep 22 12:48:27 2009 +0530
10592     85xx-fdt: Fixed l2-ctlr's compatible prop for QorIQ
10594     The code assumed names where just numbers and always prefixed 'mpc'.
10595     However newer QorIQ don't follow the mpc naming scheme.
10597     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
10598     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10600 commit 234a89d911ce28e46372f555d7c14e28424f2b0d
10601 Author: Mingkai Hu <Mingkai.hu@freescale.com>
10602 Date:   Tue Sep 22 14:53:21 2009 +0800
10604     ppc/85xx: add cpu init config file for boot from NAND
10606     When boot from NAND, the NAND flash must be connected to br/or0.
10607     Also init RAM(L2 SRAM or DDR SDRAM) for load the second image to
10608     it.
10610     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
10611     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10613 commit 266139b88b43ae1d87abb5f5431e6f57b801795f
10614 Author: Mingkai Hu <Mingkai.hu@freescale.com>
10615 Date:   Tue Sep 22 14:53:34 2009 +0800
10617     immap_85xx: add porpllsr's plat ratio definition
10619     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
10620     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10622 commit 098bcbae3172d73d24ca8ba196328d901eed4132
10623 Author: Mingkai Hu <Mingkai.hu@freescale.com>
10624 Date:   Tue Sep 22 14:53:10 2009 +0800
10626     ppc/85xx: add ld script file for boot from NAND
10628     The first stage 4K image uses a seperate ld script file to
10629     generate 4K image. This patch moves it to the cpu/mpc85xx/*
10630     to make it avaliable for 85xx platform.
10632     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
10633     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10635 commit 8439f05cfd8cbb38485376a34d9fe297ba262737
10636 Author: Peter Tyser <ptyser@xes-inc.com>
10637 Date:   Mon Sep 21 23:09:28 2009 -0500
10639     mpc8610hpcd: Use common 86xx fdt fixup code
10641     Using the common 86xx fdt fixups removes some board-specific code and
10642     should make the mpc8610hpcd easier to maintain in the long run.
10644     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10645     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10647 commit 928435d11b898870415910efff87a4d6399cecb8
10648 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10649 Date:   Mon Sep 21 17:19:17 2009 -0400
10651     sbc85x0: tidy up Makefile to use new configuration script.
10653     Commit 804d83a5 allows us to move all the configuration
10654     variation tweaks out of the top level Makefile and down
10655     into the boards config header.  This takes advantage of
10656     that for the sbc8540/sbc8560 boards.
10658     There were a couple of cheezy comments pointing at incorrect
10659     files, or files that don't exist, so I've cleaned those up too.
10661     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10662     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10664 commit 2738bc8df65ec905094d83f62f87fed123a03b9c
10665 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10666 Date:   Sun Sep 20 20:36:06 2009 -0400
10668     sbc8548: allow enabling PCI via a make config option
10670     Prior to this commit, to enable PCI, you had to go manually
10671     edit the board config header, and if you had 33MHz PCI, you
10672     had to manually change CONFIG_SYS_NS16550_CLK too, which was
10673     not real user friendly,
10675     This adds the typical PCI and clock speed make targets to the
10676     toplevel Makefile in accordance with what is being done with
10677     other boards (i.e. using the "-t" to mkconfig).
10679     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10680     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10682 commit fdc7eb90b504daa020f290604d50da8f7cb70d8a
10683 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10684 Date:   Sun Sep 20 20:36:05 2009 -0400
10686     sbc8548: update PCI/PCI-e support code
10688     The PCI/PCI-e support for the sbc8548 was based on an earlier
10689     version of what the MPC8548CDS board was using, and in its
10690     current state it won't even compile.  This re-syncs it to match
10691     the latest codebase and makes use of the new shared PCI functions
10692     to reduce board duplication.
10694     It borrows from the MPC8568MDS, in that it pulls the PCI-e I/O
10695     back to 0xe280_0000 (where PCI2 would be on MPC8548CDS), and
10696     similarly it coalesces the PCI and PCI-e mem into one single TLB.
10698     Both PCI-x and PCI-e have been tested with intel e1000 cards
10699     under linux (with an accompanying dts change in place)
10701     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10702     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10704 commit a8b3e90f798e0cca5f11c912f9d0823a1c5b6c24
10705 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10706 Date:   Sun Sep 20 20:36:01 2009 -0400
10708     fsl_pci: create a SET_STD_PCI_INFO() helper wrapper
10710     Recycle the recently added PCI-e wrapper used to reduce board
10711     duplication of code by creating a similar version for plain PCI.
10713     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10714     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10716 commit 11d5a629f8a40f9d7cffc74e58f4e3ed258e56ab
10717 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10718 Date:   Sun Sep 20 20:36:04 2009 -0400
10720     sbc8548: correct local bus SDRAM size from 64M to 128M
10722     The size of the LB SDRAM on this board is 128MB, spanning CS3
10723     and CS4.  It was previously only being configured for 64MB on
10724     CS3, since that was what the original codebase of the MPC8548CDS
10725     had.  In addition to setting up BR4/OR4, this also adds the TLB
10726     entry for the second half of the SDRAM.
10728     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10729     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10731 commit 0c7e4d45d9fb3c9e503ee93d50572d346dae150e
10732 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10733 Date:   Sun Sep 20 20:36:03 2009 -0400
10735     sbc8548: use I/O accessors
10737     Sweep throught the board specific file and replace the various
10738     register proddings with the equivalent I/O accessors.
10740     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10741     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10743 commit fc38eb98ff226f2c53eecbee033a6ab7619473dc
10744 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10745 Date:   Sun Sep 20 20:36:02 2009 -0400
10747     sbc8548: remove eTSEC3/4 voltage hack
10749     With only eTSEC1 and 2 being brought out to RJ-45 connectors, we
10750     aren't interested in the eTSEC3/4 voltage hack on this board
10752     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10753     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10755 commit 9b3ba24f18900633a394416cc056c44a1a6eb754
10756 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10757 Date:   Fri Sep 18 19:08:41 2009 -0400
10759     sbc8548: enable access to second bank of flash
10761     The sbc8548 has a 64MB SODIMM flash module off of CS6 that
10762     previously wasn't enumerated by u-boot.  There were already
10763     BR6/OR6 settings for it [used by cpu_init_f()] but there
10764     was no TLB entry and it wasn't in the list of flash banks
10765     reported to u-boot.
10767     The location of the 64MB flash is "pulled back" 8MB from
10768     a 64MB boundary, in order to allow address space for the
10769     8MB boot flash that is at the end of 32 bit address space.
10770     This means creating two 4MB TLB entries for the 8MB chunk,
10771     and then expanding the original boot flash entry to 64MB
10772     in order to cover the 8MB boot flash and the remainder
10773     (56MB) of the user flash.
10775     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10776     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10778 commit ded58f4153923dfff16d2f96495bd7acf1f7e10e
10779 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10780 Date:   Wed Sep 23 17:30:57 2009 -0400
10782     sbc8548: cosmetic line re-wrap
10784     Fix the extra long lines to be consistent with u-boot coding style.
10785     No functional change here.
10787     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10789 commit 2c40acd3525b75db3fcd3f5a5bd40445679b5547
10790 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10791 Date:   Fri Sep 18 19:08:40 2009 -0400
10793     sbc8548: get_clock_freq is not valid for this board
10795     The get_clock_freq() comes from freescale/common/cadmus.c and is
10796     only valid for the CDS based 85xx reference platforms.  It would
10797     be nice if we could read the 33 vs. 66MHz status somehow, but in
10798     the meantime, tie it to CONFIG_SYS_CLK_FREQ like all the other
10799     non-CDS boards do.
10801     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10802     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10804 commit 7b1f1399e876587e0a268a5a471dd444bfbc3114
10805 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10806 Date:   Fri Sep 18 19:08:39 2009 -0400
10808     sbc8548: delete unused MPC8548CDS info carried over from port
10810     There are a couple defines and PCI bridge quirks related to the PCI
10811     backplane of the MPC8548CDS that have no meaning in the context of
10812     the port to the sbc8548 board, so delete them.
10814     Also, the form factor of the sbc8548 is a standalone board with a
10815     single PCI-X and a single PCI-e slot.  That pretty much guarantees
10816     that it will never be a PCI agent itself, so the host/agent and root
10817     complex/end node distinctions have been removed.
10819     Similarly, since there is no physical connector mapping to PCI2, so
10820     all references of PCI2 in the board support files have been removed
10821     as well.
10823     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10824     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10826 commit 94ca091456d5c3040ddd6351c80cf3e74393f9be
10827 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10828 Date:   Fri Sep 18 19:08:44 2009 -0400
10830     sbc8548: enable use of PCI network cards
10832     Create a board_eth_init to allow a place to hook in
10833     the PCI ethernet init after all the eTSEC are up
10834     and configured.
10836     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10837     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10839 commit 82b7725b6d46d9ad2b962b4cdfa896bd5ee32fb5
10840 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
10841 Date:   Sat Sep 19 17:50:17 2009 +0530
10843     ppc/85xx: 32bit DDR changes for P1020/P1011
10845     The P1020/P1011 SOCs support max 32bit DDR width as opposed to P2020/P2010
10846     where max DDR data width supported is 64bit.
10848     As a next step the DDR data width initialization would be made more dynamic
10849     with more flexibility from the board perspective and user choice.
10850     Going forward we would also remove the hardcodings for platforms with onboard
10851     memories and try to use the FSL SPD code for DDR initialization.
10853     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
10854     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10856 commit bd42bbb858dde713f023fc2e4f512ec174a1a8d2
10857 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10858 Date:   Fri Sep 18 19:08:46 2009 -0400
10860     sbc8548: replace README with completely new document
10862     The previous README.sbc8548 was pretty much content-free. Replace
10863     it with something that actually gives the end user some relevant
10864     hardware details, and also lists the u-boot configuration choices.
10866     Also in the cosmetic department, fix the bogus line in the Makefile
10867     that was carried over from the SBC8560 Makefile, and the typo in
10868     the sbc8548.c copyright.
10870     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10871     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10873 commit 002741ae862c1c7e3dad89d020e392e6add1c05d
10874 Author: Kumar Gala <galak@kernel.crashing.org>
10875 Date:   Sat Sep 19 11:20:54 2009 -0500
10877     ppc/85xx: Clean up use of LAWAR defines
10879     On 85xx platforms we shouldn't be using any LAWAR_* defines
10880     but using the LAW_* ones provided by fsl-law.h.  Rename any such
10881     uses and limit the LAWAR_ to the 83xx platform as the only user so
10882     we will get compile errors in the future.
10884     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10886 commit f61dae7c9dc526410faec15ce352b11fc36a560b
10887 Author: Kumar Gala <galak@kernel.crashing.org>
10888 Date:   Thu Sep 3 10:20:09 2009 -0500
10890     ppc/85xx: Clean up mpc8572DS PCI setup code
10892     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
10893     board ports, use IO accessors and clean up printing of status info.
10895     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10897 commit 4958af8735207640181c4423e41b24ee7418361a
10898 Author: Kumar Gala <galak@kernel.crashing.org>
10899 Date:   Thu Sep 3 09:42:01 2009 -0500
10901     ppc/85xx: Clean up p2020ds PCI setup code
10903     Use new fsl_pci_init_port() that reduces amount of duplicated code in the
10904     board ports, use IO accessors and clean up printing of status info.
10906     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10908 commit 93a83872c707891bad22f7776d79a650c870601f
10909 Author: Kumar Gala <galak@kernel.crashing.org>
10910 Date:   Thu Sep 3 10:09:04 2009 -0500
10912     ppc/85xx: Clean up p1_p2_rdb PCI setup
10914     General code cleanup to use in/out IO accessors as well as making
10915     the code that prints out info sane between board and generic fsl pci
10916     code.
10918     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10920 commit 62ca21c442e18fec118ec83e183d64ea49966ce7
10921 Author: Kumar Gala <galak@kernel.crashing.org>
10922 Date:   Thu Sep 10 16:31:53 2009 -0500
10924     ppc/85xx: Simplify the top makefile for P1_P2_RDB boards
10926     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10928 commit a0f9e0e0f06033807de0ae017ad4d9cf5ddff84b
10929 Author: Kumar Gala <galak@kernel.crashing.org>
10930 Date:   Thu Sep 10 16:26:37 2009 -0500
10932     ppc/85xx: Simplify the top makefile for 36-bit config for P2020DS
10934     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10936 commit f9edcc10e6cb497dd7dcbaf691cfd1859abae27a
10937 Author: Kumar Gala <galak@kernel.crashing.org>
10938 Date:   Thu Sep 10 16:23:45 2009 -0500
10940     ppc/85xx: Simplify the top makefile for 36-bit config for MPC8572DS
10942     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10944 commit 0e905ac28b1e039d74e63232293972bff6b5a0ce
10945 Author: Mingkai Hu <Mingkai.hu@freescale.com>
10946 Date:   Fri Sep 18 11:45:09 2009 +0800
10948     ppc/85xx: simplify the top makefile for 36-bit config for mpc8536ds
10950     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
10951     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10953 commit 202d94875c98b7b573f136c4f353609758ed9733
10954 Author: Kumar Gala <galak@kernel.crashing.org>
10955 Date:   Tue Sep 15 22:21:58 2009 -0500
10957     ppc/85xx: Fix LCRR_CLKDIV defines
10959     For some reason the CLKDIV field varies between SoC in how it interprets
10960     the bit values.
10962     All 83xx and early (e500v1) PQ3 devices support:
10963      clk/2: CLKDIV = 2
10964      clk/4: CLKDIV = 4
10965      clk/8: CLKDIV = 8
10967     Newer PQ3 (e500v2) and MPC86xx support:
10968      clk/4: CLKDIV = 2
10969      clk/8: CLKDIV = 4
10970      clk/16: CLKDIV = 8
10972     Ensure that the MPC86xx and MPC85xx still get the same behavior and make
10973     the defines reflect their logical view (not the value of the field).
10975     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10976     Acked-by: Peter Tyser <ptyser@xes-inc.com>
10978 commit 55f786d8ba8ce58a81428536da34a2192b9bad9f
10979 Author: Peter Tyser <ptyser@xes-inc.com>
10980 Date:   Mon Sep 21 12:04:33 2009 -0500
10982     MAKEALL: Use POSIX math
10984     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10986 commit 40a28f0885e62b6607e12ed6baa6284927f5263e
10987 Author: Peter Tyser <ptyser@xes-inc.com>
10988 Date:   Mon Sep 21 12:04:32 2009 -0500
10990     MAKEALL: Add summary information
10992     This change adds some basic summary information to the MAKEALL script.
10993     The summary information includes how many boards were compiled, how many
10994     boards had compile warnings or errors, and which specific boards had
10995     compile warnings or errors.
10997     This information is useful when doing compile testing to quickly
10998     determine which boards are broken.
11000     As a side benefit, no empty $BOARD.ERR files are generated by MAKEALL.
11001     Previously, each board had a corresponding $BOARD.ERR file, even if the
11002     board compiled cleanly.
11004     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11006 commit 71ce9bd7f551e44c4ddb4c985c095da6d3452d79
11007 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
11008 Date:   Mon Sep 21 11:05:55 2009 -0500
11010     galaxy5200: enable version environment variable
11012     Add version environment variable configuration to the galaxy5200
11013     board header file.
11015     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
11017     Edited commit message.
11019     Signed-off-by: Wolfgang Denk <wd@denx.de>
11021 commit c569ad6e1e8768a0fec513ffc156412240b7eb35
11022 Author: Werner Pfister <werner.pfister@intercontrol.de>
11023 Date:   Mon Sep 21 14:49:56 2009 +0200
11025     digsy_mtc: Add TCR register value for RTC (DS1339)
11027     Signed-off-by: Werner Pfister <werner.pfister@intercontrol.de>
11028     Signed-off-by: Detlev Zundel <dzu@denx.de>
11030 commit b0078c8792badd81aed51b7eabe85e960036361c
11031 Author: Werner Pfister <werner.pfister@intercontrol.de>
11032 Date:   Mon Sep 21 14:49:55 2009 +0200
11034     rtc/ds1337.c: Allow to set TCR register
11036     This is needed to correctly start the charging of an attached capacitor
11037     or battery.
11039     Signed-off-by: Werner Pfister <werner.pfister@intercontrol.de>
11040     Signed-off-by: Detlev Zundel <dzu@denx.de>
11042 commit 9d7952e4c636b8c99289a44dbe28c6f93c43b9f7
11043 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
11044 Date:   Tue Sep 15 09:53:29 2009 +0200
11046     ubifs: Add support for looking up directory and relative symlinks
11048     This patch adds support for resolving symlinks to directories as well as
11049     relative symlinks. Symlinks are now always resolved during file lookup,
11050     so the load stage no longer needs to special-case them.
11052     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
11053     Signed-off-by: Stefan Roese <sr@denx.de>
11055 commit fcdb36b85ac033c09a9762a0a14808f7cb2ed54c
11056 Author: Rupjyoti Sarmah <rsarmah@amcc.com>
11057 Date:   Mon Sep 21 11:26:19 2009 -0700
11059     ppc4xx: Fix PCIE PLL lock on 440SPe Yucca board
11061     u-boot reports a PCIE PLL lock error at boot time on Yucca board, and
11062     left PCIe nonfunctional. This is fixed by making u-boot function
11063     ppc4xx_init_pcie() to wait 300 uS after negating reset before the
11064     first check of the PLL lock.
11066     Signed-off-by: Rupjyoti Sarmah <rsarmah@amcc.com>
11067     Signed-off-by: Stefan Roese <sr@denx.de>
11069 commit 91d599044caac4a8c228115b16cf3b073f902080
11070 Author: Dirk Eibach <eibach@gdsys.de>
11071 Date:   Mon Sep 21 13:27:14 2009 +0200
11073     ppc4xx: Make DDR2 timing for intip more robust
11075     DDR2 timing for intip was on the edge for some of the available chips
11076     for this board. Now it is verfied to work with all of them.
11078     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
11079     Signed-off-by: Stefan Roese <sr@denx.de>
11081 commit 184a3a27f5cd2c64666f74df94c86b94c4383ef8
11082 Author: Wolfgang Denk <wd@denx.de>
11083 Date:   Tue Sep 15 00:26:02 2009 +0200
11085     board/linkstation/ide.c: Fix compile warning
11087     Fix warning: ide.c:60: warning: dereferencing type-punned pointer will
11088     break strict-aliasing rules
11090     Signed-off-by: Wolfgang Denk <wd@denx.de>
11091     Cc: Guennadi Liakhovetski <lg@denx.de>
11093 commit 004eca0c9ba328de457d5dc9ef8805639dfef893
11094 Author: Peter Tyser <ptyser@xes-inc.com>
11095 Date:   Wed Sep 16 22:03:08 2009 -0500
11097     ppc: Clean up calling of phy_reset() during init
11099     Remove board-specific #ifdefs for calling phy_reset() during
11100     initializtion
11102     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11104 commit 3a8f28d0a6d9f8505017680233064c13e4587174
11105 Author: Peter Tyser <ptyser@xes-inc.com>
11106 Date:   Wed Sep 16 22:03:07 2009 -0500
11108     ppc: Clean up calling of misc_init_r() during init
11110     Remove board-specific #ifdefs for calling misc_init_r() during
11111     initializtion
11113     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11114     Acked-by: Heiko Schocher <hs@denx.de>
11116 commit 3202d33169df04da5cf3dea8c5ab0a902b90ecaa
11117 Author: Peter Tyser <ptyser@xes-inc.com>
11118 Date:   Wed Sep 16 21:38:10 2009 -0500
11120     Remove deprecated 'autoscr' command/variables
11122     The more standard 'source' command provides identical functionality to
11123     the autoscr command.
11125     Environment variable names/values on the MVBC_P, MVBML7, kmeter1,
11126     mgcoge, and km8xx boards are updated to no longer refernce 'autoscr'.
11128     The 'autoscript' and 'autoscript_uname' environment variables are
11129     also removed.
11131     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11132     Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
11133     Acked-by: Heiko Schocher <hs@denx.de>
11135 commit d3f4941874a20d8a390a36ba71335ae1db2f9ba0
11136 Author: Paul Gibson <paul.gibson2074@gmail.com>
11137 Date:   Wed Sep 16 10:05:00 2009 +1000
11139     mpc512x. Micron nand flash needs a reset before a read command is issued.
11141     Micron nand flash needs a reset before a read command is issued.
11142     The current mpc5121_nfc driver ignores the reset command.
11144 commit b55ae40249545eabb9d6bfb850b1400a32561b1f
11145 Author: Marcel Ziswiler <marcel@ziswiler.com>
11146 Date:   Wed Sep 9 21:18:41 2009 +0200
11148     FDT: remove obsolete OF_CPU and OF_SOC macros.
11150     Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
11151     Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
11152     Acked-by: Heiko Schocher <hs@denx.de>
11154 commit 3b6a9267f0de7b85d387fa4123d0b58379363447
11155 Author: Wolfgang Denk <wd@denx.de>
11156 Date:   Tue Sep 15 00:09:21 2009 +0200
11158     board/flagadm/flash.c: fix compile warning
11160     Fix warning: flash.c:531: warning: dereferencing type-punned pointer
11161     will break strict-aliasing rules
11163     Signed-off-by: Wolfgang Denk <wd@denx.de>
11164     Cc: Kári Davíðsson <kd@flaga.is>
11166 commit 0413cfecea350000eab5e591a0965c3e3ee0ff00
11167 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
11168 Date:   Thu Sep 17 15:15:52 2009 +0200
11170     Correct ffs/fls regression for PowerPC etc
11172     Commits
11174       02f99901ed1c9d828e3ea117f94ce2264bf8389e
11175       52d61227b66d4099b39c8309ab37cb67ee09a405
11177     introduced a regression where platform-specific ffs/fls implementations
11178     were defined away. This patch corrects that by using PLATFORM_xxx
11179     instead of the name itself.
11181     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
11182     Acked-by: Kumar Gala <galak@kernel.crashing.org>
11183     Acked-by: Stefan Roese <sr@denx.de>
11185 commit e67af44d0167d8237dd2c2ddf8e301d19ca12914
11186 Author: Stefan Roese <sr@denx.de>
11187 Date:   Mon Sep 14 11:13:34 2009 +0200
11189     ppc4xx: Consolidate get_OPB_freq()
11191     All 4xx variants had their own, mostly identical get_OPB_freq()
11192     function. Some variants even only had the OPB frequency calculated
11193     in this routine and not supplied the sys_info.freqOPB variable
11194     correctly (e.g. 405EZ). This resulted in incorrect OPB values passed
11195     via the FDT to Linux.
11197     This patch now removes all those copies and only uses one function
11198     for all 4xx variants (except for IOP480 which doesn't have an OPB).
11200     Signed-off-by: Stefan Roese <sr@denx.de>
11202 commit 84a45d33c2cc261dbd5411f7c2ad45f6003025b6
11203 Author: Stefan Roese <sr@denx.de>
11204 Date:   Fri Sep 11 17:09:45 2009 +0200
11206     ppc4xx: Enable commands for FDT enabled Linux booting on AMCC Acadia
11208     Acadia still used the "old" arch/ppc bootm commands for booting
11209     Linux images without FDT. This patch now enables these fdt-aware
11210     boot commands for Acadia as well.
11212     Signed-off-by: Stefan Roese <sr@denx.de>
11214 commit 95a4a593b577b6e2f1da2d4b0f5ec86975c33413
11215 Author: Stefan Roese <sr@denx.de>
11216 Date:   Fri Sep 11 17:07:55 2009 +0200
11218     ppc4xx: Fix 405EZ uart base baud calculation
11220     With this fix, Linux correctly configures the baudrate when booting
11221     with FDT passed from U-Boot to Linux.
11223     Signed-off-by: Stefan Roese <sr@denx.de>
11225 commit 15fba3279b56333bdb65ead366f82c945ed320d1
11226 Author: Kumar Gala <galak@kernel.crashing.org>
11227 Date:   Fri Sep 11 15:28:41 2009 -0500
11229     ppc/85xx: Disable all async interrupt sources when we boot
11231     We should make sure to clear MSR[ME, CE, DE] when we boot an OS image
11232     since we have changed the exception vectors and the OSes vectors might
11233     not be setup we should avoid async interrupts at all costs.
11235     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11237 commit 9f00409a9d04cf533305531da32437130802f3a3
11238 Author: Kumar Gala <galak@kernel.crashing.org>
11239 Date:   Fri Sep 11 13:52:45 2009 -0500
11241     ppc/85xx: Split out cpu_init_early into its own file for NAND_SPL
11243     By pulling out cpu_init_early we can build just it and not all of
11244     cpu_init for NAND_SPL.
11246     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11248 commit 0456dbf3475d0aec42873a967ac97ed81f376119
11249 Author: Kumar Gala <galak@kernel.crashing.org>
11250 Date:   Fri Sep 11 13:41:49 2009 -0500
11252     ppc/85xx: Change cpu_init_early_f so we can use with NAND SPL
11254     Use write_tlb and don't use memset so we can use the same code for
11255     cpu_init_early_f between NAND SPL and not.
11257     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11259 commit 6e1385d5f8d137e741dfef02465d7dc328040ad7
11260 Author: Mingkai Hu <Mingkai.hu@freescale.com>
11261 Date:   Fri Sep 11 10:53:08 2009 +0800
11263     NAND boot: change NAND loader's relocate SP to CONFIG param
11265     So that we can set the NAND loader's relocate stack pointer
11266     to the value other than the relocate address + 0x10000.
11268     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
11269     Acked-by: Kim Phillips <kim.phillips@freescale.com>
11270     Acked-by: Scott Wood <scottwood@freescale.com>
11271     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11273 commit 7da53351d817c6d77364cfde922891f37d0e5ed8
11274 Author: Mingkai Hu <Mingkai.hu@freescale.com>
11275 Date:   Fri Sep 11 14:19:10 2009 +0800
11277     ppc/85xx: add boot from NAND/eSDHC/eSPI support
11279     The MPC8536E is capable of booting form NAND/eSDHC/eSPI, this patch
11280     implements these three bootup methods in a unified way - all of these
11281     use the general cpu/mpc85xx/start.S, and load the main image to L2SRAM
11282     which lets us use the SPD to initialize the SDRAM.
11284     For all three bootup methods, the bootup process can be divided into two
11285     stages: the first stage will initialize the corresponding controller,
11286     configure the L2SRAM, then copy the second stage image to L2SRAM and
11287     jump to it. The second stage image is just like the general U-Boot image
11288     to configure all the hardware and boot up to U-Boot command line.
11290     When boot from NAND, the eLBC controller will first load the first stage
11291     image to internal 4K RAM buffer because it's also stored on the NAND
11292     flash. The first stage image, also call 4K NAND loader, will initialize
11293     the L2SRAM, load the second stage image to L2SRAM and jump to it. The 4K
11294     NAND loader's code comes from the corresponding nand_spl directory, along
11295     with the code twisted by CONFIG_NAND_SPL.
11297     When boot from eSDHC/eSPI, there's no such a first stage image because
11298     the CPU ROM code does the same work. It will initialize the L2SRAM
11299     according to the config addr/word pairs on the fixed address and
11300     initialize the eSDHC/eSPI controller, then load the second stage image
11301     to L2SRAM and jump to it.
11303     The macro CONFIG_SYS_RAMBOOT is used to control the code to produce the
11304     second stage image for all different bootup methods. It's set in the
11305     board config file when one of the bootup methods above is selected.
11307     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
11308     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11310 commit b2eec281a811bb52941f61203d8fe35256b3582c
11311 Author: Kumar Gala <galak@kernel.crashing.org>
11312 Date:   Fri Sep 11 12:32:01 2009 -0500
11314     ppc/85xx: Move code around to prep for NAND_SPL
11316     If we move some of the functions in tlb.c around we need less
11317     ifdefs.  The first stage loader just needs invalidate_tlb and
11318     init_tlbs.
11320     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11322 commit 206af3527c05e520e28d38a48a1d15433e34675d
11323 Author: Kumar Gala <galak@kernel.crashing.org>
11324 Date:   Fri Sep 11 11:30:30 2009 -0500
11326     ppc/85xx: Repack tlb_table to save space
11328     We can pack the initial tlb_table in MAS register format and use
11329     write_tlb to set things up.  This savings can be helpful for NAND
11330     style first stage boot loaders.
11332     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11334 commit d30f9043539d372cf66406bc2f21bb8c20e67009
11335 Author: Kumar Gala <galak@kernel.crashing.org>
11336 Date:   Fri Sep 11 11:27:00 2009 -0500
11338     ppc/85xx: Introduce low level write_tlb function
11340     Factor out the code we use to actually write a tlb entry.
11342     set_tlb is a logical view of the TLB while write_tlb is a low level
11343     matching the MAS registers.
11345     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11347 commit 0ead6f2ed7cf4e1f70dab5b529ad121e38359485
11348 Author: Roy Zang <tie-fei.zang@freescale.com>
11349 Date:   Thu Sep 10 14:44:48 2009 +0800
11351     ppc/85xx: Enable usb ehci support for p2020ds board
11353     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
11354     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11356 commit 6d8565a1ed5acb01bad4a4cd74a93be5f7fb7f7c
11357 Author: Kumar Gala <galak@kernel.crashing.org>
11358 Date:   Thu Sep 10 14:54:55 2009 -0500
11360     ppc/8xxx: Misc DDR related fixes
11362     * Fix setting of ESDMODE (MR1) register - the bit shifting was wrong
11363     * Fix the format string to match size in a debug print
11365     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11367 commit 3e3c9c157b89eab2dc2f897899b1b95cd70c1a58
11368 Author: Scott Wood <scottwood@freescale.com>
11369 Date:   Thu Aug 20 17:45:00 2009 -0500
11371     ppc/85xx: Remove some bogus code from external interrupt handler.
11373     Skipping the interrupted instruction will accomplish nothing other
11374     than turning a spurious interrupt into a crash.
11376     External interrupts are not machine checks, so don't count them as such.
11378     Signed-off-by: Scott Wood <scottwood@freescale.com>
11380 commit dcc87dd58db466caa2d66755c5ec9455edf42fe8
11381 Author: Scott Wood <scottwood@freescale.com>
11382 Date:   Thu Aug 20 17:45:05 2009 -0500
11384     ppc/85xx: Ensure that MAS8 is zero when writing TLB entries.
11386     Its reset value is random, and we sometimes read uninitialized TLB
11387     arrays.  Make sure that we don't retain MAS8 from reading such an entry
11388     if the VF bit in MAS8 is set, attempts to use the mapping will trap.
11390     Signed-off-by: Scott Wood <scottwood@freescale.com>
11392 commit 1b72dbecca2d7ad7a21c92d80227daa2d8ec5a57
11393 Author: Scott Wood <scottwood@freescale.com>
11394 Date:   Thu Aug 20 17:44:20 2009 -0500
11396     ppc/85xx: Don't enable interrupts before we're ready
11398     We cannot handle any exceptions while running in AS1, as the exceptions
11399     will transition back to AS0 without a valid mapping.
11401     Signed-off-by: Scott Wood <scottwood@freescale.com>
11403 commit 3ca55bce9c8bf00df06a20487fafc16fa2f8084b
11404 Author: Marcel Ziswiler <marcel@ziswiler.com>
11405 Date:   Fri Sep 11 07:50:33 2009 -0400
11407     mpc8260: remove Ethernet node fixup to use generic FDT code.
11409     Remove Ethernet node fixup from mgcoge and muas3001 boards and modify its
11410     configs for the common mpc8260 code to use generic Ethernet fixup.
11412     Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
11413     Tested-by: Heiko Schocher <hs@denx.de>
11415 commit 1c20e4a9fbc531e2149ae061e8583f5fad82f163
11416 Author: Mike Frysinger <vapier@gentoo.org>
11417 Date:   Wed Sep 9 12:20:21 2009 -0400
11419     tools/netconsole: use ncb automatically if available
11421     The standard netcat, while ubiquitous, doesn't handle broadcast udp packets
11422     properly.  The local ncb util does however.  So if ncb can be located in
11423     the standard locations, automatically use that instead.
11425     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11427 commit 770931805d292908a57a3d2c5f9a4fcde888b5a2
11428 Author: Mike Frysinger <vapier@gentoo.org>
11429 Date:   Wed Sep 9 12:20:20 2009 -0400
11431     tools/netconsole: make a bit more robust
11433     The netcat utility likes to exit when it receives an empty packet (as it
11434     thinks this means EOF).  This can easily occur when working with command
11435     line editing as this behavior will be triggered when using backspace.  Or
11436     with tabs and command line completion.  So create two netcat processes -
11437     one to only listen (and put it into a loop), and one to do the sending.
11438     Once the user quits the transmitting netcat, the listening one will be
11439     killed automatically.
11441     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11443 commit a6e19d69f63c14b7672c65ca4b014621c6fd0201
11444 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
11445 Date:   Mon Aug 24 09:10:16 2009 +0200
11447     arm: Define test_and_set_bit and test_and_clear bit for ARM
11449     Needed for (e.g.) ubifs support to work.
11451     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
11453 commit 52d61227b66d4099b39c8309ab37cb67ee09a405
11454 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
11455 Date:   Mon Aug 24 09:10:12 2009 +0200
11457     Define ffs/fls for all architectures
11459     UBIFS requires fls(), which is not defined for arm (and some other
11460     architectures) and this patch adds it. The implementation is taken from
11461     Linux and is generic. ffs() is also defined for those that miss it.
11463     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
11465 commit 4b15de08fe4d2c9d12a3764394731018a763216b
11466 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
11467 Date:   Mon Aug 24 09:10:03 2009 +0200
11469     arm: Make arm bitops endianness-independent
11471     Bring over the bitop implementations from the Linux
11472     include/asm-generic/bitops/non-atomic.h to provide
11473     endianness-independence.
11475     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
11477 commit 02f99901ed1c9d828e3ea117f94ce2264bf8389e
11478 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
11479 Date:   Mon Aug 24 09:09:50 2009 +0200
11481     Move __set/clear_bit from ubifs.h to bitops.h
11483     __set_bit and __clear_bit are defined in ubifs.h as well as in
11484     asm/include/bitops.h for some architectures. This patch moves
11485     the generic implementation to include/linux/bitops.h and uses
11486     that unless it's defined by the architecture.
11488     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
11490 commit 557555fe0b82940ba7cc69f81d31d6ef4d4933b4
11491 Author: Mike Frysinger <vapier@gentoo.org>
11492 Date:   Fri Sep 4 19:54:45 2009 -0400
11494     standalone: convert to kbuild style
11496     Clean up the arch/cpu/board/config checks as well as redundant setting of
11497     srec/bin variables by using the kbuild VAR-$(...) style.
11499     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11501 commit 804d83a563c47b55e1f14f5de3b6e9d7e2a7ef5e
11502 Author: Wolfgang Denk <wd@denx.de>
11503 Date:   Tue Sep 15 22:12:31 2009 +0200
11505     mkconfig: split the board make target to multiple config targets
11507     To simplify the top level makefile it useful to be able to parse
11508     the top level makefile target to multiple individual target, then
11509     put them to the config.h, leave the board config file to handle
11510     the different targets.
11512     Note that this method uses the '_'(underline) as the delimiter when
11513     splits the board make target.
11515     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
11517     This also reverts commit 511c02f611cb5afa1b8ca5980caaaabaa0de377f.
11519     Signed-off-by: Wolfgang Denk <wd@denx.de>
11521 commit ceb2d57c2205db5bbd868577f756c74a2568160c
11522 Author: Wolfgang Denk <wd@denx.de>
11523 Date:   Tue Sep 15 21:13:27 2009 +0200
11525     kwbimage.c: Fix compile warning when building on 64 bit systems (again)
11527     Commit 51003b89 attempted to fix a build problem on 64 bit systems,
11528     but just turned it into a build problem on 32 bit systems (silly me).
11530     Now do the Right Thing (TM) and use a "%zu" printf format.
11532     Also fix spelling error.
11534     Signed-off-by: Wolfgang Denk <wd@denx.de>
11536 commit 6c7bc91fb3dba186d3398a1653f6db236510ffa7
11537 Author: Wolfgang Denk <wd@denx.de>
11538 Date:   Fri Sep 11 11:30:34 2009 +0200
11540     board/amcc/common/flash.c: Fix compile warning
11542     Fix warning: ../common/flash.c:917: warning: dereferencing type-punned
11543     pointer will break strict-aliasing rules
11545     Signed-off-by: Wolfgang Denk <wd@denx.de>
11546     Cc: Stefan Roese <sr@denx.de>
11547     Acked-by: Stefan Roese <sr@denx.de>
11549 commit 70fb809c563c340538264d2a9436135e74c38bfe
11550 Author: Wolfgang Denk <wd@denx.de>
11551 Date:   Fri Sep 11 11:47:07 2009 +0200
11553     board/amcc/yucca/flash.c: Fix compile warning
11555     Fix warning: flash.c:919: warning: dereferencing type-punned pointer
11556     will break strict-aliasing rules
11558     Signed-off-by: Wolfgang Denk <wd@denx.de>
11559     Cc: Stefan Roese <sr@denx.de>
11560     Acked-by: Stefan Roese <sr@denx.de>
11562 commit 030ec52f8cc83015f968db30208f4bd07feffa6c
11563 Author: Wolfgang Denk <wd@denx.de>
11564 Date:   Fri Sep 11 11:44:39 2009 +0200
11566     board/amcc/taihu/flash.c: Fix compile warning
11568     Fix warnings:
11569     flash.c: In function 'write_word_1':
11570     flash.c:696: warning: dereferencing type-punned pointer will break strict-aliasing rules
11571     flash.c: In function 'write_word_2':
11572     flash.c:1044: warning: dereferencing type-punned pointer will break strict-aliasing rules
11574     Signed-off-by: Wolfgang Denk <wd@denx.de>
11575     Cc: Stefan Roese <sr@denx.de>
11576     Acked-by: Stefan Roese <sr@denx.de>
11578 commit 0fd3d902d920f3e60f88530c33f1ae7581260951
11579 Author: Wolfgang Denk <wd@denx.de>
11580 Date:   Fri Sep 11 11:37:20 2009 +0200
11582     board/etin/debris/phantom.c: Fix compile error
11584     Fix build problem caused by commit e84aba13: "Replace BCD2BIN and
11585     BIN2BCD macros with inline functions"
11587     phantom.c:163: error: redefinition of 'bcd2bin'
11588     /home/wd/git/u-boot/work/include/bcd.h:16: error: previous definition of 'bcd2bin' was here
11589     phantom.c:168: error: redefinition of 'bin2bcd'
11590     /home/wd/git/u-boot/work/include/bcd.h:21: error: previous definition of 'bin2bcd' was here
11592     Signed-off-by: Wolfgang Denk <wd@denx.de>
11593     Cc: Sangmoon Kim <dogoil@etinsys.com>
11595 commit 5168801f4b71c2f8dcd92a80cfcfda84246e67fe
11596 Author: Wolfgang Denk <wd@denx.de>
11597 Date:   Fri Sep 11 11:28:21 2009 +0200
11599     board/dave/common/flash.c: fix compile warning
11601     Fix warning: ../common/flash.c:668: warning: dereferencing type-punned
11602     pointer will break strict-aliasing rules
11604     Signed-off-by: Wolfgang Denk <wd@denx.de>
11605     Cc: Andrea Marson <andrea.marson@dave-tech.it>
11607 commit 97138fc48091f2b063c4e32f36d05854b9d113fb
11608 Author: Wolfgang Denk <wd@denx.de>
11609 Date:   Fri Sep 11 11:15:31 2009 +0200
11611     board/esd/cpci750/ide.c: fix compile warning
11613     Fix warning: ide.c:54: warning: dereferencing type-punned pointer will
11614     break strict-aliasing rules
11616     Signed-off-by: Wolfgang Denk <wd@denx.de>
11617     Cc: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11618     Cc: Stefan Roese <sr@denx.de>
11619     Acked-by: Stefan Roese <sr@denx.de>
11621 commit ba73060cf4163bd5eb1711020126e2f7f62d363e
11622 Author: Wolfgang Denk <wd@denx.de>
11623 Date:   Fri Sep 11 10:13:26 2009 +0200
11625     board/esd/common/flash.c: Fix compile warning
11627     Fix warning: ../common/flash.c:635: warning: dereferencing type-punned
11628     pointer will break strict-aliasing rules
11630     Signed-off-by: Wolfgang Denk <wd@denx.de>
11631     Cc: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11632     Cc: Stefan Roese <sr@denx.de>
11633     Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
11634     Acked-by: Stefan Roese <sr@denx.de>
11636 commit 2d6d9f0848e952ea33c658dfba335685a2725b8b
11637 Author: Wolfgang Denk <wd@denx.de>
11638 Date:   Fri Sep 11 09:36:31 2009 +0200
11640     sk98lin: fix compile warnings
11642     Fix warnings:
11643     skge.c: In function 'BoardInitMem':
11644     skge.c:1389: warning: dereferencing type-punned pointer will break strict-aliasing rules
11645     skge.c:1390: warning: dereferencing type-punned pointer will break strict-aliasing rules
11646     skge.c:1391: warning: dereferencing type-punned pointer will break strict-aliasing rules
11647     skgesirq.c: In function 'SkGePortCheckUpXmac':
11648     skgesirq.c:1301: warning: dereferencing type-punned pointer will break strict-aliasing rules
11649     skgesirq.c:1301: warning: dereferencing type-punned pointer will break strict-aliasing rules
11650     skgesirq.c:1398: warning: dereferencing type-punned pointer will break strict-aliasing rules
11651     skgesirq.c:1398: warning: dereferencing type-punned pointer will break strict-aliasing rules
11652     skrlmt.c: In function 'SkRlmtInit':
11653     skrlmt.c:661: warning: dereferencing type-punned pointer will break strict-aliasing rules
11654     skxmac2.c: In function 'SkMacPromiscMode':
11655     skxmac2.c:753: warning: dereferencing type-punned pointer will break strict-aliasing rules
11656     skxmac2.c:753: warning: dereferencing type-punned pointer will break strict-aliasing rules
11657     skxmac2.c: In function 'SkMacHashing':
11658     skxmac2.c:803: warning: dereferencing type-punned pointer will break strict-aliasing rules
11659     skxmac2.c:803: warning: dereferencing type-punned pointer will break strict-aliasing rules
11660     skxmac2.c: In function 'SkMacFlushTxFifo':
11661     skxmac2.c:1115: warning: dereferencing type-punned pointer will break strict-aliasing rules
11662     skxmac2.c:1115: warning: dereferencing type-punned pointer will break strict-aliasing rules
11663     skxmac2.c: In function 'SkMacFlushRxFifo':
11664     skxmac2.c:1145: warning: dereferencing type-punned pointer will break strict-aliasing rules
11665     skxmac2.c:1145: warning: dereferencing type-punned pointer will break strict-aliasing rules
11666     skxmac2.c: In function 'SkXmInitPauseMd':
11667     skxmac2.c:1987: warning: dereferencing type-punned pointer will break strict-aliasing rules
11668     skxmac2.c:1987: warning: dereferencing type-punned pointer will break strict-aliasing rules
11669     skxmac2.c: In function 'SkXmOverflowStatus':
11670     skxmac2.c:4236: warning: dereferencing type-punned pointer will break strict-aliasing rules
11671     skxmac2.c:4236: warning: dereferencing type-punned pointer will break strict-aliasing rules
11672     skxmac2.c:4242: warning: dereferencing type-punned pointer will break strict-aliasing rules
11673     skxmac2.c:4242: warning: dereferencing type-punned pointer will break strict-aliasing rules
11675     Signed-off-by: Wolfgang Denk <wd@denx.de>
11676     Cc: Ben Warren <biggerbadderben@gmail.com>
11678 commit 3708e4cdb1f1d3d5128cf87be040d7e6b85f60dd
11679 Author: Wolfgang Denk <wd@denx.de>
11680 Date:   Fri Sep 11 09:13:58 2009 +0200
11682     drivers/net/natsemi.c: fix compile warning
11684     Fix warning: natsemi.c:757: warning: dereferencing type-punned pointer
11685     will break strict-aliasing rules
11687     Signed-off-by: Wolfgang Denk <wd@denx.de>
11688     Cc: Ben Warren <biggerbadderben@gmail.com>
11690 commit 78d19a398778a58d7b40b0c78e026515271b1a84
11691 Author: Michal Simek <monstr@monstr.eu>
11692 Date:   Mon Sep 7 09:08:02 2009 +0200
11694     net: emaclite: Cleanup license to be GPL compatible
11696     Signed-off-by: Stephen Neuendorffer <stephen.neuendorffer@xilinx.com>
11697     Signed-off-by: Michal Simek <monstr@monstr.eu>
11699 commit 0900bee9ab9818439b2d1298fa8909a88f74ec0d
11700 Author: Michal Simek <monstr@monstr.eu>
11701 Date:   Fri Aug 14 13:41:17 2009 +0200
11703     microblaze: Enable hush parser
11705     With Hush parser is possible to change command line in dtb
11707     Signed-off-by: Michal Simek <monstr@monstr.eu>
11709 commit 13916abf996b127b681ddc26664c236ded28ba7f
11710 Author: Michal Simek <monstr@monstr.eu>
11711 Date:   Thu Aug 20 22:44:02 2009 +0200
11713     microblaze: Remove AtmarkTechno Suzaku board
11715     Users should use microblaze-generic platform.
11716     This platform is longer not supported.
11718     Signed-off-by: Michal Simek <monstr@monstr.eu>
11720 commit 3ceba1d45d007144d10368f91ff9e36f3b5f39a1
11721 Author: Michal Simek <monstr@monstr.eu>
11722 Date:   Thu Aug 20 22:36:20 2009 +0200
11724     net: Remove old Xilinx Emac driver
11726     Signed-off-by: Michal Simek <monstr@monstr.eu>
11728 commit 2fddd44464d02e0f3ade06dabe0e165835fa61f0
11729 Author: Michal Simek <monstr@monstr.eu>
11730 Date:   Wed Aug 19 08:10:08 2009 +0200
11732     microblaze: Short size of global data and fix malloc size
11734     If is full malloc area global, data are rewrite because
11735     there was bad size of malloc area.
11737     Signed-off-by: Michal Simek <monstr@monstr.eu>
11739 commit aedb4683097d3e5de8833f4a9e34664d3d2bd077
11740 Author: Michal Simek <monstr@monstr.eu>
11741 Date:   Fri Aug 14 17:02:35 2009 +0200
11743     microblaze: Add sbss, scommon and COMMON symbols for clearing
11745     Signed-off-by: Michal Simek <monstr@monstr.eu>
11747 commit 4c1883670acbf1cc83c04df1876235c3aedde128
11748 Author: Dirk Eibach <eibach@gdsys.de>
11749 Date:   Wed Sep 9 12:36:07 2009 +0200
11751     ppc4xx: Rename compactcenter to intip
11753     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
11754     Signed-off-by: Stefan Roese <sr@denx.de>
11756 commit d1c3b27525b664e8c4db6bb173eed51bfc8220de
11757 Author: Stefan Roese <sr@denx.de>
11758 Date:   Wed Sep 9 16:25:29 2009 +0200
11760     ppc4xx: Big cleanup of PPC4xx defines
11762     This patch cleans up multiple issues of the 4xx register (mostly
11763     DCR, SDR, CPR, etc) definitions:
11765     - Change lower case defines to upper case (plb4_acr -> PLB4_ACR)
11766     - Change the defines to better match the names from the
11767       user's manuals (e.g. cprpllc -> CPR0_PLLC)
11768     - Removal of some unused defines
11770     Please test this patch intensive on your PPC4xx platform. Even though
11771     I tried not to break anything and tested successfully on multiple
11772     4xx AMCC platforms, testing on custom platforms is recommended.
11774     Signed-off-by: Stefan Roese <sr@denx.de>
11776 commit d8d8724be06df43772162dc344ae20dfa814dc72
11777 Author: Wolfgang Denk <wd@denx.de>
11778 Date:   Fri Sep 11 09:05:32 2009 +0200
11780     net/bootp.c: fix compile warning
11782     Fix warning: bootp.c:695: warning: dereferencing type-punned pointer
11783     will break strict-aliasing rules
11785     Signed-off-by: Wolfgang Denk <wd@denx.de>
11786     Cc: Ben Warren <biggerbadderben@gmail.com>
11788 commit 51003b89816848cbe86a8fe48f970ba8b14005f5
11789 Author: Wolfgang Denk <wd@denx.de>
11790 Date:   Fri Sep 11 08:58:11 2009 +0200
11792     kwbimage.c: Fix compile warning when building on 64 bit systems
11794     Fix this warning when building on 64 bit systems:
11795     tools/kwbimage.c: In function 'kwbimage_checksum32':
11796     tools/kwbimage.c:135: warning: format '%d' expects type 'int',
11797     but argument 4 has type 'long unsigned int'
11799     Signed-off-by: Wolfgang Denk <wd@denx.de>
11800     Cc: Prafulla Wadaskar <prafulla@marvell.com>
11802 commit e7963772eb78a6aa1fa65063d64eab3a8626daac
11803 Author: Marcel Ziswiler <marcel@ziswiler.com>
11804 Date:   Wed Sep 9 21:11:18 2009 +0200
11806     muas3001: remove BRG clock node fixup to use common mpc8260 code.
11808     Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
11809     Acked-by: Heiko Schocher <hs@denx.de>
11811 commit c7c1dbbf7159b38f3302b845dd97d28a543ff91b
11812 Author: Marcel Ziswiler <marcel@ziswiler.com>
11813 Date:   Wed Sep 9 21:09:00 2009 +0200
11815     r7780mp: fix typo in Ethernet chip model number comment.
11817     Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
11819 commit 45f89f340b4d8aa099fd022260dcb13cf3321b61
11820 Author: Marcel Ziswiler <marcel@ziswiler.com>
11821 Date:   Wed Sep 9 21:22:08 2009 +0200
11823     ep8248: add support for device tree and secondary Ethernet interface.
11825     Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
11827 commit aa0c7a86cd236b8193218a09e1365c8991bb5ddc
11828 Author: Prafulla Wadaskar <prafulla@marvell.com>
11829 Date:   Mon Sep 7 15:05:02 2009 +0530
11831     mkimage: Add Kirkwood Boot Image support (kwbimage)
11833     This patch adds support for "kwbimage" (Kirkwood Boot Image)
11834     image types to the mkimage code.
11836     For details refer to docs/README.kwbimage
11838     This patch is tested with Sheevaplug board
11840     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11841     Acked-by: Ron Lee <ron@debian.org>
11843     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11845 commit 7809fbb9aafd60e3a6e5dfe456ae30b93ac61338
11846 Author: Prafulla Wadaskar <prafulla@marvell.com>
11847 Date:   Mon Sep 7 14:59:09 2009 +0530
11849     Kirkwood: Sheevaplug: Add kwimage configuration file
11851     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11853 commit b029dddc9ae958b1ccf875649f52c6db396a742d
11854 Author: Prafulla Wadaskar <prafulla@marvell.com>
11855 Date:   Mon Sep 7 14:59:08 2009 +0530
11857     mkimage: Make table_entry code global
11859     - make get_table_entry_id() global
11860     - make get_table_entry_name() global
11861     - move struct table_entry to image.h
11863     Currently this code is used by image.c only.
11865     This patch makes this API global so it can be used by other parts of
11866     code, too.
11868     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11869     Acked-by: Ron Lee <ron.debian.org>
11871     Edit comments and commit message.
11873     Signed-off-by: Wolfgang Denk <wd@denx.de>
11875 commit f666dea8ab215c76c3c2a077ad299f90dd1ace7c
11876 Author: Prafulla Wadaskar <prafulla@marvell.com>
11877 Date:   Mon Sep 7 14:59:07 2009 +0530
11879     mkimage: Make genimg_print_size() global
11881     Currently it is used by image.c only, but the the function can be
11882     used to support additional mkimage types like for example kwbimage,
11883     so make this function globally visible.
11885     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11887     Edited commit message.
11889     Signed-off-by: Wolfgang Denk <wd@denx.de>
11891 commit 37b801888cf73b18f78c1109140ff44e3e37914f
11892 Author: Prafulla Wadaskar <prafulla@marvell.com>
11893 Date:   Mon Sep 7 14:59:06 2009 +0530
11895     mkimage: Include missing files in build dependency calculations
11897     Include default_image.o and fit_image.o into the build dependency
11898     calculations. This makes sure they get rebuilt if any of the headers
11899     they include are modified
11901     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11902     Acked-by: Ron Lee <ron@debian.org>
11904     Edited commit message.
11906     Signed-off-by: Wolfgang Denk <wd@denx.de>
11908 commit 3a2003f61ee79ac53d20c24cc896c2637a2dfc24
11909 Author: Wolfgang Denk <wd@denx.de>
11910 Date:   Wed Aug 19 11:42:56 2009 +0200
11912     tools/mkimage: fix compiler warnings, use "const"
11914     This fixes some compiler warnings:
11915     tools/default_image.c:141: warning: initialization from incompatible pointer type
11916     tools/fit_image.c:202: warning: initialization from incompatible pointer type
11917     and changes to code to use "const" attributes in a few places where
11918     it's appropriate.
11920     Signed-off-by: Wolfgang Denk <wd@denx.de>
11922 commit 89a4d6b12fd6394898b8a454cbabeaf1cd59bae5
11923 Author: Prafulla Wadaskar <prafulla@marvell.com>
11924 Date:   Wed Aug 19 17:36:46 2009 +0530
11926     tools: mkimage: split code into core, default and FIT image specific
11928     This is a first step towards reorganizing the mkimage code to make it
11929     easier to add support for additional images types. Current mkimage
11930     code is specific to generating uImage and FIT image files, but the
11931     same framework can be used to generate other image types like
11932     Kirkwood boot images (kwbimage-TBD). For this, the mkimage code gets
11933     reworked:
11935     Here is the brief plan for the same:-
11936     a) Split mkimage code into core and image specific support
11937     b) Implement callback functions for image specific code
11938     c) Move image type specific code to respective C files
11939            Currently there are two types of file generation/list
11940            supported (i.e uImage, FIT), the code is abstracted from
11941            mkimage.c/.h and put in default_image.c and fit_image.c;
11942            all code in these file is static except init function call
11943     d) mkimage_register API is added to add new image type support
11944     All above is addressed in this patch
11945     e) Add kwbimage type support to this new framework (TBD)
11946     This will be implemented in a following commit.
11948     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11949     Edit commit message, fix coding style and typos.
11950     Signed-off-by: Wolfgang Denk <wd@denx.de>
11952 commit 449609f5b11cce6beba7338bc4ce0f3345376a0b
11953 Author: Prafulla Wadaskar <prafulla@marvell.com>
11954 Date:   Sun Aug 16 05:28:19 2009 +0530
11956     tools: mkimage: Fixed build warnings
11958     uninitialized retval variable warning fixed
11959     crc32 APIs moved to crc.h (newly added) and build warnings fixed
11961     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11962     Signed-off-by: Wolfgang Denk <wd@denx.de>
11964 commit 14821d7dea8d7209f2457c3179fa6551c088ba71
11965 Author: Prafulla Wadaskar <prafulla@marvell.com>
11966 Date:   Mon Aug 10 20:44:06 2009 +0530
11968     tools: mkimage: Makefile sorted
11970     The tools/Makefile is sorted for all entries,
11972     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11974 commit f7644c0bf3502529031657a869fa213cda5a2424
11975 Author: Prafulla Wadaskar <prafulla@marvell.com>
11976 Date:   Mon Aug 10 18:49:37 2009 +0530
11978     tools: mkimage : bugfix returns correct value for list command
11980     List command always return "EXIT_SUCCESS" even in case of
11981     failure by any means.
11983     This patch return 0 if list command is sucessful,
11984     returns negative value reported by check_header functions
11986     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11987     Signed-off-by: Wolfgang Denk <wd@denx.de>
11989 commit 511c02f611cb5afa1b8ca5980caaaabaa0de377f
11990 Author: Mingkai Hu <Mingkai.hu@freescale.com>
11991 Date:   Tue Sep 8 15:07:12 2009 +0800
11993     mkconfig: pass the board name to board config file
11995     Then we can handle different config targets in the board file, which
11996     simplifies the top level Makefile for boards that have multiple
11997     config targets.
11999     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
12001 commit d640ac58dbf61c769864b3fe76314306b7336cf1
12002 Author: Wolfgang Denk <wd@denx.de>
12003 Date:   Mon Sep 7 23:52:31 2009 +0200
12005     Remove "atmel_df_pow2" binary with "make clean"
12007     Commit 65f6f07b added support for the atmel_df_pow2 standalone program
12008     but missed to add a rule to remove it to the "clean" make target.
12010     Signed-off-by: Wolfgang Denk <wd@denx.de>
12012 commit 0b34dbbd0b6969c98c44313b291836d9056ec40a
12013 Author: Stefan Roese <sr@denx.de>
12014 Date:   Mon Sep 7 10:52:24 2009 +0200
12016     ppc4xx: Fix compilation warning in 4xx miiphy.c
12018     This patch fixes the following compilation warning:
12020     miiphy.c: In function 'emac4xx_miiphy_read':
12021     miiphy.c:353: warning: dereferencing type-punned pointer will break
12022     strict-aliasing rules
12024     Signed-off-by: Stefan Roese <sr@denx.de>
12026 commit 82379b5564819e62624a3c58fbc43f1afedf4f5f
12027 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12028 Date:   Mon Sep 7 17:00:41 2009 +0200
12030     ppc4xx: Add CONFIG_PCI_4xx_PTM_OVERWRITE to some esd 4xx boards
12032     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12033     Signed-off-by: Stefan Roese <sr@denx.de>
12035 commit 99bcf14d553f399148a7660b98f7acbd8cc72d80
12036 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12037 Date:   Mon Sep 7 17:00:40 2009 +0200
12039     ppc4xx: Allow overwriting pci target registers for all 4xx boards
12041     This patch adds the CONFIG_PCI_4xx_PTM_OVERWRITE option and replaces
12042     the ugly 'if defined(BOARD1) || ... || defined(BOARDn)' construct
12043     in 4xx pci code.
12045     When CONFIG_PCI_4xx_PTM_OVERWRITE is defined the default ptm register
12046     setup can be overwritten through environment variables ptm1la, ptm1ms,
12047     ptm2la and ptm2ms to do application specific pci target BAR configuration.
12049     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12050     Signed-off-by: Stefan Roese <sr@denx.de>
12052 commit cfab2ae322a99ad55364d054054f138f51130c2a
12053 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12054 Date:   Fri Sep 4 10:37:04 2009 +0200
12056     ppc4xx: Fix PMC405DE support
12058     This patch fixes PMC405DE support. Patch 85d6bf0b fixed out-of-tree
12059     building for this board but the loadpci object did not get linked
12060     after that.
12062     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12063     Signed-off-by: Stefan Roese <sr@denx.de>
12065 commit c8355b9d9f778bd12ee19c8f34d88e13758a4efd
12066 Author: Detlev Zundel <dzu@denx.de>
12067 Date:   Wed Sep 2 17:24:57 2009 +0200
12069     amcc-common.h: Use filenames from environment variables for update procedure.
12071     Using a separate "u-boot" environment variable allows to easily
12072     specify different filenames for the update procedure.  This is also in
12073     line with many other board configurations defining an "update" script.
12075     Signed-off-by: Detlev Zundel <dzu@denx.de>
12076     Acked-by: Wolfgang Denk <wd@denx.de>
12077     Signed-off-by: Stefan Roese <sr@denx.de>
12079 commit 6c97a20d0b2f56cb4f3745d94b1f96986e8cced5
12080 Author: Kumar Gala <galak@kernel.crashing.org>
12081 Date:   Wed Sep 9 11:40:41 2009 -0500
12083     ppc/85xx: Introduce RESET_VECTOR_ADDRESS to handle non-standard link address
12085     Some board ports place TEXT_BASE at a location that would cause the
12086     RESET_VECTOR_ADDRESS not to be at 0xfffffffc when we link.  By default
12087     we assume RESET_VECTOR_ADDRESS will be 0xfffffffc if the board doesn't
12088     explicitly set it.
12090     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12091     Acked-by: Wolfgang Denk <wd@denx.de>
12093 commit c348322ac7f76318295cf25ffab2cc2a4900a234
12094 Author: Kumar Gala <galak@kernel.crashing.org>
12095 Date:   Tue Sep 8 13:46:46 2009 -0500
12097     ppc/85xx: Clean up do_reset
12099     There is no reason to do a run time check for e500 v1 based cores to
12100     determine if we have the GUTs RSTCR facility.  Only the first generation
12101     of PQ3 parts (MPC8540/41/55/60) do not have it.  So checking to see if
12102     we are e500 v2 would miss future parts (like e500mc).
12104     Just change this to be ifdef'd based on CONFIG_MPC85{40,41,55,60}.
12106     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12108 commit 21170c80a83f1e60ce7f6f83005e06a5c2d15a8e
12109 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12110 Date:   Thu Sep 3 19:42:40 2009 +0530
12112     ppc/85xx/86xx: Bug fix: call to puts in probecpu() moved to checkcpu().
12114     While in probecpu() UART is still not initialized.
12116     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12117     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12119 commit f8027f6b4789e3340f10620d8fb6113b95b88d9c
12120 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12121 Date:   Wed Sep 2 19:40:36 2009 +0530
12123     ppc/85xx/86xx: Device tree fixup for number of cores
12125     Fixing the number of cores in the device tree based on the actual number of
12126     cores on the system.  With this same device tree image can be used for dual
12127     core and single core members of otherwise exactly same SOC.
12129     For example:
12130     * P2020RDB and P2010RDB
12131     * P1020RDB and P1011RDB
12132     * MPC8641D and MPC8641
12134     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12135     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12137 commit 58442dc01e47cc8ce42af4f29486a34cad60b9d2
12138 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12139 Date:   Wed Sep 2 13:35:21 2009 +0530
12141     ppc/85xx,86xx: Handling Unknown SOC version
12143     Incase the system is detected with Unknown SVR, let the system boot
12144     with a default value and a proper message.
12146     Now with dynamic detection of SOC properties from SVR, this is necessary
12147     to prevent a crash.
12149     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
12150     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12152 commit 3e7b6c1f2db5ec31f9e7dbc3e0cbca602167a46a
12153 Author: Kumar Gala <galak@kernel.crashing.org>
12154 Date:   Wed Sep 2 09:03:08 2009 -0500
12156     ppc/8xxx: Refactor code to determine if PCI is enabled & agent/host
12158     Refactor the code into a simple bitmask lookup table that determines if
12159     a given PCI controller is enabled and if its in host/root-complex or
12160     agent/end-point mode.
12162     Each processor in the PQ3/MPC86xx family specified different encodings
12163     for the cfg_host_agt[] and cfg_IO_ports[] boot strapping signals.
12165     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12167 commit 5052a771cf1722c37c732f3c340775b55fbe3a22
12168 Author: Kumar Gala <galak@kernel.crashing.org>
12169 Date:   Wed Sep 2 09:00:50 2009 -0500
12171     ppc/85xx: Cleanup makefile and related optional files
12173     Cleaned up cpu/mpc85xx/Makefile to use CONFIG_* for those obvious cases
12174     we have like PCI, CPM2, QE.  Also reworked it to use one line per file
12175     for everything and sorted in alphabetical order.
12177     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12179 commit 74c5dfd81f94a2a1f0d6990d17c491d718e8b9ea
12180 Author: Timur Tabi <timur@freescale.com>
12181 Date:   Fri Sep 4 17:05:24 2009 -0500
12183     fsl: add register read-back to set_law()
12185     After programming a new LAW, we should read-back the LAWAR register so that
12186     we sync the writes.  Otherwise, code that attempts to use the new LAW-mapped
12187     memory might fail right away.
12189     Signed-off-by: Timur Tabi <timur@freescale.com>
12190     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12192 commit c7259086816405fe0eb77f4dc22e76980a040cef
12193 Author: Kumar Gala <galak@kernel.crashing.org>
12194 Date:   Thu Sep 3 08:41:31 2009 -0500
12196     ppc/85xx: Fix bug in setup_mp code
12198     Its possible that we try and copy the boot page code out of flash into a
12199     DDR location that doesn't have a TLB cover it.  For example, if we have
12200     3G of DDR we typically only map the first 2G.  In the cases of 4G+ this
12201     wasn't an issue since the reset page TLB mapping covered the last page
12202     of memory which we wanted to copy to.
12204     We now change the physical address of the reset page TLB to map to the
12205     true physical location of the boot page code, copy and than set the
12206     TLB back to its 1:1 mapping of the reset page.
12208     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12210 commit c2287af1552bd630956568d3957c370f86801b7d
12211 Author: Kumar Gala <galak@kernel.crashing.org>
12212 Date:   Thu Sep 3 08:20:24 2009 -0500
12214     ppc/85xx: Add a simple function to search the TLB
12216     Allow us to search the TLB array based on an address.  This is useful
12217     if we want to change an entry but dont know where it happens to be
12218     located.
12220     For example, the boot page mapping we use on MP or the flash TLB that
12221     we change the WIMGE settings for after we've relocated.
12223     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12225 commit 26f4cdba6b51deab4ec99d60be381244068ef950
12226 Author: Kumar Gala <galak@kernel.crashing.org>
12227 Date:   Fri Aug 14 13:37:54 2009 -0500
12229     85xx: Add support for setting IVORs to fixed offset defaults
12231     In future Book-E implementations IVORs will most likely go away and be
12232     replaced with fixed offsets.  The IVPR will continue to exist to allow
12233     for relocation of the interrupt vectors.
12235     This code adds support to setup the IVORs as their fixed offset values
12236     per the ISA 2.06 spec when we transition from u-boot to another OS
12237     either via 'bootm' or a cpu release.
12239     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12241 commit da1cd955dfec35b0e15381ad1ee248fa194eed82
12242 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
12243 Date:   Wed Sep 2 11:25:08 2009 +0530
12245     ppc/85xx: Fix up eSDHC controller clock frequency in the device tree
12247     Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
12248     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12250 commit 2abbd31da6d900473ed678ca50789ee58bc9bb00
12251 Author: Kumar Gala <galak@kernel.crashing.org>
12252 Date:   Tue Sep 1 22:01:54 2009 -0500
12254     ppc/8xxx: Remove ddr_pd_cntl register since it doesn't exist
12256     The ddr_pd_cntl isn't defined in any reference manual and thus we wil
12257     remove especially since we set it to 0, which would most likely be its
12258     POR value.
12260     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12262 commit 13d46ab2572c0283d34f93bebc9a41295ef84ca5
12263 Author: Kumar Gala <galak@kernel.crashing.org>
12264 Date:   Tue Sep 1 21:07:08 2009 -0500
12266     ppc/8xxx: relocate cpu pointer in global data
12268     Now that we have a pointer to the cpu struct we need to relocate it once
12269     we get into ram.
12271     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12273 commit 9c671e7062720074f894ee329eaa6995b0823727
12274 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12275 Date:   Wed Sep 2 02:17:24 2009 +0400
12277     fsl: sys_eeprom: Fix 'may be used uninitialized' warning
12279     The warning is bogus, so silence it by initializing the 'ret' variable.
12281     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12282     Acked-by: Timur Tabi <timur@freescale.com>
12283     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12285 commit 6b9ea08c5010eab5ad1056bc9bf033afb672d9cc
12286 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
12287 Date:   Tue Sep 1 17:27:00 2009 +0530
12289     ppc/85xx: Use CONFIG_FSL_ESDHC to enable sdhc clk
12291     Enable eSDHC Clock based on generic CONFIG_FSL_ESDHC define instead of a
12292     platform define.  This will enable all the 85xx platforms to use sdhc_clk
12293     based on CONFIG_FSL_ESDHC.
12295     Signed-off-by: Gao Guanhua <B22826@freescale.com>
12296     Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
12297     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12299 commit 92477a631bbda2dc0dd2194e03f9bd3ddb8b9c21
12300 Author: Timur Tabi <timur@freescale.com>
12301 Date:   Fri Sep 4 16:28:35 2009 -0500
12303     fsl_i2c: increase I2C timeout values and make them configurable
12305     The value of I2C_TIMEOUT in fsl_i2c.c has several problems.  First, it is
12306     defined as CONFIG_HZ/4, but it is used as a count of microseconds, so it makes
12307     no sense to derive it from a clock rate.  Second, the current value (250) is
12308     too low for some boards, so it needs to be increased.  Third, the timeout
12309     necessary for multiple-master arbitration is larger than the timeout for basic
12310     read/write operations, so we shouldn't have a single constant for both timeouts.
12311     Finally, it would be nice if we could override these values on a per-board
12312     basis.
12314     Signed-off-by: Timur Tabi <timur@freescale.com>
12315     Acked-by: Wolfgang Denk <wd@denx.de>
12316     Tested-by: Peter Tyser <ptyser@xes-inc.com>
12317     Acked-by: Peter Tyser <ptyser@xes-inc.com>
12319 commit 5da71efa18e8b4eac9afd8bfa13e3c7e7ddde1d0
12320 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
12321 Date:   Thu Sep 3 08:09:44 2009 -0500
12323     Reset i2c slave devices during init on mpc5xxx cpus
12325     Reset any i2c devices that may have been interrupted during a system reset.
12326     Normally this would be accomplished by clocking the line until SCL and SDA
12327     are released and then sending a start condtiion (From an Atmel datasheet).
12328     There is no direct access to the i2c pins so instead create start commands
12329     through the i2c interface.  Send a start command then delay for the SDA Hold
12330     time, repeat this by disabling/enabling the bus a total of 9 times.
12332     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
12334 commit 2d4072c06b5549444e4140231bba3d47d9b0bc53
12335 Author: Sandeep Paulraj <s-paulraj@ti.com>
12336 Date:   Sat Aug 15 11:20:58 2009 -0400
12338     ARM: DaVinci: Adding Support for DaVinci DM365 EVM
12340     This patch adds support for the DM365 EVM.
12341     It has been tested on a DM365 EVM.
12343     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
12345 commit cf463091bce8b0f8951dd08f94754d08d64793b8
12346 Author: Sandeep Paulraj <s-paulraj@ti.com>
12347 Date:   Sat Aug 15 11:20:44 2009 -0400
12349     ARM: DaVinci: DaVinci DM365 SOC specific code
12351     This patch adds support for DaVinci DM365 SOC.
12353     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
12355 commit e830b66b3592f115316600d370399f3ee148e909
12356 Author: Ilko Iliev <iliev@ronetix.at>
12357 Date:   Sat Sep 5 02:51:34 2009 +0200
12359     DM9000 init for pm9261
12361     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
12363 commit c35d7cf071f171bd6bba69f1563a6ac578a18ea6
12364 Author: Frederik Kriewitz <frederik@kriewitz.eu>
12365 Date:   Sun Aug 23 12:56:42 2009 +0200
12367     Add support for the DevKit8000 board
12369     This patch adds support for the DevKit8000 board.
12371     Signed-off-by: Frederik Kriewitz <frederik@kriewitz.eu>
12373 commit 127f9ae575991aee3e105e1448c49b5b4e254998
12374 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12375 Date:   Sun Aug 23 16:32:40 2009 +0200
12377     omap3: move the other boards to board/
12379     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12381 commit 350f3ac5731faf0f02ca55ab016694b7c7269f97
12382 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12383 Date:   Sun Aug 23 16:32:39 2009 +0200
12385     arm: move Logicpd's boards to board/logicpd/
12387     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12389 commit 0a0e4bad9693ef1d2ca8c33ba551d395a4e3d641
12390 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12391 Date:   Sun Aug 23 16:32:38 2009 +0200
12393     omap: move TI's boards to board/ti/
12395     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12397 commit 9f23ca42b3ba19b24e66fade572f2b86d929b6e8
12398 Author: Wolfgang Denk <wd@denx.de>
12399 Date:   Fri Sep 4 23:20:29 2009 +0200
12401     ARM: Update mach-types
12403     Signed-off-by: Wolfgang Denk <wd@denx.de>
12405 commit 262ae0a6193f10b6a94e86d2f752e7f5510416fa
12406 Author: Mike Frysinger <vapier@gentoo.org>
12407 Date:   Thu Sep 3 23:12:47 2009 -0400
12409     push LOAD_ADDR out to arch mk files
12411     Rather than maintain/extend the current ifeq($(ARCH)) mess that exists in
12412     the standalone Makefile, push the setting up of LOAD_ADDR out to the arch
12413     config.mk (and rename to STANDALONE_LOAD_ADDR in the process).  This keeps
12414     the common code clean and lets the arch do whatever crazy crap it wants in
12415     its own area.
12417     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12419 commit 7662eb2b9d6fbc95ecb1fb3e5b5147215e251e7d
12420 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
12421 Date:   Thu Sep 3 07:37:46 2009 -0400
12423     zlib: fix code when DEBUG is defined
12425     Removed stdio.h inclusion and moved trace macros to use printf avoiding to
12426     write debug informations to standard error.
12428     Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
12430 commit cfcbf8c4cf3da96b9e3f652506b664bfd766a520
12431 Author: Scott Wood <scottwood@freescale.com>
12432 Date:   Wed Sep 2 16:45:31 2009 -0500
12434     mxc_nand: Remove Freescale's "All Rights Reserved."
12436     Signed-off-by: Scott Wood <scottwood@freescale.com>
12438 commit 001d615681333569c555e6cde07d8d23e2c536fb
12439 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12440 Date:   Wed Sep 2 17:58:48 2009 +0400
12442     mpc83xx/serdes: License cleanup: remove "All Rights Reserved" notice
12444     "All Rights Reserved" conflicts with the GPL.
12446     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12448 commit 46ff6d461321f5b565cc790e02679237ffd9a20f
12449 Author: Wolfgang Denk <wd@denx.de>
12450 Date:   Wed Sep 2 14:57:27 2009 +0200
12452     License cleanup: remove unintended "All Rights Reserved" notices.
12454     Some files included my old standerd file header which had a "All
12455     Rights Reserved" part. As this has never been my intention, I remove
12456     these lines to make the files compatible with GPL v.2 and later.
12458     Signed-off-by: Wolfgang Denk <wd@denx.de>
12460 commit 37daa77f3cafb5ec9a974eff3db2af4a0560a9ef
12461 Author: Wolfgang Denk <wd@denx.de>
12462 Date:   Wed Sep 2 10:21:20 2009 +0200
12464     cmd_mtdparts.c: fix compiler warning in debug code
12466     Fix warning messages:
12467     cmd_mtdparts.c:1429: warning: format '%08lx' expects type 'long
12468     unsigned int', but argument 6 has type 'u32'
12469     cmd_mtdparts.c:1429: warning: format '%08lx' expects type 'long
12470     unsigned int', but argument 7 has type 'u32'
12472     Signed-off-by: Wolfgang Denk <wd@denx.de>
12474 commit d8bc55a6fb28876abcbf4a3fc3b6c3ce429c1bb3
12475 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12476 Date:   Tue Sep 1 20:58:03 2009 +0400
12478     Move uninitialized_var() macro from ubi_uboot.h to compiler.h
12480     This is needed so that we could use this macro for non-UBI code.
12482     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12484 commit d72871e1387094972569e4b77c25e88020f7b68f
12485 Author: Kumar Gala <galak@kernel.crashing.org>
12486 Date:   Tue Sep 1 11:24:45 2009 -0500
12488     arm: Remove -fno-strict-aliasing
12490     -fno-strict-aliasing is hidding warnings.
12492     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12494 commit d6281ff0cc2ebb5d6a5c3e1021837334074f92ec
12495 Author: Kumar Gala <galak@kernel.crashing.org>
12496 Date:   Tue Sep 1 11:24:44 2009 -0500
12498     ppc: Remove -fno-strict-aliasing
12500     -fno-strict-aliasing is hidding warnings.
12502     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12504 commit 795d246c278e70b4ba9868cc9f2c8fbada49d388
12505 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
12506 Date:   Fri Aug 28 07:14:04 2009 -0500
12508     galaxy5200: Add chip select region for an Epson S1D15313
12510     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
12512 commit 3dfad40a0459f63099e177dc15a1df39d048f860
12513 Author: Kumar Gala <galak@kernel.crashing.org>
12514 Date:   Thu Aug 27 08:23:55 2009 -0500
12516     Add ability for arch code to make changes before we boot
12518     Added a arch_preboot_os() function that cpu specific code can implement to
12519     allow for various modifications to the state of the machine right before
12520     we boot.  This can be useful to setup register state to a specific
12521     configuration.
12523     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12525 commit 9ea005fb4428c922536fa75991ce9972304a02fb
12526 Author: Roy Zang <tie-fei.zang@freescale.com>
12527 Date:   Sat Aug 22 03:49:52 2009 +0800
12529     Use different PBA value for E1000 PCI and PCIe cards
12531     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
12532     Acked-by: André Schwarz <andre.schwarz@matrix-vision.de>
12534 commit 5b34a296d47b236dafbcaf1c91ae11b5aeb1ef51
12535 Author: Graeme Russ <graeme.russ@gmail.com>
12536 Date:   Sun Aug 23 12:59:58 2009 +1000
12538     Add PCI support to eNET board
12540     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12542 commit f50b619d9cb297b0125fe78dcd6f255eb0d91659
12543 Author: Graeme Russ <graeme.russ@gmail.com>
12544 Date:   Sun Aug 23 12:59:57 2009 +1000
12546     i386: Moved PCI from #ifdef to conditional compile for sc520 boards
12548     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12550 commit ed7a1b681de1e31d18d5b92e2767ae8df3241687
12551 Author: Graeme Russ <graeme.russ@gmail.com>
12552 Date:   Sun Aug 23 12:59:56 2009 +1000
12554     i386: Replace [read, write]_mmcr_[byte, word, long] with memory mapped structure
12556     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12558 commit 9b32f96b5b92ba13fdb4b5eb637734752235f260
12559 Author: Graeme Russ <graeme.russ@gmail.com>
12560 Date:   Sun Aug 23 12:59:55 2009 +1000
12562     Misc sc520 cdp fixups
12564     Now that the PCI, SATA et al compile problems have been resolved, the
12565     cludge that was applied to avoid them can be removed
12567     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12569 commit 91ee4e183cb7ac5f86e7673ead51400f19906635
12570 Author: Graeme Russ <graeme.russ@gmail.com>
12571 Date:   Sun Aug 23 12:59:54 2009 +1000
12573     Fixup sc520_spunk board
12575     Primary intent is to resolve build errors for this board which has been
12576     neglected for a very long time. I do not have one of these boards, so I
12577     cannot test functionality
12579     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12581 commit 8907b8dbc5805094f1316d64737d3428b3863693
12582 Author: Graeme Russ <graeme.russ@gmail.com>
12583 Date:   Sun Aug 23 12:59:53 2009 +1000
12585     Misc ds1722 fixups
12587     This patch is based on a patch submitted by Jean-Christophe PLAGNIOL-VILLARD
12588     on 18th May 2008 as part of a general i386 / sc520 fixup which was never
12589     applied
12591     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12593 commit a92510e7fae523145b58765cdc46110f1162260d
12594 Author: Graeme Russ <graeme.russ@gmail.com>
12595 Date:   Sun Aug 23 12:59:52 2009 +1000
12597     Misc ti_pci1410a fixups
12599     Removed do_pinit() - now declared in cmd_pcmcia.c
12601     Added #define CONFIG_CMD_PCMCIA around pcmcia_off() in line with other
12602     PCMCIA drivers
12604     signed/unsigned type fixups
12606     Added semi-colon after default: label as required by newer gcc
12608     The only board that appears to use this driver is the sc520_spunk which
12609     is very old and very likely very broken anyway. I do not have one to test
12610     whether this patch breaks anything functionaly, I have can only check
12611     that it compiles without warning or error
12613     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12615 commit 31b9ab33d93d88ff89f3046aa45c68667a378a56
12616 Author: Graeme Russ <graeme.russ@gmail.com>
12617 Date:   Sun Aug 23 12:59:51 2009 +1000
12619     Misc SATA fixups
12621     Cast first parameter to sata_cpy()
12623     In /drivers/block/ata_piix.h, ata_id_has_lba48(), ata_id_has_lba(),
12624     ata_id_has_dma(), ata_id_u32(), ata_id_u64() are all defined in
12625     include/libata.h which is included in ata.h which is included by all files
12626     which include ata_piix.h (only ata_piix.c) so these definitions are
12627     supurflous to (and conlict with) this in libata.h. Interestingly, my
12628     compiler complains about ata_id_u64 already being defined, but not
12629     ata_id_u32
12631     ata_dump_id() is defined in include/libata.h and should not be static
12632     (maybe should even use ata_dump_id() in libata.c
12634     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12636 commit d7549024098af093785151261266a02be19af633
12637 Author: Graeme Russ <graeme.russ@gmail.com>
12638 Date:   Sun Aug 23 12:59:50 2009 +1000
12640     i386: Misc PCI fixups
12642     Change PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY (Originally done in
12643     commit ff4e66e93c1a, regressed by commit 6d7f610b09f8)
12645     Cast PCI_ROM_ADDRESS_MASK to u32
12647     Wrap probe_pci_video() call inside #ifdef CONFIG_VIDEO
12649     Change call to pci_find_class() to pci_find_devices(). This is based on a
12650     patch submitted on 1st March 2007 (Patch that fixes the compilation errors
12651     for sc520_cdp board) by mushtaq_k
12653     This patch requires that PCI_VIDEO_VENDOR_ID and PCI_VIDEO_DEVICE_ID be
12654     specified in the board config file.  Dummy values have been added for the
12655     SC520 CDP board to enable compilation, but since I do not have one of these,
12656     I do know what the values should be
12658     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12660 commit 04ff9ab158714d43cdf2f4f6f0235c3ea9d241a2
12661 Author: Graeme Russ <graeme.russ@gmail.com>
12662 Date:   Sun Aug 23 12:59:49 2009 +1000
12664     Fix sc520 timer interrupt generation
12666     The current implementation has the timer being started before the interrupt
12667     handler is installed. It the interrupt occurs before the handler is
12668     installed, the timer interrupt is never reset and the timer stops
12670     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12672 commit f3a8d6b29b1cd01fdd940e8ff7a62b1df0ebbf82
12673 Author: Graeme Russ <graeme.russ@gmail.com>
12674 Date:   Sun Aug 23 12:59:48 2009 +1000
12676     Fix environment configuration for eNET board
12678     The current configuration of the Environment has the redundant copy of the
12679     environment in the Boot Flash - This was never the intent. The Environment
12680     should instead be in the first two sectors of the first Strata Flash
12682     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12684 commit ea0c37798c3823fdd77edfffd27b20191f8ca1f0
12685 Author: Graeme Russ <graeme.russ@gmail.com>
12686 Date:   Sun Aug 23 12:59:47 2009 +1000
12688     i386: Fix regression introduced by commit 8c63d47651f7
12690     A local variable was deleted that should not have been
12692     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12694 commit cfb3a736ffcff3e3753b902cad536f22fcf8961d
12695 Author: Graeme Russ <graeme.russ@gmail.com>
12696 Date:   Sun Aug 23 12:59:46 2009 +1000
12698     i386: Change inline asm global symbols to local
12700     gcc 4.3.2 optimiser creates multiple copies of inline asm (who knows why)
12701     Remove use of global names for labels to prevent 'symbol already defined'
12702     errors
12704     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12706 commit a3ab8caee696a1d53fc82fa321e2b2f179970168
12707 Author: Graeme Russ <graeme.russ@gmail.com>
12708 Date:   Sun Aug 23 12:59:45 2009 +1000
12710     i386: Add errno.h
12712     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12714 commit d4e8ada0f6d51e0e3b80790fb9375ac8910f5352
12715 Author: Peter Tyser <ptyser@xes-inc.com>
12716 Date:   Fri Aug 21 23:05:21 2009 -0500
12718     Consolidate arch-specific mem_malloc_init() implementations
12720     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12722 commit a483a167bc8d808145ca1224a2c238cda90aa60c
12723 Author: Peter Tyser <ptyser@xes-inc.com>
12724 Date:   Fri Aug 21 23:05:20 2009 -0500
12726     Standardize mem_malloc_init() implementation
12728     This lays the groundwork to allow architectures to share a common
12729     mem_malloc_init().
12731     Note that the x86 implementation was not modified as it did not fit the
12732     mold of all other architectures.
12734     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12736 commit 5e93bd1c9aaea886c5e5c7c1b6114ab36c30668f
12737 Author: Peter Tyser <ptyser@xes-inc.com>
12738 Date:   Fri Aug 21 23:05:19 2009 -0500
12740     Consolidate arch-specific sbrk() implementations
12742     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12744 commit 65f6f07b72a71b83d775c4d20d7ebcd6b2d2086d
12745 Author: Mike Frysinger <vapier@gentoo.org>
12746 Date:   Thu Jul 23 16:37:03 2009 -0400
12748     atmel_df_pow2: standalone to convert dataflashes to pow2
12750     Atmel DataFlashes by default operate with pages that are slightly bigger
12751     than normal binary sizes (i.e. many are 1056 byte pages rather than 1024
12752     bytes).  However, they also have a "power of 2" mode where the pages show
12753     up with the normal binary size.  The latter mode is required in order to
12754     boot with a Blackfin processor, so many people wish to convert their
12755     DataFlashes on their development systems to this mode.  This standalone
12756     application does just that.
12758     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12760 commit cb95c7a935ab9b52dac5d08e5ba4007c5a480f97
12761 Author: Mike Frysinger <vapier@gentoo.org>
12762 Date:   Wed Sep 2 05:52:37 2009 -0400
12764     Blackfin: cm-bf548: fix device->stdio_dev fallout
12766     The recent 52cb4d4fb348 commit which renamed device to stdio_dev missed the
12767     cm-bf548's video board.
12769     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12771 commit c7bcdde46a7ef78628f0f09fdc6cb61bb1bd7e79
12772 Author: Mike Frysinger <vapier@gentoo.org>
12773 Date:   Wed Sep 2 04:21:16 2009 -0400
12775     Blackfin: enable 64bit printf for nand
12777     Since the NAND code now uses 64bit code, make sure we enable support for
12778     ADI Blackfin boards in printf to avoid the warning:
12779     nand_util.c:45:2: warning: #warning Please define CONFIG_SYS_64BIT_VSPRINTF for correct output!
12781     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12783 commit 9c46e71af2b03ccd721c56b1dc906ead702d6fb5
12784 Author: Mike Frysinger <vapier@gentoo.org>
12785 Date:   Mon Aug 24 20:48:04 2009 -0400
12787     Blackfin: use scratch pad for exception stack
12789     If the memory layout pushes the stack out of the default DCPLB coverage,
12790     the exception handler may trigger a double fault by trying to push onto
12791     the uncovered stack.  So handle the exception stack similar to the kernel
12792     by using the top of the scratch pad SRAM.
12794     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12796 commit 69a25ce3578f34c8accb476f70089f3a44b78ed9
12797 Author: Mike Frysinger <vapier@gentoo.org>
12798 Date:   Mon Aug 24 20:36:25 2009 -0400
12800     Blackfin: increase default console size
12802     The default console size indirectly applies to length of env vars, so a
12803     smaller length makes it hard to pass longer command lines to kernels.
12805     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12807 commit f541e1d6d99c22bbd4bc8c84fdb02baad0277847
12808 Author: Mike Frysinger <vapier@gentoo.org>
12809 Date:   Mon Aug 24 19:03:18 2009 -0400
12811     Blackfin: fix debug printf modifiers
12813     The display_global_data() function generated warnings with pretty much
12814     every variable.
12816     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12818 commit 4640c2b8699bcdd2346a2c633486f07f061a2939
12819 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
12820 Date:   Thu Aug 20 19:20:41 2009 -0400
12822     Blackfin: cm-bf537u: new board port
12824     The CM-BF537U is similar to the CM-BF537E module, but enough to need its
12825     own board port.
12827     Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
12828     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12830 commit c4db335c2e0805e1ce4c33d278b77492c0812353
12831 Author: Robin Getz <robin.getz@analog.com>
12832 Date:   Mon Aug 17 15:23:02 2009 +0000
12834     Blackfin: change global data register from P5 to P3
12836     Since the Blackfin ABI favors higher scratch registers by default, use the
12837     last scratch register (P3) for global data rather than the first (P5).
12838     This allows the compiler's register allocator to use higher number scratch
12839     P registers, which in turn better matches the Blackfin instruction set,
12840     which reduces the size of U-Boot by more than 1024 bytes...
12842     Signed-off-by: Robin Getz <robin.getz@analog.com>
12843     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12845 commit 574b70df03fba0ea635e2fe71fbd7b97d19b706a
12846 Author: Robin Getz <robin.getz@analog.com>
12847 Date:   Tue Aug 11 14:20:13 2009 +0000
12849     Blackfin: enable more network commands for ADI dev boards
12851     Add dns and ntp to default networking commands, and ask for more dhcp
12852     options to better configure the network environment.
12854     Signed-off-by: Robin Getz <robin.getz@analog.com>
12855     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12857 commit aa7b248a05323d4720969227603e39a22777ed95
12858 Author: Michael Hennerich <michael.hennerich@analog.com>
12859 Date:   Thu Jun 18 09:12:50 2009 +0000
12861     Blackfin: bf537-stamp: comment CF-Flash Card Support better
12863     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
12864     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12866 commit 69c6d268a29cf6d61e096d815abf5abf24136f45
12867 Author: Robin Getz <robin.getz@analog.com>
12868 Date:   Fri Jul 10 18:37:15 2009 +0000
12870     Blackfin: use +(filesize) to make sure we are only doing what is necessary
12872     Signed-off-by: Robin Getz <robin.getz@analog.com>
12873     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12875 commit 2dc851e3b0f07a56f83060f13882ff4b62cf5112
12876 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
12877 Date:   Thu Aug 20 16:04:49 2009 +0200
12879     Support for the Calao TNY-A9260/TNY-A9G20 boards
12881     The Calao TNY-A9260 and TNY-9G20 are boards manufactured and sold by
12882     Calao Systems <http://www.calao-systems.com>. Their components are very
12883     similar to the AT91SAM9260EK board, so their configuration is based on
12884     the configuration of this board. There are however some differences:
12885     different clocks, no LCD, no ethernet. They also can use SPI EEPROM to
12886     store the environment.
12888     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
12889     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12891 commit 49d2cb4d6153a6c18249dccb5de5cffeb261a61c
12892 Author: Prafulla Wadaskar <prafulla@marvell.com>
12893 Date:   Thu Aug 20 20:59:28 2009 +0530
12895     arm: Kirkwood: add SYSRSTn Duration Counter Support
12897     This feature can be used to trigger special command "sysrstcmd" using
12898     reset key long press event and environment variable "sysrstdelay" is set
12899     (useful for reset to factory or manufacturing mode execution)
12901     Kirkwood SoC implements a hardware-based SYSRSTn duration counter.
12902     When SYSRSTn is asserted low, a SYSRSTn duration counter is running.
12903     The counter value is stored in the SYSRSTn Length Counter Register
12904     The counter is based on the 25-MHz reference clock (40ns)
12905     It is a 29-bit counter, yielding a maximum counting duration of
12906     2^29/25 MHz (21.4 seconds). When the counter reach its maximum value,
12907     it remains at this value until counter reset is triggered by setting
12908     bit 31 of KW_REG_SYSRST_CNT
12910     Implementation:
12911     Upon long reset assertion (> ${sysrstdelay} in secs) sysrstcmd will be
12912     executed if pre-defined in environment variables.
12913     This feature will be disabled if "sysrstdelay" variable is unset.
12915     for-ex.
12916     setenv sysrst_cmd "echo starting factory reset;
12917                    nand erase 0xa0000 0x20000;
12918                    echo finish ed sysrst command;"
12919     will erase particular nand sector if triggered by this event
12921     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
12923 commit 9453967e28c5e3abbf856f95735ea69bae1e77fa
12924 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
12925 Date:   Mon Aug 24 18:03:26 2009 +0200
12927     Add support for the Calao SBC35-A9G20 board
12929     The Calao SBC35-A9G20 board is manufactured and sold by Calao Systems
12930     <http://www.calao-systems.com>. It is built around an AT91SAM9G20 ARM SoC
12931     running at 400MHz. It features an Ethernet port, an SPI RTC backed by an onboard
12932     battery , an SD/MMC slot, a CompactFlash slot, 64Mo of SDRAM, 256Mo of NAND
12933     flash, two USB host ports, and an USB device port. More informations can be
12934     found at <http://www.calao-systems.com/articles.php?lng=en&pg=5936>
12936     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
12938 commit 10bc241dfc15a0820d9c52469173b7ccafec0b84
12939 Author: Ilya Yanok <yanok@emcraft.com>
12940 Date:   Tue Aug 11 02:32:09 2009 +0400
12942     imx27lite: add support for imx27lite board from LogicPD
12944     This patch adds support for i.MX27-LITEKIT development board from
12945     LogicPD. This board uses i.MX27 SoC and has 2MB NOR flash, 64MB NAND
12946     flash, FEC ethernet controller integrated into i.MX27.
12948     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12949     Acked-by: Wolfgang Denk <wd@denx.de>
12951 commit 50b5fff55827946c86a60db8b21a9358be720666
12952 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
12953 Date:   Tue Sep 1 11:26:20 2009 +0200
12955     at91sam9260/afeb9260: Fix SPI initialization
12957     Commit 7ebafb7ec1a0285af8380623c009576f92583b98 introduced a mistake in the spi
12958     init function call for those boards. This patch fixes this.
12960     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
12962 commit f3d4f8870e69e0fd177397778d97d0751bbd020a
12963 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
12964 Date:   Tue Aug 18 11:13:44 2009 +0200
12966     Remove duplicate set_cr
12968     Remove duplicate set_cr
12970     set_cr is defined in both asm-arm/proc-armv/system.h and
12971     include/asm-arm/system.h. This patch removes it (and some duplicate
12972     defines) from the former.
12974     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
12976 commit 3d35d87d5482de23cd5dc4d7721b1086107cae50
12977 Author: Wolfgang Denk <wd@denx.de>
12978 Date:   Mon Aug 31 19:57:42 2009 +0200
12980     Prepare 2009.08
12982     Update CHANGELOG
12984     Signed-off-by: Wolfgang Denk <wd@denx.de>
12986 commit 632a6dd0b612eb7b143f789f2a0273917468c041
12987 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
12988 Date:   Mon Aug 31 16:18:24 2009 +0200
12990     Add common code dir for Matrix Vision boards.
12992     This fixes current build failure.
12994     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
12996     mvblm7.c: fix warning: implicit declaration of function
12997     'mv_reset_environment'
12999     Signed-off-by: Wolfgang Denk <wd@denx.de>
13001 commit 52f6c34c85d6c16f2a41433b5000490ecf374992
13002 Author: David Brownell <dbrownell@users.sourceforge.net>
13003 Date:   Sun Aug 30 11:05:29 2009 -0700
13005     bugfix CONFIG_SYS_CONSOLE_INFO_QUIET
13007     The "console: unify printing current devices" patch goofed:
13008     CONFIG_SYS_CONSOLE_INFO_QUIET is supposed to *REMOVE* boot
13009     time noise, not add it.  Said patch changed the #ifndefs
13010     to #ifdef; this one restores them to the proper sense.
13012     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
13014 commit 2d04db088e6df8a008bb09f604876a45031df93b
13015 Author: Timur Tabi <timur@freescale.com>
13016 Date:   Fri Aug 28 16:56:45 2009 -0500
13018     fsl: simplify the "mac id" command, improve boot-time informational message
13020     The "mac id" command took a 4-character parameter as the identifier string.
13021     However, for any given board, only one kind of identifier is acceptable, so it
13022     makes no sense to ask the user to type it in.  Instead, if the user enters
13023     "mac id", the identifier (and also the version, if it's NXID) will
13024     automatically be set to the correct value.
13026     Improve the message that is displayed when EEPROM is read during boot.  It now
13027     displays "EEPROM:" and then either an error message or the EEPROM identifier
13028     if successful.
13030     If the identifier in EEPROM is valid, then always reject a bad CRC, even if the
13031     CRC field has not been initialized.
13033     Don't force the MAC address count to MAX_NUM_PORTS or less.  Forcing the value
13034     to be changed resulting in an in-memory copy that does not match what's in
13035     hardware, even though the user did not request that change.
13037     Finally, always update the CRC value in the in-memory copy after any field
13038     is changed, so that the CRC is always correct.
13040     Signed-off-by: Timur Tabi <timur@freescale.com>
13041     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13043 commit 33f3f34255bd7cf0be502275c59f0ff22dc50080
13044 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13045 Date:   Fri Aug 21 07:29:58 2009 +0530
13047     85xx: Added PCIe support for P1 P2 RDB
13049     Call fsl_pci_init_port() to initialize all the PCIe ports on the board.
13051     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13052     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13054 commit 0d3d68b25a8e7790f58530ddccbd61f9fc0245ef
13055 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13056 Date:   Fri Aug 21 07:29:42 2009 +0530
13058     driver/fsl_pci: Add fsl_pci_init_port function to initialize a PCI controller
13060     fsl_pci_init_port can be called from board specific PCI initialization
13061     routines to setup the PCI (or PCIe) controller.  This will reduce code
13062     redundancy in most of the 85xx/86xx FSL board ports that setup PCI.
13064     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13065     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13067 commit 05f6f66474312ad03c39b4ca4875af46c87366bf
13068 Author: Timur Tabi <timur@freescale.com>
13069 Date:   Thu Aug 20 17:41:11 2009 -0500
13071     85xx: Improve MPIC initialization
13073     The MPIC initialization code for Freescale e500 CPUs was not using I/O
13074     accessors, and it was not issuing a read-back to the MPIC after setting
13075     mixed mode.  This may be the cause of a spurious interrupt on some systems.
13077     Signed-off-by: Timur Tabi <timur@freescale.com>
13078     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13080 commit c17b79fbd0c7923948331d65cb588734a9c681ff
13081 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13082 Date:   Thu Aug 20 18:59:18 2009 +0530
13084     85xx: Added support for P1011RDB and P2010RDB
13086     P1011 and P2010 are single core variants of P1010 and P2020 respectively.
13087     The board(RDB) will be same.
13089     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13090     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13092 commit a713ba926b45da9a6f923f1ac9e60a66852e5f2d
13093 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13094 Date:   Thu Aug 20 18:57:45 2009 +0530
13096     85xx: Added single core members of FSL P1xx/P2xx processors series
13098     P1011 - Single core variant of P1020
13099     P2010 - Single core variant of P2020
13101     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13102     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13104 commit bf488bc0949fc900d1296a7f35a38a6a28cb5fab
13105 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13106 Date:   Thu Aug 20 18:57:02 2009 +0530
13108     85xx: P1020RDB Support Added
13110     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13111     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13113 commit 3b1f243b8dad30a646a0f056b0268519eadbc3c5
13114 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13115 Date:   Thu Aug 20 18:55:35 2009 +0530
13117     85xx: Added CONFIG_MAX_CPUS for P1020
13119     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13120     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13122 commit 76b474e2f5a223fcabfeaa4f1c8fb699062b986c
13123 Author: Mingkai Hu <Mingkai.hu@freescale.com>
13124 Date:   Tue Aug 18 15:37:15 2009 +0800
13126     85xx: Add L2SRAM Register's macro definition
13128     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
13129     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13131 commit 158c6724c99368a4d8eef11ee7e3c7ad0ef03a15
13132 Author: Felix Radensky <felix@embedded-sol.com>
13133 Date:   Sat Aug 15 15:08:37 2009 +0300
13135     85xx: Fix memory test range on MPC8536DS
13137     With current values of CONFIG_SYS_MEMTEST_START and CONFIG_SYS_MEMTEST_END
13138     memory test hangs if run without arguments. Set them to sane values, so
13139     that all available 512MB of RAM excluding exception vectors at the bottom
13140     and u-boot code and stack at the top can be tested.
13142     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
13143     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13145 commit ef41f2a25c554604156b59f5945feadae2f3cb55
13146 Author: Kumar Gala <galak@kernel.crashing.org>
13147 Date:   Wed Aug 12 00:10:44 2009 -0500
13149     85xx: Removed BEDBUG support on P1_P2_RDB
13151     To match all other 85xx platforms we are removing BEDBUG support.
13153     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13155 commit b560ab85edfb68da653bf2527c390c3e182392a1
13156 Author: Kumar Gala <galak@kernel.crashing.org>
13157 Date:   Sat Aug 8 10:42:30 2009 -0500
13159     85xx: Init pci ethernet cards if we enable any on MPC8572DS
13161     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13163 commit 1bb61b69f7aba4931ede35fdcabd8e5ecad121d7
13164 Author: Peter Tyser <ptyser@xes-inc.com>
13165 Date:   Fri Aug 7 13:16:34 2009 -0500
13167     xes: Use proper IO access functions
13169     Also fix some minor whitespace oddities while we're cleaning up
13171     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13172     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13174 commit ec79d33b2c41ee8b6d1354cc0910217b769c5036
13175 Author: Kumar Gala <galak@kernel.crashing.org>
13176 Date:   Fri Aug 7 13:00:55 2009 -0500
13178     85xx: Move to a common linker script
13180     There are really no differences between all the 85xx linker scripts so
13181     we can just move to a single common one.  Board code is still able to
13182     override the common one if need be.
13184     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13186 commit 87c7661b42aa7672539b54b51d3d5c4013ec6f6c
13187 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13188 Date:   Fri Jul 31 12:08:27 2009 +0530
13190     85xx: Added P1020 Processor Support.
13192     P1020 is another member of QorIQ series of processors which falls in ULE
13193     category. It is an e500 based dual core SOC.
13195     Being a scaled down version of P2020 it has following differences:
13196     - 533MHz - 800MHz core frequency.
13197     - 256Kbyte L2 cache
13198     - Ethernet controllers with classification capabilities.
13199     Also the SOC is pin compatible with P2020
13201     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13202     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13204 commit 728ece343e8bb2a66ee977c49d455439e3b28da9
13205 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13206 Date:   Wed Aug 5 13:29:24 2009 +0530
13208     85xx: Add support for P2020RDB board
13210     The code base adds P1 & P2 RDB platforms support.
13211     The folder and file names can cater to future SOCs of P1/P2 family.
13212     P1 & P2 processors are 85xx platforms, part of Freescale QorIQ series.
13214     Tested following on P2020RDB:
13215     1. eTSECs
13216     2. DDR, NAND, NOR, I2C.
13218     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13219     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13221 commit 0e870980a64584a591af775bb9c9fe9450124df9
13222 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13223 Date:   Fri Jul 31 12:08:14 2009 +0530
13225     8xxx: Removed CONFIG_NUM_CPUS from 85xx/86xx
13227     The number of CPUs are getting detected dynamically by checking the
13228     processor SVR value.  Also removed CONFIG_NUM_CPUS references from all
13229     the platforms with 85xx/86xx processors.
13231     This can help to use the same u-boot image across the platforms.
13233     Also revamped and corrected few Freescale Copyright messages.
13235     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13236     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13238 commit 18bacc2027f8531d8dec15ba8da3242dfb4e63f3
13239 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13240 Date:   Fri Jul 31 12:07:45 2009 +0530
13242     8xxx: Refactored common cpu specific code for 85xx/86xx into one file.
13244     Removed same code pieces from cpu/mpc85xx/cpu.c and cpu/mpc86xx/cpu.c
13245     and moved to cpu/mpc8xxx/cpu.c(new file)
13247     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13248     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13250 commit 7b18c227b847e4782eb1492219ebd555f521b08b
13251 Author: Alex Dubov <oakad@yahoo.com>
13252 Date:   Fri Aug 7 15:28:32 2009 +1000
13254     stx: create common vendor/board hierarchy for STx boards
13256     Move files belonging to the STx boards into common vendor directory and
13257     update the Makefile to reflect this.
13259     Signed-off-by: Alex Dubov <oakad@yahoo.com>
13260     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13262 commit bafdf9aa9dbb69d937b72db17ed5800998c59523
13263 Author: Peter Tyser <ptyser@xes-inc.com>
13264 Date:   Tue Aug 4 17:38:00 2009 -0500
13266     85xx: Remove unused CONFIG_CLEAR_LAW0 defines
13268     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13269     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13271 commit 73aacc522849486b60a5611f678f0bf1c3053779
13272 Author: Kumar Gala <galak@kernel.crashing.org>
13273 Date:   Thu Aug 6 18:38:43 2009 -0500
13275     86xx: Remove redudant PLATFORM_CPPFLAGS
13277     For historic reasons we had defined some additional PLATFORM_CPPFLAGS like:
13279     PLATFORM_CPPFLAGS += -DCONFIG_MPC86xx=1
13280     PLATFORM_CPPFLAGS += -DCONFIG_MPC8641=1
13282     However these are all captured in the config.h and thus redudant.  Also
13283     moved common 86xx flags into cpu/mpc86xx/config.mk.
13285     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13287 commit 53efa1f1acacacb76fa9a21b09b3294783a11c03
13288 Author: Kumar Gala <galak@kernel.crashing.org>
13289 Date:   Thu Aug 6 18:28:34 2009 -0500
13291     85xx: Remove redudant PLATFORM_CPPFLAGS
13293     For historic reasons we had defined some additional PLATFORM_CPPFLAGS
13294     like:
13296     PLATFORM_CPPFLAGS += -DCONFIG_E500=1
13297     PLATFORM_CPPFLAGS += -DCONFIG_MPC85xx=1
13298     PLATFORM_CPPFLAGS += -DCONFIG_MPC8548=1
13300     However these are all captured in the config.h and thus redudant.
13302     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13304 commit 337f9fde2e9317c1d9e85a4a8955a2f14730a00f
13305 Author: Kumar Gala <galak@kernel.crashing.org>
13306 Date:   Thu Jul 30 15:54:07 2009 -0500
13308     85xx: Add a 36-bit physical configuration for MPC8536DS
13310     We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
13311     to allow for larger memory sizes.
13313     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13314     Acked-by: Wolfgang Denk <wd@denx.de>
13316     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13318 commit ecead84d56b0ced67b727f5ce21ba08c53b5f09e
13319 Author: Kumar Gala <galak@kernel.crashing.org>
13320 Date:   Tue Aug 4 09:10:03 2009 -0500
13322     85xx: Cleanup whitespace in mpc8536ds.c
13324     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13326 commit ad19e7a5d2de337064ce7728d6504df9648f5d31
13327 Author: Kumar Gala <galak@kernel.crashing.org>
13328 Date:   Wed Aug 5 07:59:35 2009 -0500
13330     pci/fsl_pci_init: Rework PCI ATMU setup to handle >4G of memory
13332     The old PCI ATMU setup code would just mimic the PCI regions into the
13333     ATMU registers.  For simple memory maps in which all memory, MMIO, etc
13334     space fit into 4G this works ok.  However there are issues with we have
13335     >4G of memory as we know can't access all of memory and we need to
13336     ensure that PCICSRBAR (PEXCSRBAR on PCIe) isn't overlapping with
13337     anything since we can't turn it off.
13339     We first setup outbound windows based on what the board code setup
13340     in the pci regions for MMIO and IO access.  Next we place PCICSRBAR
13341     below the MMIO window.  After which we try to setup the inbound windows
13342     to map as much of memory as possible.
13344     On PCIe based controllers we are able to overmap the ATMU setup since
13345     RX & TX links are separate but report the proper amount of inbound
13346     address space to the region tracking to ensure there is no overlap.
13348     On PCI based controllers we use as many inbound windows as available to
13349     map as much of the memory as possible.
13351     Additionally we changed all the CCSR register access to use proper IO
13352     accessor functions.  Also had to add CONFIG_SYS_CCSRBAR_PHYS to some
13353     86xx platforms that didn't have it defined.
13355     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13357 commit 8295b94400449586505ffe34ec024feb3d2c8fe4
13358 Author: Kumar Gala <galak@kernel.crashing.org>
13359 Date:   Wed Aug 5 07:49:27 2009 -0500
13361     pci/fsl_pci_init: Use PCIe capability to determine if controller is PCIe
13363     Change the code to use the PCIe capabilities register to determine if we
13364     are a PCIe controller or not.  Additionally cleaned up some white space
13365     and formatting in the file.
13367     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13369 commit cb151aa2cf5fbb1e412fc763a3a611758f066238
13370 Author: Kumar Gala <galak@kernel.crashing.org>
13371 Date:   Mon Aug 3 21:02:02 2009 -0500
13373     pci/fsl_pci_init: Fold fsl_pci_setup_inbound_windows into fsl_pci_init
13375     Every platform that calls fsl_pci_init calls fsl_pci_setup_inbound_windows
13376     before it calls fsl_pci_init.  There isn't any reason to just call it
13377     from fsl_pci_init and simplify things a bit.
13379     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13381 commit fb3143b35eb5890ec72e79d17a6068a84a057d47
13382 Author: Kumar Gala <galak@kernel.crashing.org>
13383 Date:   Mon Aug 3 20:44:55 2009 -0500
13385     pci/fsl_pci_init: Fold pci_setup_indirect into fsl_pci_init
13387     Every platform that calls fsl_pci_init calls pci_setup_indirect before
13388     it calls fsl_pci_init.  There isn't any reason to just call it from
13389     fsl_pci_init and simplify things a bit.
13391     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13393 commit 28887d831b02c66ccc10d7f1379204b5a62f4543
13394 Author: André Schwarz <andre.schwarz@matrix-vision.de>
13395 Date:   Thu Aug 27 14:48:35 2009 +0200
13397     Use common code for Matrix Vision boards
13399     Clean up existing boards (mvBC-P/MPC5200 and mvBL-M7/MPC8343) by
13400     using common code.
13402     Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de>
13404 commit 05f91a65abc3180e2896cd8ddee7a34b1d1ce6e0
13405 Author: Kim Phillips <kim.phillips@freescale.com>
13406 Date:   Wed Aug 26 21:27:37 2009 -0500
13408     mpc83xx: mpc8349itx - accommodate larger kernel sizes & unzero the bootdelay
13410     apparently the ITX was missed last round.
13412     Also make bootdelay consistent with other boards, so as to give on the
13413     opportunity to fix mistakenly set bootcmd without having checked for an
13414     bootdelay zero setting first.
13416     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13418 commit cc861f7127f200e704baaf061a7f508e3c93f2a3
13419 Author: Kim Phillips <kim.phillips@freescale.com>
13420 Date:   Wed Aug 26 21:25:46 2009 -0500
13422     mpc83xx: match dtb filename references to their dts equivalents in the linux kernel
13424     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13426 commit 77b351cd0f20483eefa09bebebb3e0cbf5555b2c
13427 Author: Sandeep Paulraj <s-paulraj@ti.com>
13428 Date:   Tue Aug 18 10:10:42 2009 -0400
13430     NAND: DaVinci: V2 Adding 4 BIT ECC support
13432     This patch adds 4 BIT ECC support in the DaVinci NAND
13433     driver. Tested on both the DM355 and DM365.
13435     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
13436     Signed-off-by: Scott Wood <scottwood@freescale.com>
13438 commit f83b7f9e8a5d1334e24506ea5953dd871596ea8a
13439 Author: Sandeep Paulraj <s-paulraj@ti.com>
13440 Date:   Mon Aug 10 13:27:56 2009 -0400
13442     MTD:NAND: ADD new ECC mode NAND_ECC_HW_OOB_FIRST
13444     This patch adds the new mode NAND_ECC_HW_OOB_FIRST in the nand code to
13445     support 4-bit ECC on TI DaVinci devices with large page (up to 2K) NAND
13446     chips.  This ECC mode is similar to NAND_ECC_HW, with the exception of
13447     read_page API that first reads the OOB area, reads the data in chunks,
13448     feeds the ECC from OOB area to the ECC hw engine and perform any
13449     correction on the data as per the ECC status reported by the engine.
13451     This patch has been accepted by Andrew Morton and can be found at
13453     http://userweb.kernel.org/~akpm/mmotm/broken-out/mtd-nand-add-new-ecc-mode-ecc_hw_oob_first.patch
13455     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
13456     Signed-off-by: Sneha Narnakaje <nsnehaprabha@ti.com>
13457     Signed-off-by: Scott Wood <scottwood@freescale.com>
13459 commit 36fab997d85d89ee7fd2c7fd6057fab786d556aa
13460 Author: Ilya Yanok <yanok@emcraft.com>
13461 Date:   Tue Aug 11 02:32:54 2009 +0400
13463     mxc_nand: add nand driver for MX2/MX3
13465     Driver for NFC NAND controller found on Freescale's MX2 and MX3
13466     processors. Ported from Linux. Tested only with i.MX27 but should
13467     works with other MX2 and MX3 processors too.
13469     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
13470     Signed-off-by: Scott Wood <scottwood@freescale.com>
13472 commit a2c65b47effcb3d0aa23e58596538acd338ac7c5
13473 Author: Sandeep Paulraj <s-paulraj@ti.com>
13474 Date:   Mon Aug 10 13:27:46 2009 -0400
13476     NAND: ADD page Parameter to all read_page/read_page_raw API's
13478     This patch adds a new "page" parameter to all NAND read_page/read_page_raw
13479     APIs.  The read_page API for the new mode ECC_HW_OOB_FIRST requires the
13480     page information to send the READOOB command and read the OOB area before
13481     the data area.
13483     This patch has been accepted by Andrew Morton and can be found at
13484     http://userweb.kernel.org/~akpm/mmotm/broken-out/mtd-nand-add-page-parameter-to-all-read_page-read_page_raw-apis.patch
13486     WE would like this to become part of the u-boot GIT as well
13488     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
13489     Signed-off-by: Sneha Narnakaje <nsnehaprabha@ti.com>
13490     Signed-off-by: Scott Wood <scottwood@freescale.com>
13492 commit de4250929f37e6c16860741b74546bedbe0bdaba
13493 Author: Heiko Schocher <hs@denx.de>
13494 Date:   Tue Jul 21 17:13:40 2009 +0200
13496     83xx, kmeter1: added NAND support
13498     Signed-off-by: Heiko Schocher <hs@denx.de>
13499     Signed-off-by: Scott Wood <scottwood@freescale.com>
13501 commit ecad289fc6bd9d89ef4d5093cc7b6fd712fd0d29
13502 Author: Kyungmin Park <kmpark@infradead.org>
13503 Date:   Tue Jul 21 11:58:04 2009 +0900
13505     OneNAND: Remove unused read_spareram
13507     Remove unused read_spareram and add unlock_all as kernel does
13509     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13510     Signed-off-by: Scott Wood <scottwood@freescale.com>
13512 commit 403ce1f759b5acec8514cd7e10ce76704fed519c
13513 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
13514 Date:   Thu Jul 16 21:19:29 2009 +0200
13516     KB9202: Add NAND support
13518     Add KB9202 NAND driver
13520     Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
13521     Signed-off-by: Scott Wood <scottwood@freescale.com>
13523 commit ce3277a6f2c082f39596d3d3d88dd0a5bc91439d
13524 Author: Kyungmin Park <kmpark@infradead.org>
13525 Date:   Tue Jul 21 11:58:04 2009 +0900
13527     OneNAND: Remove unused read_spareram
13529     Remove unused read_spareram and add unlock_all as kernel does
13531     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13533 commit 0d042037b3cf8693ea0f793d0c292430bfc5a95c
13534 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
13535 Date:   Tue Aug 25 10:30:26 2009 -0500
13537     galaxy5200: Cleanup typo and trailing whitespace
13539     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
13541 commit f6a309080b2da9e509b5ee8d091dca5e175415b7
13542 Author: TsiChung Liew <tsicliew@gmail.com>
13543 Date:   Wed Jul 22 18:42:45 2009 +0000
13545     ColdFire: Fix compile warning messages
13547     Change %08lX to %08X in board.c. Remove unused variable
13548     'oscillator' in mcf5227x/cpu_init.c and 'scm2' in
13549     mcf532x/cpu_init.c. Provide argument type cast in
13550     drivers/dma/MCD_dmaApi.c.
13552     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
13554 commit 88c811b153771a3d1bfe958297c69722efb278e9
13555 Author: TsiChung Liew <tsicliew@gmail.com>
13556 Date:   Wed Jul 22 16:32:39 2009 +0000
13558     ColdFire: Fix missing _IO_BASE which caused compile error
13560     The compile error was caused by a recent patch. Affected platforms -
13561     M5253DEMO.h, M5253EVBE.h, and M54455EVB.h. Adding the _IO_BASE
13562     automatically defined to 0 in asm-m68k/io.h if it isn't set in
13563     platform configuration file.
13565     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
13567 commit 3a7b2c21fb08b022e3e624cd071002b4aaed1606
13568 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
13569 Date:   Wed Jul 22 17:13:24 2009 +0200
13571     Support up to 7 banks for ids as specified in JEDEC JEP106Z
13573     see http://www.jedec.org/download/search/jep106Z.pdf
13574     Add some second source legacy flash chips 256x8.
13576     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
13577     Signed-off-by: Stefan Roese <sr@denx.de>
13579 commit 0d071cdd782e917b43e04869843df31670231ffd
13580 Author: Kim Phillips <kim.phillips@freescale.com>
13581 Date:   Mon Aug 24 14:32:26 2009 -0500
13583     net: tsec - handle user interrupt while waiting for PHY auto negotiation to complete
13585     if you don't have firmware installed for the PHY to come to life, this
13586     wait can be painful - let's give the option to avoid it if we want.
13588     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13589     Acked-by: Andy Fleming <afleming@freescale.com>
13590     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13592 commit 4fccb818e7ee1190602e79aa5729a23bc349bf0c
13593 Author: Robin Getz <rgetz@blackfin.uclinux.org>
13594 Date:   Thu Aug 20 10:50:20 2009 -0400
13596     Add Transfer Size Option to tftp
13598     Optionally add RFC 2349 "Transfer Size Option", so we can minimize the
13599     time spent sending data over the UART (now print a single line during a
13600     tftp transfer).
13602      - If turned on (CONFIG_TFTP_TSIZE), U-Boot asks for the size of the file.
13603      - if receives the file size, a single line (50 chars) are printed.
13604          one hash mark == 2% of the file downloaded.
13605      - if it doesn't receive the file size (the server doesn't support RFC
13606          2349, prints standard hash marks (one mark for each UDP frame).
13608     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
13609     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13611 commit 488feef85229c08cd3aa1fa183bc8f483d2ae832
13612 Author: Robin Getz <rgetz@blackfin.uclinux.org>
13613 Date:   Mon Aug 24 10:33:39 2009 -0400
13615     Add debug message for Blackfin Ethernet Rx function.
13617     Add a simple print for the Blackfin's Ethernet Rx function,
13618     so we can debug incomming Ethernet functions easier.
13620     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
13621     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13623 commit b1c0eaac110bc919e5b4e88821348e714493f266
13624 Author: Ben Warren <biggerbadderben@gmail.com>
13625 Date:   Tue Aug 25 13:09:37 2009 -0700
13627     Convert CS8900 Ethernet driver to CONFIG_NET_MULTI API
13629     All in-tree boards that use this controller have CONFIG_NET_MULTI added
13630     Also:
13631       - changed CONFIG_DRIVER_CS8900 to CONFIG_CS8900
13632       - changed CS8900_BASE to CONFIG_CS8900_BASE
13633       - changed CS8900_BUS?? to CONFIG_CS8900_BUS??
13634       - cleaned up line lengths
13635       - modified VCMA9 command function that accesses the device
13636       - removed MAC address initialization from lib_arm/board.c
13638     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13639     Tested-by: Wolfgang Denk <wd@denx.de>
13640     Acked-by: Wolfgang Denk <wd@denx.de>
13642 commit d47628a6ecf80cd4584a50b6c795b90c985a48e5
13643 Author: Alessandro Rubini <rubini-list@gnudd.com>
13644 Date:   Fri Aug 7 13:59:26 2009 +0200
13646     arm nomadik: activate defrag choose 4k transfer block size
13648     This chooses 4kB data size for both TFTP and NFS, as an example
13649     about how to use support for IP fragments.
13651     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
13652     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13654 commit bd931ca61c84039241d438ade4a9755ae0e5372f
13655 Author: Alessandro Rubini <rubini-list@gnudd.com>
13656 Date:   Fri Aug 7 13:59:16 2009 +0200
13658     nfs: accept CONFIG_NFS_READ_SIZE from config file
13660     To take advantage of defragmented packets, the config file
13661     can define CONFIG_NFS_READ_SIZE to override the 1kB default.
13662     No support is there for an environment variable by now.
13664     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
13665     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13667 commit 89ba81d1079a07b8430a98c1746c6d411312eb0d
13668 Author: Alessandro Rubini <rubini-list@gnudd.com>
13669 Date:   Fri Aug 7 13:59:06 2009 +0200
13671     tftp: get the tftp block size from config file and from the environment
13673     Increasing the block size is useful if CONFIG_IP_DEFRAG is
13674     used. Howerver, the last fragments in a burst may overflow the
13675     receiving ethernet, so the default is left at 1468, with thre new
13676     CONFIG_TFTP_BLOCKSIZE for config files. Further, "tftpblocksize"
13677     can be set in the environment.
13679     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
13680     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13682 commit 5cfaa4e54d0eb8232fa1cf092d955fdaed5b673d
13683 Author: Alessandro Rubini <rubini-list@gnudd.com>
13684 Date:   Fri Aug 7 13:58:56 2009 +0200
13686     net: defragment IP packets
13688     The defragmenting code is enabled by CONFIG_IP_DEFRAG; the code is
13689     useful for TFTP and NFS transfers.  The user can specify the maximum
13690     defragmented payload as CONFIG_NET_MAXDEFRAG (default 16k).
13691     Since NFS has a bigger per-packet overhead than TFTP, the static
13692     reassembly buffer can hold CONFIG_NET_MAXDEFRAG + the NFS overhead.
13694     The packet buffer is used as an array of "hole" structures, acting as
13695     a double-linked list. Each new fragment can split a hole in two,
13696     reduce a hole or fill a hole. No support is there for a fragment
13697     overlapping two diffrent holes (i.e., thre new fragment is across an
13698     already-received fragment).
13700     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
13701     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13703 commit 68e74567cf317318df52dbcb2ac170ffc5e7758a
13704 Author: Feng Kan <fkan@amcc.com>
13705 Date:   Fri Aug 21 10:59:42 2009 -0700
13707     ppc4xx: Fix ECC Correction bug with SMC ordering for NDFC driver
13709     Fix ECC Correction bug where the byte offset location were double
13710     flipped causing correction routine to toggle the wrong byte location
13711     in the ECC segment. The ndfc_calculate_ecc routine change the order
13712     of getting the ECC code.
13713             /* The NDFC uses Smart Media (SMC) bytes order */
13714             ecc_code[0] = p[2];
13715             ecc_code[1] = p[1];
13716             ecc_code[2] = p[3];
13717     But in the Correction algorithm when calculating the byte offset
13718     location, the s1 is used as the upper part of the address. Which
13719     again reverse the order making the final byte offset address
13720     location incorrect.
13721         byteoffs = (s1 << 0) & 0x80;
13722         .
13723         .
13724         byteoffs |= (s0 >> 4) & 0x08;
13725     The order is change to read it in straight and let the correction
13726     function to revert it to SMC order.
13728     Signed-off-by: Feng Kan <fkan@amcc.com>
13729     Acked-by: Victor Gallardo <vgallardo@amcc.com>
13730     Acked-by: Prodyut Hazarika <phazarika@amcc.com>
13731     Signed-off-by: Stefan Roese <sr@denx.de>
13733 commit 307ecb6db04eebdc06b8c87d48bf48d3cbd5e9d7
13734 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
13735 Date:   Thu Aug 13 08:32:37 2009 -0500
13737     Add support for USB on PSC3 for the mpc5200
13739     Support USB on PSC3 on the mpc5200.  Before this patch, enabling USB support
13740     would reconfigure PSC4 and PSC5 to USB.  The mpc5200 does not support USB
13741     enabled on both the standard USB port and PSC3.  This patch masks the
13742     appropriate bits when enabling USB.
13744     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
13745     Acked-by: Grant Likely <grant.likely@secretlab.ca>
13746     Acked-by: Remy Bohmer <linux@bohmer.net>
13748 commit 6b8548b0f7068379ad1efa4fa28725f361b2d3cd
13749 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13750 Date:   Thu Aug 13 19:12:44 2009 +0200
13752     Add driver for the ST M41T94 SPI RTC
13754     This RTC is used in some Calao boards. The driver code is taken from
13755     the linux rtc-m41t94 driver
13757     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13759 commit 885fc78c28fbe773bcb4edc9dd0fdac05ebb5b38
13760 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13761 Date:   Thu Aug 13 15:31:12 2009 +0200
13763     Switch from per-driver to common definition of bin2bcd and bcd2bin
13765     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13766     Acked-by: Stefan Roese <sr@denx.de>
13768 commit e84aba135ed7145299304ef550e92f08b2c99d7a
13769 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13770 Date:   Thu Aug 13 15:31:11 2009 +0200
13772     Replace BCD2BIN and BIN2BCD macros with inline functions
13774     In the process, also remove backward-compatiblity macros BIN_TO_BCD and
13775     BCD_TO_BIN and update the sole board using them to use the new bin2bcd
13776     and bcd2bin instead
13778     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13779     Acked-by: Stefan Roese <sr@denx.de>
13780     Acked-by: Detlev Zundel <dzu@denx.de>
13782 commit 5b53b29bc2e82b80b669f1d2402068c60d7fecd0
13783 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
13784 Date:   Thu Aug 13 10:14:21 2009 -0500
13786     Add support for the galaxy5200
13788     Add support for the DEKA Research and Development galaxy5200 board
13790     The galaxy5200 is an Freescale mpc5200 based embedded industrial
13791     control board.
13793     Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
13795 commit 0a9e4e772123fe3e2bb499d7d2160c4cfd8a3a8d
13796 Author: Mike Frysinger <vapier@gentoo.org>
13797 Date:   Fri Jul 24 16:34:32 2009 -0400
13799     unify {CONFIG_,}ENV_IS_EMBEDDED
13801     Some boards have fallen out of sync by defining CONFIG_ENV_IS_EMBEDDED
13802     manually.  While it is useful to have this available to the build system,
13803     let's do it automatically rather than forcing people to opt into it.
13805     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13806     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13807     Signed-off-by: Wolfgang Denk <wd@denx.de>
13809 commit 02c9aa1d41f73fdcf8383a36cc0cbbfaf952855d
13810 Author: Robin Getz <rgetz@blackfin.uclinux.org>
13811 Date:   Mon Jul 27 00:07:59 2009 -0400
13813     Add md5sum and sha1 commands...
13815     Now that we have sha1 and md5 in lib_generic, allow people to use
13816     them on the command line, for checking downloaded files.
13818     Signed-off-by: Robin Getz <rgetz@analog.com>
13820 commit 30fc5cd3116cb112d0aab7e6d7c8eef1b67ed075
13821 Author: Wolfgang Denk <wd@denx.de>
13822 Date:   Tue Aug 25 12:22:38 2009 +0200
13824     include/s3c24x0.h: fix S3C24X0_SPI_CHANNEL declaration
13826     The SPI controller on the S3C24X0 has 8 bit registers, not 32 bit.
13828     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13829     Signed-off-by: Wolfgang Denk <wd@denx.de>
13831 commit e637385e69f63bc73b9dfd2ddd8d0f383790ca28
13832 Author: Mike Frysinger <vapier@gentoo.org>
13833 Date:   Thu Aug 20 19:17:59 2009 -0400
13835     Blackfin: fix typos in gpio comments
13837     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13839 commit c2fbcb6ae86c10621a386c13be57eaa766221ed5
13840 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
13841 Date:   Tue Aug 18 04:49:57 2009 -0400
13843     Blackfin: cm-bf527/cm-bf537: increase flash sectors
13845     Newer revisions of these boards have slightly larger flashes, so increase
13846     the configured number of sectors so that U-Boot works on all revisions.
13848     Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
13849     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13851 commit a794f59a75bf9fd4a44f1ad2349cae903c42b89c
13852 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13853 Date:   Sun Aug 23 14:14:52 2009 +0200
13855     sh/rsk7203: add missing include net.h
13857     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13859 commit 6ac9f47977a9fc1876979871eeb14f26ba1bdbe6
13860 Author: Mike Frysinger <vapier@gentoo.org>
13861 Date:   Sun Aug 23 02:47:59 2009 -0400
13863     start a linker script helper file
13865     Start a common header file for common linker script code (such as
13866     workarounds for older linkers) rather than doing this in the build system.
13868     As fallout, we no longer execute the linker every time config.mk is
13869     included by a build file (which can easily be 70+ times), but rather only
13870     execute it once.
13872     This also fixes a bug in the major version checking by creating a macro to
13873     easily compare versions and keep people from making the same common
13874     mistake (forgetting to check major and minor together).
13876     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13878 commit 2ed0869d30602eb660569eababb8fedff36bd23a
13879 Author: Mike Frysinger <vapier@gentoo.org>
13880 Date:   Sat Aug 22 19:50:22 2009 -0400
13882     Blackfin: use common code to preprocess linker script
13884     Now that the common code preprocesses the linker script, the Blackfin code
13885     no longer needs to do it.
13887     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13889 commit 4d3758c835c7e96da2a291e7fb5acfc19bc06e8e
13890 Author: Mike Frysinger <vapier@gentoo.org>
13891 Date:   Sat Aug 22 19:48:56 2009 -0400
13893     .gitignore: ignore generated u-boot.lds
13895     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13897 commit 79b91de958511840d2a7491be92d435b7ef43f17
13898 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13899 Date:   Sat Aug 22 14:21:53 2009 +0200
13901     include/mmc.h: Fix typo in IS_SD() macro
13903     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
13905 commit 963f2f611741f8d9c38bd7caf20ae8c95cab7b3f
13906 Author: Wolfgang Denk <wd@denx.de>
13907 Date:   Sat Aug 22 23:27:26 2009 +0200
13909     Prepare 2009.08-rc3
13911     Update CHANGELOG, minor Coding Style cleanup.
13913     Signed-off-by: Wolfgang Denk <wd@denx.de>
13915 commit 5b2da6a309266f21cbb68f06fcfdf9ba141022e7
13916 Author: Michal Simek <monstr@monstr.eu>
13917 Date:   Fri Aug 21 06:52:25 2009 +1000
13919     qemu-mips: Fix Qemu website
13921     Signed-off-by: Michal Simek <monstr@monstr.eu>
13922     Signed-off-by: Michal Simek <michal.simek@petalogix.com>
13923     Acked-by: Shinya Kuribayashi <skuribay@pobox.com>
13925 commit 79f516bccc3cff5a5cd4b3dffb7d254e746fdbde
13926 Author: Kim Phillips <kim.phillips@freescale.com>
13927 Date:   Fri Aug 21 16:34:38 2009 -0500
13929     mpc83xx: accommodate larger kernel sizes by default
13931     linux mpc83xx_defconfig kernels are getting bigger, accommodate for
13932     their growth by adjusting default load and fdt addresses.
13934     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13936 commit 8eceeb7fd656d6d071c0a8b615e178aca5775fff
13937 Author: Kim Phillips <kim.phillips@freescale.com>
13938 Date:   Fri Aug 21 16:33:15 2009 -0500
13940     mpc83xx: mpc8377erdb - change DDR settings to those from latest bsp
13942     when using Linus' 83xx_defconfig, the mpc8377rdb would hang at boot
13943     at either:
13945     NET: Registered protocol family 16
13947     or the
13949     io scheduler cfq registered
13951     message.  Fixing up these DDR settings appears to fix the problem.
13953     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13955 commit 27c5248dd4c9ba4a36899689595956c5e59e349a
13956 Author: Kim Phillips <kim.phillips@freescale.com>
13957 Date:   Fri Aug 21 16:31:20 2009 -0500
13959     mpc83xx: tqm8349 - remove pci & flash window conflict
13961     commit 9993e196da707a0a1cd4584f1fcef12382c1c144 "mpc83xx: convert all
13962     remaining boards over to 83XX_GENERIC_PCI" remapped pci windows on
13963     tqm834x to make it more consistent with the other 83xx boards.  During
13964     that time however, the author failed to realize that FLASH_BASE was
13965     occupying the same range as what PCI1_MEM_BASE was being assigned.
13967     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13968     Tested-by: Wolfgang Denk <wd@denx.de>
13970 commit 6d2c26ac831f033b0025cfb256365a047f8dd115
13971 Author: Heiko Schocher <hs@denx.de>
13972 Date:   Fri Aug 21 16:30:30 2009 -0500
13974     mpc83xx: add missing CSCONFIG_ODT_WR_CFG for 832x CPUs
13976     Signed-off-by: Heiko Schocher <hs@denx.de>
13977     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13979 commit 193b4cb3f641ed0fd9bb79b8fa4671882c50ffdb
13980 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
13981 Date:   Fri Aug 21 16:27:05 2009 -0500
13983     mpc83xx: mpc8349 - delete unused SYS_MID_FLASH_JUMP
13985     This was introduced with the MPC8349EMDS board, and then copied to
13986     a couple other boards by nature of being the reference implementation.
13988       u-boot$git grep CONFIG_SYS_MID_FLASH_JUMP
13989       include/configs/MPC8349EMDS.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000
13990       include/configs/sbc8349.h:#define CONFIG_SYS_MID_FLASH_JUMP     0x7F000000
13991       include/configs/vme8349.h:#define CONFIG_SYS_MID_FLASH_JUMP     0x7F000000
13992       u-boot$
13994     It currently isn't used, so delete it before it spreads further.
13996     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
13997     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13999 commit c0d660fbbede322648ec79d3e39389e48f5fab24
14000 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
14001 Date:   Fri Aug 21 16:21:58 2009 -0500
14003     mpc83xx: sbc8349 - make enabling PCI more user friendly
14005     Prior to this commit, to enable PCI, you had to go manually
14006     edit the board config header, which isn't really user friendly.
14007     This adds the typical PCI make targets to the toplevel Makefile
14008     in accordance with what is being done with other boards.
14010     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
14011     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14013 commit a3c5057a6c05b4c7235a270486220e4511366133
14014 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14015 Date:   Fri Aug 7 23:37:54 2009 +0200
14017     eeprom_m95xxx: remove unused variable i
14019     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14021 commit 8cf19b9fec92d8aa22b2fe4b4e6976743b1daa51
14022 Author: Ilya Yanok <yanok@emcraft.com>
14023 Date:   Fri Jul 17 15:02:42 2009 +0400
14025     jffs2: some fixes to summary support
14027     This patch fixes some issues with JFFS2 summary support in U-Boot.
14028     1/ Summary support made compilation configurable (as summary support
14029     considered expiremental even in Linux).
14030     2/ Summary code can do unaligned 16-bit and 32-bit memory accesses.
14031     We need to get data byte by byte to exclude data aborts.
14032     3/ Make summary scan in two passes so we can safely fall back to full
14033     scan if we found unsupported entry in the summary.
14035     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14037 commit 11906936e168d12d684bb3d2930a62693ba3d84e
14038 Author: Prafulla Wadaskar <prafulla@marvell.com>
14039 Date:   Mon Aug 10 18:55:54 2009 +0530
14041     arm: rd6281a: Fixed NAND specific warning
14043     It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF
14044     for NAND specific warning removal, same is done in this patch
14046     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
14048 commit b5ffb193330113d2e00489d96bf8ec1f541ed4e1
14049 Author: Wolfgang Denk <wd@denx.de>
14050 Date:   Thu Aug 13 00:37:16 2009 +0200
14052     TRAB: make independent of specific libgcc helper routines
14054     The TRAB board references local libgcc helper routines
14055     (lib_arm/div0.o and lib_arm/_umodsi3.o) which cause build problems
14056     when we try to use the normal, compiler provided libgcc instead.
14057     Removing these references allows to build both with and without the
14058     local libgcc helper routines.
14060     Signed-off-by: Wolfgang Denk <wd@denx.de>
14062 commit 1aada9cd643567d351667138851e9231ccfa245a
14063 Author: Wolfgang Denk <wd@denx.de>
14064 Date:   Mon Aug 17 14:00:53 2009 +0200
14066     Fix all linker scripts for older binutils versions (pre-2.16)
14068     Commit f62fb99941c6 fixed handling of all rodata sections by using a
14069     wildcard combined with calls to ld's builtin functions SORT_BY_ALIGNMENT()
14070     and SORT_BY_NAME().  Unfortunately these functions were only
14071     introduced with biunutils version 2.16, so the modification broke
14072     building with all tool chains using older binutils.
14074     This patch makes it work again.  This is done by omitting the use of
14075     these functions for such old tool chains.  This will result in
14076     slightly larger target binaries, as the rodata sections are no longer
14077     in optimal order alignment-wise which reauls in unused gaps, but the
14078     effect was found to be insignificant - especially compared to the fact
14079     that you cannot build U-Boot at all in the current state.
14081     As ld seems to have no support for conditionals we run the linker
14082     script through the C preprocessor which can be easily used to remove
14083     the unwanted function calls.
14085     Note that the C preprocessor must be run with the "-ansi" (or a
14086     "-std=") option to make sure all the system-specific predefined
14087     macros outside the reserved namespace are suppressed. Otherise, cpp
14088     might for example substitute "powerpc" to "1", thus corrupting for
14089     example "OUTPUT_ARCH(powerpc)" etc.
14091     Signed-off-by: Wolfgang Denk <wd@denx.de>
14092     Cc: Mike Frysinger <vapier@gentoo.org>
14094 commit f772acf8a584067033eff1e231fcd1fb3a00d3d9
14095 Author: Wolfgang Denk <wd@denx.de>
14096 Date:   Mon Aug 17 13:17:29 2009 +0200
14098     ARM: compiler options cleanup - improve tool chain support
14100     For some time there have been repeated reports about build problems
14101     with some ARM (cross) tool chains.  Especially issues about
14102     (in)compatibility with the tool chain provided runtime support
14103     library libgcc.a caused to add and support a private implementation
14104     of such runtime support code in U-Boot.  A closer look at the code
14105     indicated that some of these issues are actually home-made.  This
14106     patch attempts to clean up some of the most obvious problems and make
14107     building of U-Boot with different tool chains easier:
14109     - Even though all ARM systems basicy used the same compiler options
14110       to select a specific ABI from the tool chain, the code for this was
14111       distributed over all cpu/*/config.mk files.  We move this one level
14112       up into lib_arm/config.mk instead.
14114     - So far, we only checked if "-mapcs-32" was supported by the tool
14115       chain; if yes, this was used, if not, "-mabi=apcs-gnu" was
14116       selected, no matter if the tool chain actually understood this
14117       option.  There was no support for EABI conformant tool chains.
14118       This patch implements the following logic:
14120       1) If the tool chain supports
14121         "-mabi=aapcs-linux -mno-thumb-interwork"
14122          we use these options (EABI conformant tool chain).
14123       2) Otherwise, we check first if
14124         "-mapcs-32"
14125          is supported, and then check for
14126         "-mabi=apcs-gnu"
14127          If one test succeeds, we use the first found option.
14128       3) In case 2), we also test if "-mno-thumb-interwork", and use
14129          this if the test succeeds. [For "-mabi=aapcs-linux" we set
14130          "-mno-thumb-interwork" mandatorily.]
14132       This way we use a similar logic for the compile options as the
14133       Linux kernel does.
14135     - Some EABI conformant tool chains cause external references to
14136       utility functions like raise(); such functions are provided in the
14137       new file lib_arm/eabi_compat.c
14139       Note that lib_arm/config.mk gets parsed several times, so we must
14140       make sure to add eabi_compat.o only once to the linker list.
14142     Signed-off-by: Wolfgang Denk <wd@denx.de>
14143     Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14144     Cc: Dirk Behme <dirk.behme@googlemail.com>
14145     Cc: Magnus Lilja <lilja.magnus@gmail.com>
14146     Cc: Tom Rix <Tom.Rix@windriver.com>
14147     Cc: Prafulla Wadaskar <prafulla@marvell.com>
14148     Acked-by: Sergey Kubushyn <ksi@koi8.net>
14149     Tested-by: Magnus Lilja <lilja.magnus@gmail.com>
14150     Tested-by: Andrzej Wolski <awolski@poczta.fm>
14151     Tested-by: Gaye Abdoulaye Walsimou <walsimou@walsimou.com>
14152     Tested-by: Tom Rix <Tom.Rix@windriver.com>
14153     Tested-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14155 commit 269610f6ba2e4a7bc27d2e53d43160614016964f
14156 Author: Mingkai Hu <Mingkai.hu@freescale.com>
14157 Date:   Thu Jul 30 17:56:51 2009 +0800
14159     NAND boot: fix nand_load overlap issue
14161     The code copy data from NAND flash block by block, so when
14162     the data length isn't a whole-number multiple of the block
14163     size, it will overlap the rest space.
14165     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
14166     Signed-off-by: Scott Wood <scottwood@freescale.com>
14168 commit 1fc1d9aed08f2b3366d634fda6712a710b2cff9a
14169 Author: Giulio Benetti <giulio.benetti@micronovasrl.com>
14170 Date:   Fri Jul 31 17:30:34 2009 -0500
14172     add WATCHDOG_RESET() on nand write and read
14174     Signed-off-by: giulio.benetti@micronovasrl.com
14175     Acked-by: Wolfgang Denk <wd@denx.de>
14176     Signed-off-by: Scott Wood <scottwood@freescale.com>
14178 commit b1e849f2201bbbf3ca81fde164f154f9caf7f0e9
14179 Author: Peter Tyser <ptyser@xes-inc.com>
14180 Date:   Wed Feb 4 15:14:05 2009 -0600
14182     tsec: Wait for auto-negotiation to complete without link
14184     Previously, waiting for auto-negotiation would only occur if a valid
14185     link had been detected.  Problems arose when attempting to use a
14186     tsec immediately after bootup but before link was achieved, eg:
14187     => dhcp
14188     Auto-neg error, defaulting to 10BT/HD
14189     eTSEC1: No link.
14190     Auto-neg error, defaulting to 10BT/HD
14191     eTSEC2: No link.
14192     =>
14194     With this patch applied the same operation as above resulted in:
14195     => dhcp
14196     Waiting for PHY auto negotiation to complete. done
14197     Enet starting in 1000BT/FD
14198     Speed: 1000, full duplex
14200     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14201     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14203 commit 477fa6378fbd3e47a5e2e83d0dd3970d5b1c8371
14204 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
14205 Date:   Thu Aug 20 10:14:11 2009 +0200
14207     arm: kirkwood: See to it that sent data is 8-byte aligned
14209     U-boot might use non-8-byte-aligned addresses for sending data, which
14210     the kwgbe_send doesn't accept (bootp does this for me). This patch
14211     copies the data to be sent to a malloced temporary buffer if it is
14212     non-aligned.
14214     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
14215     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14217 commit cad713bf7548b9e90433dac8270165402a6c9cc3
14218 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
14219 Date:   Thu Aug 20 10:13:06 2009 +0200
14221     Wait for the link to come up on kirkwood network init
14223     This patch makes the device wait for up to 5 seconds for the link to
14224     come up, similar to what many of the other network drivers do. This
14225     avoids confusing situations where, e.g., a tftp fails when initiated
14226     early after U-boot has started (before the link has come up).
14228     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
14229     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14231 commit bb1ca3b27f7fba8c73cb10279a6a8b8b69a308ff
14232 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
14233 Date:   Thu Aug 20 10:12:28 2009 +0200
14235     arm:kirkwood Define kirkwood phy address magic number
14237     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
14238     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14240 commit f81ecb5d3300bf92d17302d3712f30585c182da9
14241 Author: Timur Tabi <timur@freescale.com>
14242 Date:   Mon Aug 17 15:55:38 2009 -0500
14244     e1000: fix PCI memory addressing
14246     The Intel E1000 driver was making assumptions about the relationship between
14247     some virtual, physical, and PCI addresses.
14249     Also fix some bad usage of the DEBUGOUT macro
14251     Signed-off-by: Timur Tabi <timur@freescale.com>
14252     Acked-by: Kumar Gala <galak@kernel.crashing.org>
14253     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14255 commit b644006e1a7baa227aedc606ecdf0bb5eeb24cab
14256 Author: Ilya Yanok <yanok@emcraft.com>
14257 Date:   Wed Aug 12 16:42:48 2009 +0400
14259     jffs2: clean the cache in case of malloc fails in build_lists
14261     We should call jffs2_clean_cache() if we return from jffs2_build_lists()
14262     with an error to prevent usage of incomplete lists. Also we should
14263     free() a local buffer to prevent memory leaks.
14265     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14267 commit 7ff66bb0be80cadd681be22a72e5eb02ee14c878
14268 Author: Heiko Schocher <hs@denx.de>
14269 Date:   Wed Aug 12 10:17:03 2009 +0200
14271     ppc: trigger WDT before starting Linux
14273     Signed-off-by: Heiko Schocher <hs@denx.de>
14275 commit 918319c705d8a3d6251919a660baef32ff3a829a
14276 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
14277 Date:   Wed Jul 22 18:30:03 2009 +0200
14279     Update the mtd driver name in bootargs for at91-based boards
14281     The name of the atmel nand driver in the kernel changed from at91_nand
14282     to atmel_nand back in June 2008, but the at91-based boards config files
14283     still refer to at91_nand. This patch updates them with the new name
14285     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
14287 commit 8fa656aa5289815d942ebdc26182ccb9f2b9c86f
14288 Author: Ben Goska <goskab@onid.oregonstate.edu>
14289 Date:   Fri Aug 14 10:03:36 2009 -0700
14291     omap3: Fixed a problem with hwecc
14293     In commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e there
14294     was a typo that offset all the ecc registers by 4 bytes, fixed that.
14296     Signed-off-by: Ben Goska <goskab@onid.oregonstate.edu>
14297     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
14299 commit 514bab6609acd1a2a19fdd75c2f6255178db7c96
14300 Author: Stefan Roese <sr@denx.de>
14301 Date:   Mon Aug 17 16:57:53 2009 +0200
14303     ppc4xx: Fix "chip_config" command for AMCC Arches
14305     This patch fixes the "chip_config" command for I2C bootstrap EEPROM
14306     configuration. First it changes the I2C bootstrap EEPROM address to
14307     0x54 as this is used on Arches (instead of 0x52 on Canyonlands/
14308     Glacier). Additionally, the NAND bootstrap settings are removed
14309     for Arches since Arches doesn't support NAND-booting.
14311     Signed-off-by: Stefan Roese <sr@denx.de>
14313 commit 4af34177b657e91263919a307fd0b0865a299e52
14314 Author: Wolfgang Denk <wd@denx.de>
14315 Date:   Sun Aug 16 23:40:13 2009 +0200
14317     Monahans: avoid floating point calculations
14319     Current code for the Monahans CPU defined OSCR_CLK_FREQ as 3.250 (MHz)
14320     which caused floating point operations to be used. This resulted in
14321     unresolved references to some FP related libgcc functions when using
14322     U-Boot's private libgcc functions.
14324     Change the code to use fixed point math only.
14326     Signed-off-by: Wolfgang Denk <wd@denx.de>
14328 commit e393e2e9bc5cd3d5484e193d1380e7cd7587ab5c
14329 Author: Kumar Gala <galak@kernel.crashing.org>
14330 Date:   Fri Aug 14 16:43:22 2009 -0500
14332     85xx: Fix addrmap to include memory
14334     When we init the addrmap based on the TLB we will not end up getting
14335     the TLB that covers memory if we are using SPD.  The reason is we
14336     haven't relocated at the point that we setup the memory TLB and thus it
14337     will not get setup in the addrmap.
14339     Instead we can just walk over the TLB array after we've relocated and
14340     see all the TLBs that have been set and use that information to populate
14341     the initial addrmap.  By doing this we insure that we get the TLB
14342     entries that cover memory.
14344     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14346 commit 7dedefdf749ff02c1086f7ddb8cb83a77b00d030
14347 Author: John Schmoller <jschmoller@xes-inc.com>
14348 Date:   Wed Aug 12 10:55:47 2009 -0500
14350     flash: Fix CFI buffer size bug
14352     Fix bug introduced by 9c048b523413ae5f3ff34e00cf57569c3368ab51.
14354     The cfi_flash.c driver cast the flash buffer size to a uchar in
14355     flash_write_cfibuffer(). On some flash parts, (tested on Numonyx
14356     part PC32F512M29EWH), the buffer size is 1KB. Remove the cast to
14357     uchar to enable buffer sizes to be larger.
14359     Signed-off-by: John Schmoller <jschmoller@xes-inc.com>
14360     Signed-off-by: Stefan Roese <sr@denx.de>
14362 commit f6e3a1fa92f61083885178101e973c86b419a6f7
14363 Author: Mike Frysinger <vapier@gentoo.org>
14364 Date:   Thu Aug 13 00:32:14 2009 -0400
14366     trab: rename spi_init()
14368     The local board-specific spi_init() function conflicts with the common SPI
14369     layer, so rename it to something board-specific.
14371     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14373 commit 253cb831f5861358a7fa673305cdf7ded1096f44
14374 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
14375 Date:   Wed Jul 29 06:05:20 2009 -0400
14377     zlib: add watchdog reset call
14379     This patch adds watchdog reset call to allow its invokation during decompression
14380     phase. This control was present on old zlib version and here it is
14381     backported for those relevant routines. This patch is sent as a zlib separate
14382     one beacuse it was not tested due to specific board lack.
14383     zlib patches will be unified just in one when this will be validated through
14384     tests.
14386     Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
14388 commit dce3d797102b6618e8bdd4a09cfd35969f165d86
14389 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
14390 Date:   Wed Jul 29 08:05:08 2009 -0400
14392     zlib: updated to v.1.2.3
14394     This patch updates zlib to the latest stable version.
14395     Only relevant zlib parts were ported to u-boot tree, as already did for the
14396     current zlib (0.95). New zlib guarantees a faster inflate performances
14397     other then others improvements as explained at www.zlib.net.
14398     It also includes Alessandro Rubini's patches to allow 0 as destination pointer
14399     and to call watchdog reset if required by architecture.
14401     Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
14402     Reviewed-by: Angelo Castello <angelo.castello@st.com>
14403     Reviewed-by: Alessandro Rubini <rubini-list@gnudd.com>
14405 commit 3426d65daab6af483b177ed502038f52ed2e5aef
14406 Author: Heiko Schocher <hs@denx.de>
14407 Date:   Tue Aug 11 10:37:58 2009 +0200
14409     dtt, lm81: move unneccessary printf into a debug printf
14411     Signed-off-by: Heiko Schocher <hs@denx.de>
14413 commit 54e399f110bbaa24e662e6dd9e88ddb86989d668
14414 Author: Mark Jackson <mpfj-list@mimc.co.uk>
14415 Date:   Tue Aug 11 11:33:47 2009 +0100
14417     MIMC200: reduce LCD pixclock
14419     The initial pixclock for the MIMC200 board is wrong (and causes
14420     screen corruption due to DMA underruns).
14422     This patch simply reduces the pixel clock to fix the problem.
14424     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
14426 commit 1443cd7e54d6893ab7cc51d93fe7759cdaa8b31f
14427 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14428 Date:   Wed Jul 1 14:04:05 2009 -0400
14430     UEC FIXED PHY: Determine fixed-phy port using UEC interface name.
14432     Fixed a misunderstanding in the original implementation, 'devnum' that
14433     was used in the cpu/ppc4xx/4xx_enet.c implementation was NOT the
14434     PHY's SMI address, rather it was the number of the MAC interface on
14435     the CPU. The equivalent of this for uec_phy will be the UEC number
14436     stored in mii_info->dev->name. Usage example is updated for uec.
14438     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14439     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14441 commit 1a9519373b977ef3f7c9563ad3acb6c6f2424657
14442 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14443 Date:   Wed Jul 1 14:03:15 2009 -0400
14445     Assigned a static SMI address to all UECs TBIPA address.
14447     It is set to 0x1F by default and can be overwritten on the board
14448     header file by defining CONFIG_UTBIPAR_INIT_TBIPA. This allows
14449     the CPU to simply "reserve" one SMI address instead of using
14450     a different one for each UEC.
14452     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
14453     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14455 commit 9fd38a01cbc0ce4a8db41f72677103ed04b23db5
14456 Author: Prafulla Wadaskar <prafulla@marvell.com>
14457 Date:   Mon Aug 10 19:43:06 2009 +0530
14459     net: kirkwood: updates: used eth_setenv_enetaddr api
14461     eth_setenv_enetaddr is avaible by upper layer
14462     using this saves 204 bytes on total image size
14464     used Local OUI instead of Marvell OUI for
14465     random MAC address generation logic
14467     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
14468     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14470 commit ecbd2078a1f56c85b6c56afaaed862bf92ccd3f3
14471 Author: Roy Zang <tie-fei.zang@freescale.com>
14472 Date:   Tue Aug 11 03:48:05 2009 +0800
14474     Fix E1000 build warning on AP1000 board
14476      Fix E1000 build warning on AP1000 board
14477      Fix the build warning on AP1000 board:
14478      e1000.c:131: warning: 'e1000_read_eeprom' used but never defined
14479      e1000.c:2012: warning: 'e1000_set_phy_mode' defined but not used
14481     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
14482     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14484 commit b3af1d698b031e721bacaee8715d79daaf823de6
14485 Author: Sandeep Paulraj <s-paulraj@ti.com>
14486 Date:   Mon Aug 10 12:24:40 2009 -0400
14488     ARM: Davinci DM355: Enabling DM9000 on DM355 EVM
14490     Due to recent changes to the NET support on U-boot, DM9000
14491     is no longer detected on the DM355 EVM.
14492     This minor update enables DM9000 on the DM355 EVM.
14493     Tested on the DM355 EVM
14495     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
14496     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14498 commit 08c2df33f1cd5935938486e968696f94ad406313
14499 Author: Prafulla Wadaskar <prafulla@marvell.com>
14500 Date:   Mon Aug 10 19:23:19 2009 +0530
14502     net: phy: bugfixes: mv88E61xx compiler warnings fixed
14504     1. mv88E61xx driver compiler warnings fixed
14505     2. idstr if-else statements changed to switch() construct
14506        and added default case too.
14507        This fixed idstr may be uninitialized warning
14509     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
14510     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14512 commit 750326e5d540885e3ec36bda9464b8269249f6ce
14513 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
14514 Date:   Mon Aug 10 11:00:00 2009 +0800
14516     arm: A320: driver for FTMAC100 ethernet controller
14518     This patch adds an FTMAC100 ethernet driver for Faraday A320 evaluation board.
14520     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
14521     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14523 commit f90dc43fd67eea71124b999a7d5e617d0d86795b
14524 Author: Kumar Gala <galak@kernel.crashing.org>
14525 Date:   Mon Aug 10 16:40:55 2009 -0500
14527     85xx: Removed BEDBUG support from FSL 85xx boards
14529     For some reason the MPC8544 enabled BEDBUG if PCI was enabled and that
14530     got copied int the MPC8536, MPC8572 and P2020 DS boards.  The BEDBUG
14531     support has never been made to work completely on e500/85xx so we
14532     just disable it to save space and match the other FSL 85xx boards.
14534     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14536 commit eb1a4d0a471505c169bef19a73a60f8641f0b875
14537 Author: Wolfgang Denk <wd@denx.de>
14538 Date:   Mon Aug 10 10:39:12 2009 +0200
14540     Prepare 2009.08-rc2
14542     Update CHANGELOG
14544     Signed-off-by: Wolfgang Denk <wd@denx.de>
14546 commit 53cc18c71b2b920cca171874c6663e274fa80556
14547 Author: Wolfgang Denk <wd@denx.de>
14548 Date:   Mon Aug 10 10:38:34 2009 +0200
14550     Minor coding style cleanup.
14552     Signed-off-by: Wolfgang Denk <wd@denx.de>
14554 commit d371708a1beda0f529756e614af785b30461379e
14555 Author: Wolfgang Denk <wd@denx.de>
14556 Date:   Mon Aug 10 09:59:10 2009 +0200
14558     net/tftp.c: fix warning: pointer targets differ in signedness
14560     tftp.c:294: warning: pointer targets in passing argument 1 of 'strlen'
14561     differ in signedness
14563     This was only visible for the utx8245 board which seems to have DEBUG
14564     enabled.
14566     Signed-off-by: Wolfgang Denk <wd@denx.de>
14568 commit 3ed9e943fdfe51174b23989d48563b8c1b7d2ea8
14569 Author: Dirk Behme <dirk.behme@googlemail.com>
14570 Date:   Sat Aug 8 16:06:47 2009 +0200
14572     ARM Cortex A8: Remove bogus config.mk entries
14574     Remove bogus config.mk entry, fix newline and remove redundant
14575     omap3/config.mk
14577     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
14579 commit cd3dcba1422d3441503251fbc69cf2437c440781
14580 Author: Dirk Behme <dirk.behme@googlemail.com>
14581 Date:   Sat Aug 8 12:46:09 2009 +0200
14583     OMAP3: Fix missing GPMC_CONFIG_CS0_BASE
14585     Applying two indepenent OMAP3 patches resulted in missing
14586     GPMC_CONFIG_CS0_BASE. Patch "omap3: embedd gpmc_cs into gpmc
14587     config struct" removes GPMC_CONFIG_CS0_BASE, independent patch
14588     "omap3: bug fix for NOR boot support" introduces it's usage.
14589     Re-introduce GPMC_CONFIG_CS0_BASE.
14591     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
14593 commit ba3dbaf281130029ecb970a922551902c1d80b50
14594 Author: Ilya Yanok <yanok@emcraft.com>
14595 Date:   Mon Jun 8 04:12:49 2009 +0400
14597     mxc-mmc: sdhc host driver for MX2 and MX3 proccessor
14599     This is a port of Linux driver for SDHC host controller hardware
14600     found on Freescale's MX2 and MX3 processors. Uses new generic MMC
14601     framework (CONFIG_GENERIC_MMC) and it looks like there are some
14602     problems with a framework (at least on LE cpus). Some of these
14603     problems are addressed in the following patches.
14605     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14607 commit 642d7b63c343633dcafc4e23a20e32604a05ff13
14608 Author: Alessandro Rubini <rubini-list@gnudd.com>
14609 Date:   Fri Aug 7 12:35:47 2009 +0200
14611     kirkwood/gpio.h: remove duplicate definition
14613     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
14615 commit 3ac374c0f0b7d856f1a43317a286f2079106bd6a
14616 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
14617 Date:   Fri Aug 7 12:37:36 2009 +0200
14619     Add driver for the ST M95xxx SPI EEPROM
14621     This chip is used in a number of boards manufactured by Calao-Systems
14622     which should be supported soon. This driver provides the necessary
14623     spi_read and spi_write functions necessary to communicate with the chip.
14625     Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
14627 commit 30951960bae9a2c33e324a7165962a082e913f9e
14628 Author: Prafulla Wadaskar <prafulla@marvell.com>
14629 Date:   Fri Aug 7 22:27:32 2009 +0530
14631     arm: Sheevaplug: Fixed NAND specific warning
14633     It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF
14634     for NAND specific warning removal, same is done in this patch
14636     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
14638 commit 317734966e763fdee183898c0ed940c9bada2541
14639 Author: Josh Boyer <jwboyer@linux.vnet.ibm.com>
14640 Date:   Fri Aug 7 13:53:20 2009 -0400
14642     Dual-license IBM code contributions
14644     It was brought to our attention that U-Boot contains code derived from the
14645     IBM OpenBIOS source code originally provided with some of the older PowerPC
14646     4xx development boards.  As a result, the original license of this code has
14647     been carried in the various files for a number of years in the U-Boot project.
14649     IBM is dual-licensing the IBM code contributions already present in U-Boot
14650     under either the terms of the GNU General Public License version 2, or the
14651     original code license already present.
14653     Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
14655 commit cfd700be9f5ed289fd57a9bd61e266319badcb0d
14656 Author: Kumar Gala <galak@kernel.crashing.org>
14657 Date:   Wed Aug 5 09:03:54 2009 -0500
14659     fdt: Fix fdt_pci_dma_ranges handling of 64-bit ranges
14661     If the size of a region equal to 4G it can't be represnted in a 32-bit
14662     BAR so we should have marked that case as MEM64.
14664     Additionally bump the number of inbound windows up to 4 to handle the
14665     fact that Freescale PPCs that have an implicit window for CCSRBAR.
14667     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14669 commit 59b4d7471c42e955bd9846892a0cc7478171778d
14670 Author: Wolfgang Denk <wd@denx.de>
14671 Date:   Thu Aug 6 21:29:59 2009 +0200
14673     ARM EABI: add new helper functions resp. function names
14675     The ARM EABI defines new names for GCC helper functions,
14676     and GCC seems to need some new functions as well.
14678     This patch is a minimal-invasive approach to fix problems with EABI
14679     conformant tool chains (to be used with "USE_PRIVATE_LIBGCC=yes").
14681     Signed-off-by: Wolfgang Denk <wd@denx.de>
14682     Tested-by: Dirk Behme <dirk.behme@googlemail.com>
14684 commit 197324d7d998a791e5137b8176981b4af25220ae
14685 Author: Peter Tyser <ptyser@xes-inc.com>
14686 Date:   Wed Aug 5 16:18:44 2009 -0500
14688     hush: Fix bogus free() call
14690     An off-by-one error in hush.c resulted in an unintentional free() call
14691     every time a command was executed
14693     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14695 commit ff27650bb255e2275a212357b78c3b77cbf1d2e9
14696 Author: Detlev Zundel <dzu@denx.de>
14697 Date:   Wed Aug 5 18:37:45 2009 +0200
14699     digsy_mtc: Update default environment
14701     Signed-off-by: Detlev Zundel <dzu@denx.de>
14703 commit 0b40bd439a33bde9e3cccf1acb5744225d0c6103
14704 Author: Detlev Zundel <dzu@denx.de>
14705 Date:   Wed Aug 5 18:37:44 2009 +0200
14707     digsy_mtc: Add delay in SPI transfers to the companion controller.
14709     While at it, remove initialization of variables which will be set
14710     before usage in all cases.
14712     Signed-off-by: Detlev Zundel <dzu@denx.de>
14714 commit 0bf00750e082a004e5fb058925622ae72890cc56
14715 Author: Anatolij Gustschin <agust@denx.de>
14716 Date:   Wed Aug 5 18:37:43 2009 +0200
14718     digsy_mtc: minor fixes for mtc command help
14720     Add mtc state subcommand description to the
14721     help of mtc command.
14723     Remove some newlines in description of commands
14724     for proper help formating.
14726     Signed-off-by: Anatolij Gustschin <agust@denx.de>
14728 commit 5cc69084189bf49aa99d13d57515be72d1844bdf
14729 Author: Grzegorz Bernacki <gjb@semihalf.com>
14730 Date:   Wed Aug 5 18:37:42 2009 +0200
14732     digsy_mtc: Add mtc state command.
14734     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
14736 commit 716655288a53c95fad203ebf21d0b8ffdc2f7525
14737 Author: Wolfgang Denk <wd@denx.de>
14738 Date:   Tue Jul 28 22:35:39 2009 +0200
14740     Partition support: remove newline from partition name
14742     Remove bogus newline character that got added to the .name field of
14743     the disk_partition_t structure.
14745     Signed-off-by: Wolfgang Denk <wd@denx.de>
14747 commit 3f1649fb0dfb1e5c8890de154c332c394db5cdb5
14748 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
14749 Date:   Tue Jul 28 09:33:17 2009 +0200
14751     Fix LZMA string.h header inclusion issue and remove unused variables.
14753     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
14755 commit 1c6232f1e2eae87e0e36d489611eb6891dff21e1
14756 Author: Jens Scharsig <esw@bus-elektronik.de>
14757 Date:   Mon Jul 27 15:28:42 2009 +0200
14759     bus_vcxk.c: fix warning: unused variable 'lineptr'
14761     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
14763 commit 18304f7675e84252965b4e24cba279071f1da472
14764 Author: Mike Frysinger <vapier@gentoo.org>
14765 Date:   Fri Jul 24 17:51:27 2009 -0400
14767     env: kill off default_environment_size
14769     The only environment type that uses this variable is spi flash, and that is
14770     only because it is reimplementing the common set_default_env() function.
14771     So fix the spi flash code and kill off the default_environment_size in the
14772     process.
14774     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14776 commit bedd8403f77f790e9876578885eab1200ba2f8d8
14777 Author: Mike Frysinger <vapier@gentoo.org>
14778 Date:   Thu Jul 23 16:37:48 2009 -0400
14780     export SPI functions to standalone apps
14782     While we're here, fix the broken #ifdef handling in _exports.h.
14784     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14786 commit 3b9043a7c03290c9bdbef03848307263f5f3472c
14787 Author: Penda Naveen Kumar <pnaveen@ti.com>
14788 Date:   Fri Jul 31 00:06:36 2009 +0530
14790     omap3: bug fix for NOR boot support
14792     This patch provides bug fix, when omap3 uses nor boot.
14794     Signed-off-by: Penda Naveen Kumar<pnaveen@ti.com>
14795     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
14797 commit 61c68ae0b43bb5d6ab32958c45289aa197b1a2d1
14798 Author: Michael Evans <horse_dung@hotmail.com>
14799 Date:   Mon Jul 13 20:13:45 2009 +0100
14801     Fix examples for OMAP3 boards...
14803     The attached patch corrects an error in the examples/Makefile which
14804     causes the applications in the examples directory to hang on OMAP3
14805     based boards. The current Makefile sets -Ttext during linking to
14806     0x0c100000 which is outside of addressable SDRAM memory. The script
14807     corrects the existing ifeq...else...endif logic to look at the VENDOR
14808     tag rather than the CPU tag.
14810     The patch affects the following configs: omap3_beagle_config,
14811     omap3_overo_config, omap3_evm_config, omap3_pandora_config,
14812     omap3_zoom1_config and omap3_zoom2_config.
14814     Signed-off-by: Michael Evans <horse_dung@hotmail.com>
14816     Edited commit message.
14817     Signed-off-by: Wolfgang Denk <wd@denx.de>
14819 commit a3d1421dfd0bb1a729e171f8a093ac837f92cec6
14820 Author: Dirk Behme <dirk.behme@googlemail.com>
14821 Date:   Sat Aug 8 09:30:23 2009 +0200
14823     omap3: use only fixed-size types inside ctrl_structs
14825     replace variable types in ctrl_structs for omap3 by those with
14826     fixed size (u8, u16, u32).
14827     Additional ifndef-protection is needed by examples which do not
14828     compile when including asm/types.h
14830     Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
14831     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
14833 commit 894113529e3a04871544dde977d6d7adee05d3bf
14834 Author: Dirk Behme <dirk.behme@googlemail.com>
14835 Date:   Sat Aug 8 09:30:22 2009 +0200
14837     omap3: replace all instances of gpmc config struct by one global
14839     Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
14840     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
14842 commit 97a099eaa48d5c762c4f73c52c3090c513b8b877
14843 Author: Dirk Behme <dirk.behme@googlemail.com>
14844 Date:   Sat Aug 8 09:30:21 2009 +0200
14846     omap3: remove typedefs for configuration structs
14848     Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
14849     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
14851 commit aa0707897c49c330b7d6b8d8362e44f60f224732
14852 Author: Roy Zang <tie-fei.zang@freescale.com>
14853 Date:   Fri Jul 31 13:34:02 2009 +0800
14855     Add Intel E1000 PCIE card support
14857     Based on Intel PRO/1000 Network Driver 7.3.20-k2
14858       Add Intel E1000 PCIE card support. The following cards are added:
14859       INTEL_82571EB_COPPER
14860       INTEL_82571EB_FIBER,
14861       INTEL_82571EB_SERDES
14862       INTEL_82571EB_QUAD_COPPER
14863       INTEL_82571PT_QUAD_COPPER
14864       INTEL_82571EB_QUAD_FIBER
14865       INTEL_82571EB_QUAD_COPPER_LOWPROFILE
14866       INTEL_82571EB_SERDES_DUAL
14867       INTEL_82571EB_SERDES_QUAD
14868       INTEL_82572EI_COPPER
14869       INTEL_82572EI_FIBER
14870       INTEL_82572EI_SERDES
14871       INTEL_82572EI
14872       INTEL_82573E
14873       INTEL_82573E_IAMT
14874       INTEL_82573L
14875       INTEL_82546GB_QUAD_COPPER_KSP3
14876       INTEL_80003ES2LAN_COPPER_DPT
14877       INTEL_80003ES2LAN_SERDES_DPT
14878       INTEL_80003ES2LAN_COPPER_SPT
14879       INTEL_80003ES2LAN_SERDES_SPT
14881      82571EB_COPPER dual ports,
14882      82572EI single port,
14883      82572EI_COPPER single port PCIE cards
14884      and
14885      82545EM_COPPER,
14886      82541GI_LF
14887      pci cards are tested on both  P2020 board
14888      and MPC8544DS board.
14890      Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
14892     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14894 commit 86848a74c3c8eb2f8dd179d039ee604dc45288cf
14895 Author: Mike Frysinger <vapier@gentoo.org>
14896 Date:   Wed Jul 15 21:31:28 2009 -0400
14898     net: sync env ethaddr to device enetaddr in eth_init()
14900     In the previous enetaddr refactoring, the assumption with commit 56b555a644
14901     was that the eth layer would handle the env -> device enetaddr syncing.
14902     This was not the case as eth_initialize() is called only once and the sync
14903     occurs there.  So make sure the eth_init() function does the env -> device
14904     sync with every network init.
14906     Reported-by: Andrzej Wolski <awolski@poczta.fm>
14907     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14908     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14910 commit 0ebf04c607b54a352629dcf7e76b76f1785dae54
14911 Author: Robin Getz <rgetz@blackfin.uclinux.org>
14912 Date:   Thu Jul 23 03:01:03 2009 -0400
14914     minor debug cleanups in ./net
14916      Minor ./net cleanups - no functional changes
14917       - change #ifdef DEBUG printf(); #endif to just debug()
14918       - changed __FUNCTION__ to __func__
14919       - got rid of extra whitespace between function and opening brace
14920       - removed unnecessary braces on if statements
14922      gcc dead code elimination should make this functionally/size equivalent
14923      when DEBUG is not defined. (confirmed on Blackfin, with gcc 4.3.3).
14925      Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
14927     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14929 commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e
14930 Author: Matthias Ludwig <mludwig@ultratronik.de>
14931 Date:   Tue May 19 09:09:31 2009 +0200
14933     omap3: embedd gpmc_cs into gpmc config struct
14935     Embedd chip select configuration into struct for gpmc config
14936     instead of having it completely separated as suggested by
14937     Wolfgang Denk on
14938     http://lists.denx.de/pipermail/u-boot/2009-May/052247.html
14940     Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
14942 commit 06bffc6ea52d4b390843d295d438b2037d12e5fd
14943 Author: David Brownell <david-b@pacbell.net>
14944 Date:   Thu Jul 16 18:40:55 2009 -0700
14946     rm9200 lowevel_init: don't touch reserved/readonly registers
14948     For some reason the AT91rm9200 lowlevel init writes to a bunch of
14949     reserved or read-only addresses.  All the boards seem to define the
14950     value-to-be-written values as zero ... but they shouldn't actually
14951     be writing *anything* there.
14953     No documented erratum justifies these accesses.  It looks like maybe
14954     some pre-release BDI-2000 setup code has been carried along by cargo
14955     cult programming since at least late 2004 (per GIT history).
14957     Here's a patch disabling what seems to be bogosity.  Tested on a
14958     csb337; there were no behavioral changes.
14960     Signed-off-by: David Brownell <david-b@pacbell.net>
14962     on RM9200ek
14963     Tested-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14965 commit 301b7db88fbdf7d118efb79b371b2527a2c31868
14966 Author: David Hunter <hunterd42@gmail.com>
14967 Date:   Thu Jul 30 14:32:49 2009 -0700
14969     pxa: Fix typo in GCDR(x)
14971     Fix a typo in the GCDR(x) macro. It's a good thing no one was using it.
14973     Signed-off-by: David Hunter <hunterd42@gmail.com>
14975 commit 3c448e648221879ae0e030e94508b4f9f63b7ab8
14976 Author: Eric Benard <eric@eukrea.com>
14977 Date:   Sat Jul 18 23:45:15 2009 +0200
14979     Add AT91SAM9260 to at91's lowlevel_init.S
14981     Needed for AT91SAM9260 NOR Boot on Eukrea's CPU9260.
14983     Signed-off-by: Eric Benard <eric@eukrea.com>
14985 commit 56bdfa961242fc6acaeebc800640a12b28db3899
14986 Author: Dirk Eibach <eibach@gdsys.de>
14987 Date:   Thu Jul 30 09:36:33 2009 +0200
14989     ppc4xx: Remove check for PPC460EX from CompactCenter
14991     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
14992     Signed-off-by: Stefan Roese <sr@denx.de>
14994 commit c3fa4f0c8684c862ecd3fb622fab1e17e44e82e1
14995 Author: Stefan Roese <sr@denx.de>
14996 Date:   Wed Jul 29 08:46:10 2009 +0200
14998     ppc4xx: Add support for PPC460EX/460GT rev B chip to AMCC Canyonlands
15000     This patch is based on a diff created by Phong Vo from AMCC.
15002     Signed-off-by: Phong Vo <pvo@amcc.com>
15003     Signed-off-by: Stefan Roese <sr@denx.de>
15005 commit 89bcc4875007ef6608297dc11e7a0d1fbd9900d2
15006 Author: Stefan Roese <sr@denx.de>
15007 Date:   Wed Jul 29 08:45:27 2009 +0200
15009     ppc4xx: Add basic support for AMCC PPC460EX/460GT rev B chips
15011     This patch is based on a diff created by Phong Vo from AMCC.
15013     Signed-off-by: Phong Vo <pvo@amcc.com>
15014     Signed-off-by: Stefan Roese <sr@denx.de>
15016 commit 82a7edc7ea8f5fe55fed4ff7e127469569e539c4
15017 Author: Stefan Roese <sr@denx.de>
15018 Date:   Tue Jul 28 15:12:04 2009 +0200
15020     ppc4xx: Canyonlands-NAND-boot: Support 2 Crucial 512MByte SODIMM's
15022     Some Canyonlands boards are equipped with different SODIMM's. This is no
15023     problem with the "normal" NOR booting Canyonlands U-Boot, since it
15024     automatically detects the SODIMM's via SPD data and correctly configures
15025     them. But the NAND booting version is different. Here we only have 4k
15026     of image size to completely setup the hardware, including DDR2 setup.
15027     So we need to use a fixed DDR2 setup here. This doesn't work for different
15028     SODIMM's right now.
15030     Currently only this Crucial SODIMM is support:
15031     CT6464AC667.8FB (dual ranked)
15033     Now some boards are shipped with this SODIMM:
15034     CT6464AC667.4FE (single ranked)
15036     This patch now supports both SODIMM's by configuring first for the dual
15037     ranked DIMM. A quick shows, if this module is really installed. If this test
15038     fails, the DDR2 controller is re-configured for the single
15039     ranked SODIMM.
15041     Tested with those SODIMM's:
15043     CT6464AC667.8FB (dual ranked)
15044     CT6464AC667.4FE (single ranked)
15046     Signed-off-by: Stefan Roese <sr@denx.de>
15048 commit 27dd5f8e1062684f1ba685760409d9b2ab6691bf
15049 Author: Stefan Roese <sr@denx.de>
15050 Date:   Tue Jul 28 10:56:03 2009 +0200
15052     ppc4xx: amcc: Move "kernel_addr_r" etc to higher locations (> 16MB)
15054     This patch moves the load addresses for kernel, fdt and ramdisk to higher
15055     addresses (>= 16MB). This enables booting of bigger kernel images (e.g.
15056     lockdep enabled).
15058     Signed-off-by: Stefan Roese <sr@denx.de>
15060 commit 6942efc2be1b90054fa4afa5cda7023469fe08b9
15061 Author: Stefan Roese <sr@denx.de>
15062 Date:   Tue Jul 28 10:50:32 2009 +0200
15064     ppc4xx: amcc: Set CONFIG_SYS_BOOTMAPSZ to 16MB for big kernels
15066     This patch changes CONFIG_SYS_BOOTMAPSZ from 8MB to 16MB which is the
15067     initial TLB on 40x PPC's in the Linux kernel. With this change even bigger
15068     Linux kernels (> 8MB) can be booted.
15070     This patch also sets CONFIG_SYS_BOOTM_LEN to 16MB (default 8MB) to enable
15071     decompression of bigger images.
15073     Signed-off-by: Stefan Roese <sr@denx.de>
15075 commit 901be89a27e11b2627c132ee87c7761bd6886091
15076 Author: Heiko Schocher <hs@denx.de>
15077 Date:   Tue Jul 28 14:53:44 2009 +0200
15079     83xx, kmeter1, fix: update in the DTS the correct size for the first flash
15081     When updating the "reg" in the "/localbus/flash@f0000000,0" node
15082     size was wrong updated for the first flash, because the total
15083     size was filled in, instead of the right size for it.
15085     Signed-off-by: Heiko Schocher <hs@denx.de>
15086     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15088 commit 4c2e3da82dc2b7f8b39b7f1d57f570e4bc5caa6d
15089 Author: Kumar Gala <kumar.gala@freescale.com>
15090 Date:   Tue Jul 28 21:49:52 2009 -0500
15092     Update Freescale copyrights to remove "All Rights Reserved"
15094     "All Rights Reserved" conflicts with the GPL.
15096     Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
15098 commit bb4291e62579dbc611e84eaaf973631e0bf129c7
15099 Author: Alessandro Rubini <rubini@unipv.it>
15100 Date:   Fri Jul 24 11:27:14 2009 +0200
15102     arm nomadik: add i2c
15104     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
15105     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
15106     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15108 commit 60cbfbfd0fbebb4682f10ba96f622bfe17317598
15109 Author: Alessandro Rubini <rubini@unipv.it>
15110 Date:   Fri Jul 24 11:27:03 2009 +0200
15112     arm nomadik: add gpio support
15114     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
15115     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
15116     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15118 commit 549b98306d897ae5991362d6096a36df50efe686
15119 Author: Tom Rix <Tom.Rix@windriver.com>
15120 Date:   Sun Jun 28 12:52:32 2009 -0500
15122     OMAP3 Remove twl4030 defines
15124     These defines have been subplanted by the equivelent defines in
15125     include/twl4030.h
15127     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15128     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15129     Acked-by: Heiko Schocher <hs@denx.de>
15131 commit fccc0fcaaae5154612f8259365d26d04f204859f
15132 Author: Tom Rix <Tom.Rix@windriver.com>
15133 Date:   Sun Jun 28 12:52:31 2009 -0500
15135     OMAP3 Move twl4030 mmc function
15137     Because twl4030 now has its own device files, move and rename
15138     twl4030_mmc_config.
15140     twl4030_mmc_config initializes the twl4030 power setting to
15141     the mmc device.  Because it is in the twl4030 power domain, move
15142     it out of drivers/mmc/omap3_mmc.c and into drivers/power/twl4030.c.
15144     The function was renamed to twl4030_power_mmc_init because all
15145     the functions in this file are to have the format
15147     twl4030_power_<device>_<action>
15149     In this case the suffix is mmc_init so
15150     device : mmc
15151     action : init
15153     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15154     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15155     Acked-by: Heiko Schocher <hs@denx.de>
15157 commit 2c15513010493435c78f83202940ac3be11de2c3
15158 Author: Tom Rix <Tom.Rix@windriver.com>
15159 Date:   Sun Jun 28 12:52:30 2009 -0500
15161     OMAP3 Move twl4030 power and led functions
15163     Because twl4030 now has its own device files, move exiting
15164     omap3 power_init_r to a new location.
15166     power_init_r is the only function in board/omap3/common.
15167     It initializes the twl4030 power for the board and enables
15168     the led.
15170     The power part of the the function is moved to twl4030_power_init in
15171     drivers/power/twl4030.c The power compilation is conditional on the
15172     existing config variable CONFIG_TWL4030_POWER.
15174     The led part is moved to twl4030_led_init in the new file
15175     drivers/misc/twl4030_led.c  The led compilation is conditional on
15176     the new config variable CONFIG_TWL4030_LED
15178     The directory board/omap3/common was removed because power_init_r
15179     was the only function in it.
15181     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15182     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15183     Acked-by: Heiko Schocher <hs@denx.de>
15185 commit 3cb7a4805fc8fb4c09e4801e1c7d531186f20190
15186 Author: Wolfgang Denk <wd@denx.de>
15187 Date:   Tue Jul 28 22:13:52 2009 +0200
15189     TQM8xx* boards: set larger SMC Rx buffer len
15191     Commit 2b3f12c2 added support for configurable SMC Rx buffer length on
15192     8xx systems. Enable this feature on TQM8xx* based boards.
15194     This fixes the problem that pasting text in the middle of a line
15195     (i. e. inserting in edit mode) did not work - only the first two
15196     characters got inserted, the rest was lost.
15198     Signed-off-by: Wolfgang Denk <wd@denx.de>
15200 commit 4b7511478b62a539e5b066d19a986b75e5d9a527
15201 Author: Wolfgang Denk <wd@denx.de>
15202 Date:   Tue Jul 28 22:07:37 2009 +0200
15204     Fix ext2load return code
15206     Make the ext2load command return 0 on success (instead of the file
15207     length).
15209     Also fix output format (get rid of random newlines) and some coding
15210     style issues (long lines etc.).
15212     Signed-off-by: Wolfgang Denk <wd@denx.de>
15214 commit 56fdaadc124a8ef9ec0fd8ff578233ec3b1137be
15215 Author: Weirich, Bernhard <Bernhard.Weirich@riedel.net>
15216 Date:   Wed Jun 10 14:00:37 2009 +0200
15218     ext2: fix inode size and calculations
15220     Signed-off-by: unsik Kim <donari75@gmail.com>
15221     Signed-off-by: Bernhard Weirich <bernhard.weirich@riedel.net>
15222     Signed-off-by: Wolfgang Denk <wd@denx.de>
15223     Tested-by: Wolfgang Denk <wd@denx.de>
15225 commit cd7826359ee71e8f6f3d68331930ab9cbe1c990e
15226 Author: Tom Rix <Tom.Rix@windriver.com>
15227 Date:   Sun Jun 28 12:52:29 2009 -0500
15229     TWL4030 Add power reset button
15231     The Zoom2 power reset button is on the top right side of the
15232     main board.  Press and hold for about to 8 seconds to completely
15233     reset the board.
15235     Some of the beta boards have a hardware problem that prevents
15236     using this feature.  If is difficult to further characterize the
15237     boards that fail.  So disable resetting for all beta boards.
15239     The Zoom1 reset button is the red circle on the top right,
15240     front of the board.  Press and hold the button for 8 seconds to
15241     completely reset the board.
15243     After analyzing beagle, it was determined that other boards
15244     that use the twl4030 for power managment can also make use
15245     this function.
15247     The resetting is done by the power management part of the twl4030.
15248     Since there is no existing drivers/power, add one.
15250     The compilation of power/twl4030.h is controlled by the config
15251     variable CONFIG_TWL4030_POWER
15253     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15254     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15255     Acked-by: Heiko Schocher <hs@denx.de>
15257 commit 8966eb4c1c2d894b2a76174ba904c26c5af815b8
15258 Author: Tom Rix <Tom.Rix@windriver.com>
15259 Date:   Sun Jun 28 12:52:28 2009 -0500
15261     TWL4030 Add initial support
15263     The TWL4030 supplies many peripherals for OMAP3 boards. These include
15264     power management, usb and, keyboard.
15266     The product description is found here:
15268     http://focus.ti.com/docs/prod/folders/print/tps65950.html
15270     Product reference document, tps65950.pdf, is found here:
15272     http://www.ti.com/lit/gpn/tps65950
15274     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15275     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15276     Acked-by: Heiko Schocher <hs@denx.de>
15278 commit 7f79dfb48b7419d5caa1cf932fcff4e2fb7040af
15279 Author: Tom Rix <Tom.Rix@windriver.com>
15280 Date:   Sun Jun 28 12:52:27 2009 -0500
15282     OMAP I2C Fix the sampling clock.
15284     This problem is seen on Zoom1 and Zoom2 in the startup and
15285     when i2c probe is used
15287     Before :
15289     In:    serial
15290     Out:   serial
15291     Err:   serial
15292     timed out in wait_for_bb: I2C_STAT=1000
15293     timed out in wait_for_bb: I2C_STAT=1000
15294     timed out in wait_for_bb: I2C_STAT=1000
15295     timed out in wait_for_pin: I2C_STAT=1000
15296     I2C read: I/O error
15297     timed out in wait_for_bb: I2C_STAT=1000
15298     timed out in wait_for_bb: I2C_STAT=1000
15299     Die ID #327c00020000000004013ddd05026013
15300     Hit any key to stop autoboot:  0
15301     OMAP3 Zoom1# i2c probe
15302     Valid chip addresses:timed out in wait_for_bb: I2C_STAT=1000
15303      02 03 04 05 06 07 08 09 0A 0B 0C 0D <snip>
15305     After :
15307     In:    serial
15308     Out:   serial
15309     Err:   serial
15310     Die ID #327c00020000000004013ddd05026013
15311     Hit any key to stop autoboot:  0
15312     OMAP3 Zoom1# i2c probe
15313     Valid chip addresses: 48 49 4A 4B
15315     The addresses are for the twl4030.
15317     The prescalar that converts the function clock to the sampling
15318     clock is hardcoded to 0.  The reference manual recommends 7
15319     if the function clock is 96MHz.
15321     Instead of just changing the hardcoded values, the prescalar
15322     is calculated from the value I2C_IP_CLK.
15324     The i2c #defines are in kHz.  The speed passed into the
15325     i2c init routine is in Hz.  To be consistent, change the
15326     defines to be in Hz.
15328     The timing calculations are based on what is done in the
15329     linux 2.6.30 kernel in drivers/i2c/buses/i2c_omap.c as
15330     apposed to what is done in TRM.
15332     The major variables in the timing caculations are
15333     specified as #defines that can be overriden as required.
15335     The variables and their defaults are
15337     I2C_IP_CLK                          SYSTEM_CLOCK_96
15338     I2C_INTERNAL_SAMPLING_CLK           19200000
15339     I2C_FASTSPEED_SCLL_TRIM                     6
15340     I2C_FASTSPEED_SCLH_TRIM                     6
15341     I2C_HIGHSPEED_PHASE_ONE_SCLL_TRIM   I2C_FASTSPEED_SCLL_TRIM
15342     I2C_HIGHSPEED_PHASE_ONE_SCLH_TRIM   I2C_FASTSPEED_SCLH_TRIM
15343     I2C_HIGHSPEED_PHASE_TWO_SCLL_TRIM   I2C_FASTSPEED_SCLL_TRIM
15344     I2C_HIGHSPEED_PHASE_TWO_SCLH                I2C_FASTSPEED_SCLH_TRIM
15346     This was runtime verified on Zoom1, Zoom2, Beagle and Overo.
15347     The 400kHz and 3.4M cases were verifed on test Zoom1,
15348     Zoom2, Beagle and Overo configurations.
15350     Testing for omap2 will be done in a second step as Nishanth
15351     and Jean-Christophe commented.
15353     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15354     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15355     Acked-by: Heiko Schocher <hs@denx.de>
15357 commit 4ce5a72851ff2960543b125866c6132e0094e1ee
15358 Author: Heiko Schocher <hs@denx.de>
15359 Date:   Mon Jul 20 09:59:37 2009 +0200
15361     arm, i2c: added support for the TWSI I2C Interface
15363     Signed-off-by: Heiko Schocher <hs@denx.de>
15365 commit 042d01c72e0ea95731708dd24bb8b6cf42e75c80
15366 Author: Stefan Roese <sr@denx.de>
15367 Date:   Mon Jul 27 09:13:38 2009 +0200
15369     ppc4xx: Fix problem with NOR range assignment in Canyonlands ft_board_setup
15371     This patch fixes the problem, that the current fdt board fixup code only
15372     set's one range, the one for NOR. By this it's overwriting the already
15373     correctly configured values done in __ft_board_setup(). Just remove this
15374     now unneeded NOR fixup and all the ranges are correctly defined.
15376     Signed-off-by: Stefan Roese <sr@denx.de>
15377     Cc: Dirk Eibach <eibach@gdsys.de>
15378     Cc: Felix Radensky <felix@embedded-sol.com>
15380 commit 11a1604f8d0a8d936b42f6435d004b4aa33a5d87
15381 Author: Stefan Roese <sr@denx.de>
15382 Date:   Mon Jul 27 07:42:48 2009 +0200
15384     ppc4xx: Add some NAND-booting bootstrap entries to Kilauea chip_config cmd
15386     This patch adds some I2C bootstrap setting for NAND booting to the Kilauea
15387     chip_config command ("533-nand" and "600-nand").
15389     Additionally some incorrectly indented lines are fixed.
15391     Signed-off-by: Stefan Roese <sr@denx.de>
15393 commit 5b34691ff87821891375b28ec5bcf5154575a735
15394 Author: Stefan Roese <sr@denx.de>
15395 Date:   Mon Jul 27 07:42:37 2009 +0200
15397     ppc4xx: Kilauea: Fix SDRAM init in NAND booting version
15399     DDR2 Auto-calibration needs to be disabled on the NAND booting PPC4xx
15400     targets. Otherwise the configured fixed init values for some DDR2
15401     controller registers (e.g. RQDC) are not initialized at all resulting
15402     in a non working SDRAM.
15404     Signed-off-by: Stefan Roese <sr@denx.de>
15406 commit f3ed3c9b7441cde936d06a1ff7b1490ff0d600e6
15407 Author: Stefan Roese <sr@denx.de>
15408 Date:   Mon Jul 27 10:53:43 2009 +0200
15410     ppc4xx: Fix Arches DDR2 initialization
15412     Testing on AMCC Arches with the latest U-Boot version yielded that DDR2
15413     initialization is currently broken. U-Boot hangs upon relocation to SDRAM
15414     or crashes with random traps. This patch fixes this problem. Arches now
15415     uses a different WRDTR and CLKTR default setting than Canyonlands/Glacier.
15417     Signed-off-by: Stefan Roese <sr@denx.de>
15419 commit ab4c62c1ba788bf7f673a985d99a76d9c2fd7eca
15420 Author: Dirk Eibach <eibach@gdsys.de>
15421 Date:   Mon Jul 27 08:49:48 2009 +0200
15423     ppc4xx: Add GDsys CompactCenter board support.
15425     Board support for the Guntermann & Drunck CompactCenter and
15426     DevCon-Center.
15427     Based on the AMCC Canyonlands board support by Stefan Roese.
15429     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
15430     Signed-off-by: Stefan Roese <sr@denx.de>
15432 commit c2e49f706ba13213f3c8da3a33e88010214e1997
15433 Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
15434 Date:   Sat Jul 25 06:19:12 2009 +0200
15436     mpc83xx: Add esd VME8349 board support
15438     This patch adds support for the esd VME8349 board equipped with the
15439     MPC8349. It's a VME PMC carrier board equipped with the Tundra
15440     TSI148 VME-bridge.
15442     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
15443     Signed-off-by: Stefan Roese <sr@denx.de>
15444     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15446 commit fe613cdd4eb2c5b257a60d8dfb7759742318c28a
15447 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
15448 Date:   Thu Jul 23 17:10:55 2009 -0400
15450     sbc8349: combine HRCW flash and u-boot image flash
15452     Up to this point in time, the sbc8349 board was storing the u-boot
15453     image in flash 2x.  One for the HRCW value at the beginning of
15454     flash (0xff80_0000), and once close to the end of flash (0xfff8_0000)
15455     for the actual image that got executed.
15457     This moves the TEXT_BASE to be the beginning of flash, which makes
15458     the second copy of the image redundant, and frees up the flash
15459     from the end of the environment storage to the end of the flash
15460     device itself.
15462     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
15463     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15465 commit be9b56df02168ca97562d6b9ec791136e4cd925a
15466 Author: Kim Phillips <kim.phillips@freescale.com>
15467 Date:   Thu Jul 23 14:09:38 2009 -0500
15469     mpc83xx: CONFIG_83XX_GENERIC_PCI is now synonymous with CONFIG_PCI; remove the former
15471     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15473 commit 94978e19f31d225b4f7d97c4acbac1ecfaeb8f69
15474 Author: Wolfgang Denk <wd@denx.de>
15475 Date:   Mon Jul 27 10:37:37 2009 +0200
15477     Prepare 2009.08-rc1 (again, after fixing last minute issues).
15479     Update CHANGELOG
15481     Signed-off-by: Wolfgang Denk <wd@denx.de>
15483 commit 9689ddcca6e01f3637b4442fa8575f29ef4d7aa3
15484 Author: Wolfgang Denk <wd@denx.de>
15485 Date:   Mon Jul 27 10:06:39 2009 +0200
15487     cpu/arm920t/start.S: include <common.h> to have ROUND() defined
15489     Commit fcd3c87e made include/common.h usable by assembler code but
15490     failed to update cpu/arm920t/start.S
15492     Signed-off-by: Wolfgang Denk <wd@denx.de>
15494 commit c9ed38cb6de50fdb4aaa60b668c555002903b211
15495 Author: Wolfgang Denk <wd@denx.de>
15496 Date:   Mon Jul 27 10:01:11 2009 +0200
15498     at91cap9adk: fix #ifdef/#endif pairing (2nd try)
15500     Commit 7024aa14 was supposed to fix the #ifdef/#endif pairing in
15501     include/configs/at91cap9adk.h, but did not cate all problems.
15503     Signed-off-by: Wolfgang Denk <wd@denx.de>
15505 commit fb364bec5f29164d3ee681fcd9d187be8435db12
15506 Author: Wolfgang Denk <wd@denx.de>
15507 Date:   Mon Jul 27 09:58:14 2009 +0200
15509     Fix include/common.h for boards with CONFIG_STATUS_LED
15511     The reordering of include/common.h by commit fcd3c87e495f3c48 broke
15512     boards with status LED support, resulting in
15513         error: #error Status LED configuration missing
15514     errors. Undo this reordering to avoid this issue.
15516     Signed-off-by: Wolfgang Denk <wd@denx.de>
15518 commit 942828a0980b3cea7db698784cc7f6a3e7740b2b
15519 Author: Wolfgang Denk <wd@denx.de>
15520 Date:   Mon Jul 27 09:19:15 2009 +0200
15522     ABI: fix build problems due to now needed div64 routine.
15524     Signed-off-by: Wolfgang Denk <wd@denx.de>
15526 commit 85d6bf0bdc8ccad2d67a9160472f6f8c6bb482fb
15527 Author: Wolfgang Denk <wd@denx.de>
15528 Date:   Mon Jul 27 08:50:59 2009 +0200
15530     PMC405DE: fix out of tree building
15532     Signed-off-by: Wolfgang Denk <wd@denx.de>
15534 commit 10c7604d021949464b1e4ba903df95e6b2f0d2ff
15535 Author: Wolfgang Denk <wd@denx.de>
15536 Date:   Mon Jul 27 00:24:55 2009 +0200
15538     Prepare 2009.08-rc1
15540     Update CHANGELOG, minor coding style fix.
15542     Signed-off-by: Wolfgang Denk <wd@denx.de>
15544 commit fafbb2c3e4b35b60ca303ed2ad1c6cf400cd9a22
15545 Author: rhabarber1848@web.de <rhabarber1848@web.de>
15546 Date:   Fri Jul 24 08:16:30 2009 +0200
15548     add WATCHDOG_RESET to allow LZMA kernel decompression on slow machines
15550     Signed-off-by: rhabarber1848@web.de
15552 commit 3c972849f2becbf19c13a24f090d293f37ecf616
15553 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
15554 Date:   Thu Jul 23 23:31:58 2009 +0200
15556     Less verbose output when loading vxworks 6.x images
15558     Loading vxWorks 5.x images resulted just into 3 or 4 lines of output.
15559     With vxWorks 6.x and the new GCC it emits about 30 lines, which is
15560     far too noisy in my opinion.
15562     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
15564 commit fcd3c87e495f3c48b70c919869fb1e0b93d4880b
15565 Author: Wolfgang Denk <wd@denx.de>
15566 Date:   Fri Jul 24 00:17:48 2009 +0200
15568     Make include/common.h usable by assembler code
15570     Commit 70ebf316 factored out the ROUND() macro into include/common.h,
15571     not realizing that the primary use of this macro on AT91 systems was
15572     in start.S where common.h was not included, and could not be included
15573     because it contains a lot of C code which the assembler doesn't
15574     understand.
15576     This patch wraps such code in common.h in a "#ifndef __ASSEMBLY__"
15577     construct, and then adds an include to cpu/arm926ejs/start.S thus
15578     solving the problem.
15580     Signed-off-by: Wolfgang Denk <wd@denx.de>
15582 commit deec15b3064d3bb0189aede3c2921fd7ee401a0f
15583 Author: Heiko Schocher <heiko.schocher@invitel.hu>
15584 Date:   Thu Jul 23 13:27:04 2009 +0200
15586     arm: add _lshrdi3.S
15588     Signed-off-by: Heiko Schocher <hs@denx.de>
15590 commit 52b1bf2c5cd2f8af880dab503d0039b35570665b
15591 Author: Wolfgang Denk <wd@denx.de>
15592 Date:   Thu Jul 23 13:15:59 2009 +0200
15594     Make linking against libgcc configurable
15596     Many (especially ARM) tool chains seem to come with broken or
15597     otherwise unusable (for the purposes of builing U-Boot) run-time
15598     support libraries `libgcc.a'. By using the "USE_PRIVATE_LIBGCC"
15599     setting we allow to use alternative libraries instead.
15601     "USE_PRIVATE_LIBGCC" can either be set as an environment variable in
15602     the shell, or as a command line argument when running "make", i. e.
15603         $ make USE_PRIVATE_LIBGCC=yes
15604     or
15605         $ USE_PRIVATE_LIBGCC=yes
15606         $ export USE_PRIVATE_LIBGCC
15607         $ make
15609     The value of "USE_PRIVATE_LIBGCC" is the name of the directory which
15610     contains the alternative run-time support library `libgcc.a'. The
15611     special value "yes" selects the directory $(OBJTREE)/lib_$(ARCH) .
15613     Note that not all architectures provide an alternative `libgcc.a' in
15614     their lib_$(ARCH) directories - so far, only ARM does.
15616     Signed-off-by: Wolfgang Denk <wd@denx.de>
15617     Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15618     Cc: Prafulla Wadaskar <prafulla@marvell.com>
15619     cc: Stefan Roese <sr@denx.de>
15621 commit 479105065d965121f57b55dcfe83a940cba46ac1
15622 Author: Dirk Behme <dirk.behme@googlemail.com>
15623 Date:   Wed Jul 22 17:51:56 2009 +0200
15625     Use do_div from div64.h for vsprintf
15627     Use do_div from div64.h for vsprintf in case of 64bit division.
15628     For 32bit division, do_div from div64.h can't be used as it
15629     needs a 64bit parameter.
15631     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15632     Acked-by: Stefan Roese <sr@denx.de>
15633     CC: Simon Kagstrom <simon.kagstrom@netinsight.net>
15635 commit 48287792384a93d77d43aaaa1c06cac275bbe1bb
15636 Author: Kyungmin Park <kmpark@infradead.org>
15637 Date:   Mon Jul 20 09:47:47 2009 +0900
15639     Fix compiler warnings after loff_t change
15641     Now 'env_addr' type is loff_t so use correct field type.
15643     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
15645 commit 9c67352f727a5b5eff531c852f9cff59fcb17f7f
15646 Author: Wolfgang Denk <wd@denx.de>
15647 Date:   Sun Jul 26 23:28:02 2009 +0200
15649     Revert "ppc: Unlock cache-as-ram in a consistent manner"
15651     This reverts commit 982adfc610669482a32127282fe489857a92cfe3.
15653     This patch causes problems on MPC83xx boards - flash recognition stops
15654     working.
15656     Signed-off-by: Wolfgang Denk <wd@denx.de>
15658 commit 35cf3b57eafe3ee1f693e24267e0ecfefab60251
15659 Author: Jens Scharsig <esw@bus-elektronik.de>
15660 Date:   Fri Jul 24 10:31:48 2009 +0200
15662     update the EB+MCF-EV123 board support
15664     This patch updates the support for EB+MCF-EV123 board and needs
15665     the [PATCH 1/2 V3] new video driver for bus vcxk framebuffers
15667     * remove the board framebuffer driver
15668     * use the common bus_vcxk framebuffer driver
15669     * adds bmp support
15670     * adds splashimage support
15671     * fix serveral cosmetical errors
15673     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
15674     [agust@denx.de: fixed some style issues before applying]
15675     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15677 commit 04538cdb752eeea8fd23cf7ac3394439f189fb77
15678 Author: Anatolij Gustschin <agust@denx.de>
15679 Date:   Sun Jul 26 12:05:25 2009 +0200
15681     video: bus_vcxk.c: fix style issues added by 50217dee
15683     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15685 commit 50217deeb07911d686790d34d468eb9a5245f68d
15686 Author: Jens Scharsig <esw@bus-elektronik.de>
15687 Date:   Fri Jul 24 10:09:02 2009 +0200
15689     new video driver for bus vcxk framebuffers
15691     This patch adds a new video driver
15693     * adds common bus_vcxk framebuffer driver
15695     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
15696     [agust@denx.de: fixed lots of style issues before applying]
15697     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15699 commit 60e97419246d0a3615758ad6af40680aefb5f7f1
15700 Author: Alessandro Rubini <rubini@gnudd.com>
15701 Date:   Tue Jul 21 14:09:45 2009 +0200
15703     lcd.h: define extern vidinfo_t for all cases
15705     include/lcd.h has different vidinfo for different platforms,
15706     and several extern declaration, but one for the default case was
15707     missing. This makes them a single extern declaration for everyone.
15709     Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
15711 commit bcf0b5248952c6b03081dc5cc4ff9e0b2299c5fa
15712 Author: Anatolij Gustschin <agust@denx.de>
15713 Date:   Sun Jul 26 11:04:59 2009 +0200
15715     mimc200.c: fix too long lines added by f68378d6
15717     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15719 commit f68378d60a905d43155f2e89bf81999d3c93a90a
15720 Author: Mark Jackson <mpfj-list@mimc.co.uk>
15721 Date:   Tue Jul 21 11:35:22 2009 +0100
15723     Add LCD support to MIMC200 board
15725     This patch updates the MIMC200 files to enable the LCD.
15727     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
15729 commit 69f32e6c24d41fcdf347ff64e9c13b25059ace58
15730 Author: Mark Jackson <mpfj-list@mimc.co.uk>
15731 Date:   Tue Jul 21 11:18:44 2009 +0100
15733     Add 16bit colour support in lcd.h
15735     This patch adds support for LCD_COLOR16 in include/lcd.h.
15737     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
15739 commit bdc873ea063b8cc6d44c6ab748b7723a97d8d7b3
15740 Author: Anatolij Gustschin <agust@denx.de>
15741 Date:   Sun Jul 26 10:34:58 2009 +0200
15743     lib_avr32/board.c: fix too long line added by 716ece1d
15745     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15747 commit 716ece1de9a7d43a61d8698ac41b71b64f66f9e9
15748 Author: Mark Jackson <mpfj-list@mimc.co.uk>
15749 Date:   Tue Jul 21 11:11:37 2009 +0100
15751     Add AVR32 LCD support
15753     This patch adds support for the AVR32 LCD controller.  This patch is
15754     based off the latest u-boot-video.
15756     A quick summary of what's going on:-
15758     Enable LCDC pixel clock
15759     Enable LCDC port pins
15760     Add framebuffer pointer to global_data struct
15761     Allocate framebuffer
15763     To use the new code, update your board config to include something like
15764     this:-
15766     #define CONFIG_LCD                  1
15768     #if defined(CONFIG_LCD)
15769     #define CONFIG_CMD_BMP
15770     #define CONFIG_ATMEL_LCD            1
15771     #define LCD_BPP                             LCD_COLOR16
15772     #define CONFIG_BMP_16BPP            1
15773     #define CONFIG_FB_ADDR                      0x10600000
15774     #define CONFIG_WHITE_ON_BLACK               1
15775     #define CONFIG_VIDEO_BMP_GZIP               1
15776     #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE              262144
15777     #define CONFIG_ATMEL_LCD_BGR555             1
15778     #define CONFIG_SYS_CONSOLE_IS_IN_ENV        1
15779     #define CONFIG_SPLASH_SCREEN                1
15780     #endif
15782     The standard U-Boot BMP and Splash-screen features should just work.
15784     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
15785     [agust@denx.de: fixed some style issues]
15786     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15788 commit 6111722a9281c6e04a7304d502556afff6a5a1f8
15789 Author: Alessandro Rubini <rubini@gnudd.com>
15790 Date:   Sun Jul 19 17:52:27 2009 +0200
15792     video: move extern declarations from C to headers
15794     This moves some extern declaration from lcd.c to lcd.h, removing
15795     unneeded ifdef around a pair of them.  Additionally, since
15796     gunzip_bmp() was declared static in cmd_bmp.c but extern in lcd.c, I
15797     removed the static.  The extra "#include <lcd.h>" in cmd_bmp.c is
15798     added to ensure the header is consistent with the source.
15800     This has been compile-tested on both ARM (at91 boards) and PowerPC
15801     (HH405_config, TQM823L_LCD_config, mcc200_config), to test all use
15802     combinations.
15804     Signed-off-by: Alessandro Rubini <rubini@gnudd.it>
15805     [agust@denx.de: removed gunzip_bmp() fixes as commit c01171ea did it]
15806     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15808 commit f51e001143c58447eb50e7aefa2b09eb4cc1410c
15809 Author: Mike Frysinger <vapier@gentoo.org>
15810 Date:   Thu Jul 23 16:26:58 2009 -0400
15812     Blackfin: restore EVT1 handling in linker script
15814     Sadly, the Blackfin linker script unification lost a small #ifdef logic
15815     needed on older parts.  Restore that CONFIG_BFIN_BOOTROM_USES_EVT1 logic.
15817     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15819 commit f33b325af666b12eafa9ab235b2cd59832d6e51c
15820 Author: Wolfgang Denk <wd@denx.de>
15821 Date:   Fri Jul 24 14:24:07 2009 +0200
15823     Revert "zlib: updated to v.1.2.3"
15825     This reverts commit b201171f2b4d509f3ad510b214bee70ff902e3d6.
15827     The commit caused problems for example when unpacking kernel images:
15829            Uncompressing Kernel Image ... Error: inflate() returned -2
15830            GUNZIP: uncompress, out-of-mem or overwrite error - must
15831            RESET board to recover
15833     Conflicts:
15835         include/u-boot/zlib.h
15836         lib_generic/zlib.c
15838     Signed-off-by: Wolfgang Denk <wd@denx.de>
15840 commit 4b1389e0ceb19e9b50b96fd3908483a6c2274fb0
15841 Author: Stefan Roese <sr@denx.de>
15842 Date:   Tue Jul 21 14:06:29 2009 +0200
15844     ppc4xx: Add chip_config command to AMCC Kilauea eval board
15846     This patch removes the "alterpll" command and replaces it with the now
15847     ppc4xx standard "chip_config" command to configure the I2C bootstrap
15848     EEPROM.
15850     Signed-off-by: Stefan Roese <sr@denx.de>
15852 commit f6af8ce0c80327cb6aaa347642026ad838335c23
15853 Author: Stefan Roese <sr@denx.de>
15854 Date:   Tue Jul 21 14:33:52 2009 +0200
15856     ppc4xx: Fix EEPROM configuration on Kilauea
15858     Kilauea has an AT24C02 EEPROM which has an 8 byte page. Without defining
15859     CONFIG_SYS_EEPROM_PAGE_WRITE_BITS to 3 the "eeprom" command doesn't
15860     work correctly.
15862     Additionally the page write delay (CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS)
15863     is set to a more defensive value of 10ms.
15865     Signed-off-by: Stefan Roese <sr@denx.de>
15867 commit 99d8b23bc7e2be04fcbf49c5cec9f5ae76df290c
15868 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
15869 Date:   Wed Jul 22 13:56:21 2009 +0200
15871     ppc4xx: Add 405EP based PMC405DE board
15873     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
15874     Signed-off-by: Stefan Roese <sr@denx.de>
15876 commit da799f66ad1d4fc36dd20cc2d7e584493fda8546
15877 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
15878 Date:   Mon Jul 20 12:15:38 2009 +0200
15880     ppc4xx: Add struct for 4xx GPIO controller registers
15882     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
15883     Signed-off-by: Stefan Roese <sr@denx.de>
15885 commit 58ea142fb2e969f32306c8da1dabfaebd6fa141a
15886 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
15887 Date:   Wed Jul 22 17:27:56 2009 +0200
15889     ppc4xx: Replace 4xx lowercase SPR references
15891     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
15892     Signed-off-by: Stefan Roese <sr@denx.de>
15894 commit 87c0b72908e05662b8b415e26e1042f4779629da
15895 Author: Stefan Roese <sr@denx.de>
15896 Date:   Mon Jul 20 06:57:27 2009 +0200
15898     Add "chip_config" command for PPC4xx bootstrap configuration
15900     This patch adds a generic command for programming I2C bootstrap
15901     eeproms on PPC4xx. An implementation for Canyonlands board is
15902     included.
15904     The command name is intentionally chosen not to be PPC4xx specific.
15905     This way other CPU's/SoC's can implement a similar command under
15906     the same name, perhaps with a different syntax.
15908     Usage on Canyonlands:
15910     => chip_config
15911     Available configurations (I2C address 0x52):
15912     600-nor          - NOR  CPU: 600 PLB: 200 OPB: 100 EBC: 100
15913     600-nand         - NAND CPU: 600 PLB: 200 OPB: 100 EBC: 100
15914     800-nor          - NOR  CPU: 800 PLB: 200 OPB: 100 EBC: 100
15915     800-nand         - NAND CPU: 800 PLB: 200 OPB: 100 EBC: 100
15916     1000-nor         - NOR  CPU:1000 PLB: 200 OPB: 100 EBC: 100
15917     1000-nand        - NAND CPU:1000 PLB: 200 OPB: 100 EBC: 100
15918     1066-nor         - NOR  CPU:1066 PLB: 266 OPB:  88 EBC:  88 ***
15919     1066-nand        - NAND CPU:1066 PLB: 266 OPB:  88 EBC:  88
15920     => chip_config 600-nor
15921     Using configuration:
15922     600-nor          - NOR  CPU: 600 PLB: 200 OPB: 100 EBC: 100
15923     done (dump via 'i2c md 52 0.1 10')
15924     Reset the board for the changes to take effect
15926     Other 4xx boards will be migrated to use this command soon
15927     as well.
15929     Signed-off-by: Stefan Roese <sr@denx.de>
15930     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
15931     Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
15933 commit 10c1b218556ed9871f36bc0c407f4f2f6196353b
15934 Author: Peter Tyser <ptyser@xes-inc.com>
15935 Date:   Fri Jul 17 19:01:16 2009 -0500
15937     xpedite1k: Move to X-ES vendor directory
15939     The XPedite1000 is an X-ES product thus it can be put in board/xes along
15940     with other X-ES boards.  Along with the move, the board was renamed to
15941     XPedite1000 from XPedite1K to fit X-ES's standard naming convention.
15942     Maintainership was also transfered to Peter Tyser.
15944     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15945     Signed-off-by: Stefan Roese <sr@denx.de>
15947 commit 54381b79d268e1bead5d78ed8423df31a3cb0e2c
15948 Author: Peter Tyser <ptyser@xes-inc.com>
15949 Date:   Fri Jul 17 19:01:15 2009 -0500
15951     xpedite1k: Sync checkboard() with other X-ES boards
15953     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15954     Signed-off-by: Stefan Roese <sr@denx.de>
15956 commit 9b4ef1f5dc0daab64f46249a32e67279c4d44fd2
15957 Author: Peter Tyser <ptyser@xes-inc.com>
15958 Date:   Fri Jul 17 19:01:14 2009 -0500
15960     xpedite1k: Sync up board config options with other X-ES boards
15962     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15963     Signed-off-by: Stefan Roese <sr@denx.de>
15965 commit 4cdad5f43ae67e4ceeac69ef4af4392bd2f7381f
15966 Author: Peter Tyser <ptyser@xes-inc.com>
15967 Date:   Fri Jul 17 19:01:13 2009 -0500
15969     xpedite1k: Sync organization of board config with other X-ES boards
15971     This change should have no functional effect
15973     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15974     Signed-off-by: Stefan Roese <sr@denx.de>
15976 commit c4ae1a0257a0f5008ee2686e8aa92fba3992f279
15977 Author: Peter Tyser <ptyser@xes-inc.com>
15978 Date:   Fri Jul 17 19:01:12 2009 -0500
15980     xpedite1k: Sync up commands and environment with other X-ES boards
15982     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15983     Signed-off-by: Stefan Roese <sr@denx.de>
15985 commit fbc7951ea84c2fe6da0f6007b672ed35bae91acb
15986 Author: Peter Tyser <ptyser@xes-inc.com>
15987 Date:   Fri Jul 17 19:01:11 2009 -0500
15989     xpedite1k: Disable unused ethernet port 1
15991     The XPedite1000 only has 2 available ethernet ports:
15992     ppc_4xx_eth2 (EMAC2) and ppc_4xx_eth3 (EMAC3)
15994     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15995     Signed-off-by: Stefan Roese <sr@denx.de>
15997 commit 767e32ad369d83f55f950e6938e68b6dba7fa65f
15998 Author: Peter Tyser <ptyser@xes-inc.com>
15999 Date:   Fri Jul 17 19:01:10 2009 -0500
16001     xpedite1k: Store environment in flash
16003     Previously an I2C EEPROM was used.  The EEPROM had size, reliability,
16004     and access issues which are resolved by storing the environment in
16005     flash.
16007     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16008     Signed-off-by: Stefan Roese <sr@denx.de>
16010 commit b88da157f9990cd2cb081e4faea4b9581b5d0e2f
16011 Author: Peter Tyser <ptyser@xes-inc.com>
16012 Date:   Fri Jul 17 19:01:09 2009 -0500
16014     xpedite1k: Add support for additional GPIO pins
16016     Enable GPIO pins for an I2C EEPROM write protect, a system reset pin,
16017     and a PMC #MONARCH pin.  These pins are not currently used in U-Boot,
16018     but are used in OSes and may be used in U-Boot in the future.
16020     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16021     Signed-off-by: Stefan Roese <sr@denx.de>
16023 commit 42735815dd9ba39efe51203868aebce04053c8de
16024 Author: Peter Tyser <ptyser@xes-inc.com>
16025 Date:   Fri Jul 17 19:01:08 2009 -0500
16027     xpedite1k: Add support for optional flashes
16029     The XPedite1000 can be built with 4 total flashes:
16030     - 512KB AMD socketed
16031     - 16MB Intel soldered
16032     - 2 x 32MB AMD MirrorBit flashes
16034     Add support for the optional 2 32MB CFI-compliant AMD flashes
16036     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16037     Signed-off-by: Stefan Roese <sr@denx.de>
16039 commit e02990764c7415c84668823a0fc8c5b4dd8d8cf0
16040 Author: Peter Tyser <ptyser@xes-inc.com>
16041 Date:   Fri Jul 17 19:01:07 2009 -0500
16043     xpedite1k: Cleanup coding style
16045     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16046     Signed-off-by: Stefan Roese <sr@denx.de>
16048 commit 086ff34a3a7e5e595630d658c1c13778399452d1
16049 Author: Peter Tyser <ptyser@xes-inc.com>
16050 Date:   Fri Jul 17 19:01:06 2009 -0500
16052     xpedite1k: Remove support for reading MACs from EEPROM
16054     By default, the XPedite1000 comes installed with xMon, a proprietary
16055     bootloader.  xMon stores its MAC address in an onboard EEPROM.  Rather
16056     than requiring a non-standard location in the EEPROM to be reserved for
16057     MAC addresses, store the MAC addresses in U-Boot's standard environment.
16058     A U-Boot application or OS application can be used to migrate xMon MAC
16059     addresses to U-Boot's environment if necessary.
16061     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16062     Signed-off-by: Stefan Roese <sr@denx.de>
16064 commit 108d6d0099372f9f6532c3198fbaacabc121c9b3
16065 Author: Peter Tyser <ptyser@xes-inc.com>
16066 Date:   Fri Jul 17 19:01:05 2009 -0500
16068     xpedite1k: Remove support for fixed SDRAM configuration
16070     All XPedite1000's have SPD EEPROMs present and no fixed configuration
16071     parameters are currently defined or used
16073     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16074     Signed-off-by: Stefan Roese <sr@denx.de>
16076 commit c86d00a2ed923002f1ab0bfb0a925522628302e9
16077 Author: Peter Tyser <ptyser@xes-inc.com>
16078 Date:   Fri Jul 17 19:01:04 2009 -0500
16080     xpedite1k: Remove CONFIG_SYS_DRAM_TEST support
16082     POST or command line tests provide similar functionality
16084     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16085     Signed-off-by: Stefan Roese <sr@denx.de>
16087 commit 11ad309c183b176d8866944026a63c0f1c626f56
16088 Author: Peter Tyser <ptyser@xes-inc.com>
16089 Date:   Fri Jul 17 19:01:03 2009 -0500
16091     xpedite1k: Use standard CFI flash driver
16093     Using the CFI flash driver will allow write access to the 16MB Intel
16094     StrataFlash present on the XPedite1000.  The 512KB socketed (non
16095     CFI-compliant flash) will no longer be writable.
16097     The mapping of the 16MB Strata flash was moved to 0xff000000 and the
16098     512KB AMD socketed flash was moved to 0xfe000000.
16100     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16101     Signed-off-by: Stefan Roese <sr@denx.de>
16103 commit d4d2e79bb433fc7ec18c68cc49cc6b7433d1320c
16104 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16105 Date:   Thu Jul 16 22:13:57 2009 +0200
16107     ppc4xx: Cleanup PLU405 board code
16109     Some Coding style cleanup (braces, whitespaces, long lines)
16111     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
16112     Signed-off-by: Stefan Roese <sr@denx.de>
16114 commit b209a114829dc8a7a0e39a9335b6e4aebf9742cb
16115 Author: Dirk Eibach <eibach@gdsys.de>
16116 Date:   Fri Jul 17 14:16:40 2009 +0200
16118     ppc4xx: Add DL-Vision 405EP board support
16120     Board support for the Guntermann & Drunck DL-Vision.
16122     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
16123     Signed-off-by: Stefan Roese <sr@denx.de>
16125 commit 9b1b8c8a1bf52e9b65e1958e5205838576066cbc
16126 Author: Dirk Eibach <eibach@gdsys.de>
16127 Date:   Fri Jul 10 14:47:32 2009 +0200
16129     ppc4xx: Fix missing freqOPB for 405EP
16131     In cpu/ppc4xx/speed.c initialization of sysInfo->freqOPB for 405EP was
16132     left out for no obvious reason.
16134     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
16135     Signed-off-by: Stefan Roese <sr@denx.de>
16137 commit 0a371ca08908c9b2a58171223a79bffea1f7c6f5
16138 Author: Stefan Roese <sr@denx.de>
16139 Date:   Tue Jul 14 15:53:08 2009 +0200
16141     ppc4xx: Fix TLB reset problem with recent 44x images
16143     Patch d873133f [ppc4xx: Add Sequoia RAM-booting target] broke "normal"
16144     booting on some 44x platforms. This breakage is only noticed in some
16145     cases while powercycling. As it seems, the code in question in start.S
16146     didn't invalidate TLB #0. This makes sense since this TLB is used for
16147     the bootrom mapping. With the patch mentioned above even TLB #0 got
16148     invalidated resulting in an error later on.
16150     This patch now fixes this issue by only invalidating TLB #0 in the RAM-
16151     booting case.
16153     Tested succesfully on Sequoia and Canyonlands.
16155     Signed-off-by: Stefan Roese <sr@denx.de>
16156     Cc: Dirk Eibach <Eibach@gdsys.de>
16158 commit 44259bb9e696d22bf1773181111855a29f00cf33
16159 Author: Prafulla Wadaskar <prafulla@marvell.com>
16160 Date:   Fri Jul 17 19:56:30 2009 +0530
16162     usb: bugfix driver/usb/host/ehci-hcd.c function ehci_submit_root
16164     This change is cheked in Linux source and fix found to be in sync.
16165     This patch is tested for USB host interface on Kirkwood based
16166     Sheevaplug platform (ARM little endian board)
16168     Risk: the impact of this patch is not validated on big endian board.
16169     This need to be checked...
16171     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
16172     Signed-off-by: Remy Bohmer <linux@bohmer.net>
16174 commit 28958b8bea4c66629c5a22fd3c8b0d49df90383d
16175 Author: Wolfgang Denk <wd@denx.de>
16176 Date:   Thu Jul 23 22:23:23 2009 +0200
16178     Coding Style cleanup; update CHANGELOG.
16180     Signed-off-by: Wolfgang Denk <wd@denx.de>
16182 commit 2632c008e2c2cd61fefb622ed671ea3e6bd2e2a6
16183 Author: Mike Frysinger <vapier@gentoo.org>
16184 Date:   Tue Jul 21 22:59:36 2009 -0400
16186     autoconf.mk: include before config.mk for top level files
16188     By including autoconf.mk before config.mk, all top level files can use any
16189     config options it sets up (like <arch>_config.mk) or the Makefile itself
16190     without being forced to use lazy evaluation.
16192 commit c01171eaecc963d2c1f56a0984a0cbcdd8a3ab3c
16193 Author: Mark Jackson <mpfj-list@mimc.co.uk>
16194 Date:   Tue Jul 21 11:30:53 2009 +0100
16196     Remove static declaration from gunzip_bmp()
16198     This patch removes the static declaration from gunzip_bmp()
16200     Without it, the gunzip_bmp() function is not visible to
16201     common/lcd.c and fails to compile with an error.
16203     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
16205 commit 2d4a43e230a3c8bfd03b9beaa0eb2a95e779c03b
16206 Author: Peter Tyser <ptyser@gmail.com>
16207 Date:   Mon Jul 20 21:51:38 2009 -0500
16209     cmd_tsi148: General cleanup
16211     - Fix command help message
16212     - Disable DEBUG by default
16213     - Fix whitespace issues
16214     - Fix lines > 80 characters
16216     Signed-off-by: Peter Tyser <ptyser@gmail.com>
16217     Acked-by: Stefan Roese <sr@denx.de>
16219 commit 9aef73888509d10193615ee5cd9cf439ca44e937
16220 Author: Mike Frysinger <vapier@gentoo.org>
16221 Date:   Sun Jul 19 15:17:03 2009 -0400
16223     unify HOST_CFLAGS and HOSTCFLAGS
16225     The top build system sets up HOSTCFLAGS a bit and exports it, but other
16226     places use HOST_CFLAGS instead.  Unify the two as HOSTCFLAGS so that the
16227     values stay in sync.
16229     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16231 commit 2e9393f500065f940e5e4ac7fe375e4c0b77b936
16232 Author: Wolfgang Denk <wd@denx.de>
16233 Date:   Thu Jul 23 21:16:59 2009 +0200
16235     Update CHANGELOG
16237     Signed-off-by: Wolfgang Denk <wd@denx.de>
16239 commit e3b39f84e974df70065fa248f0f63993b1708c9d
16240 Author: André Schwarz <andre.schwarz@matrix-vision.de>
16241 Date:   Fri Jul 17 14:50:24 2009 +0200
16243     update config for mvBC-P (MPC5200)
16245     This patch adds I2C support for mvBC-P and defines flash layout
16246     matching the shipped product.
16248     Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de>
16250 commit cb6d0b72c2c4f13c0075a7ae92e11682ec94a311
16251 Author: Kumar Gala <galak@kernel.crashing.org>
16252 Date:   Mon Jul 13 09:24:00 2009 -0500
16254     ahci: Fix gcc 4.4 compiler warning
16256     ahci.c: In function 'ata_scsiop_read_capacity10':
16257     ahci.c:616: warning: dereferencing type-punned pointer will break strict-aliasing rules
16259     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16261 commit 51d91e1a253c97713c7f3e5c0b910a4db4979283
16262 Author: Kumar Gala <galak@kernel.crashing.org>
16263 Date:   Mon Jul 13 09:23:59 2009 -0500
16265     drivers/bios_emulator: Fix gcc 4.4 compiler warning
16267     biosemu.c: In function 'BE_setVGA':
16268     biosemu.c:147: warning: dereferencing type-punned pointer will break strict-aliasing rules
16270     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16272 commit f97ec30bb3c5a4a456159eb2b75b3bc68772bf2a
16273 Author: Detlev Zundel <dzu@denx.de>
16274 Date:   Mon Jul 13 16:01:19 2009 +0200
16276     Re-add support for image type 'Standalone Program'
16278     Support for this type was lost during the bootm refactoring.
16280     Signed-off-by: Detlev Zundel <dzu@denx.de>
16282 commit ca95c9df0280f40e8e4befadbaae21fa67d92331
16283 Author: Detlev Zundel <dzu@denx.de>
16284 Date:   Mon Jul 13 16:01:18 2009 +0200
16286     Add error checking for unsupported OS types.
16288     Signed-off-by: Detlev Zundel <dzu@denx.de>
16290 commit 982adfc610669482a32127282fe489857a92cfe3
16291 Author: Peter Tyser <ptyser@xes-inc.com>
16292 Date:   Fri Jul 10 18:46:10 2009 -0500
16294     ppc: Unlock cache-as-ram in a consistent manner
16296     Previously, non-e500 architectures only unlocked their data cache which
16297     was used as early RAM when booting to Linux using the "bootm" command.
16298     This change causes all PPC boards with CONFIG_SYS_INIT_RAM_LOCK defined
16299     to unlock their data cache during U-Boot's initialization.  This
16300     improves U-Boot performance and provides a common cache state when
16301     booting to different OSes.
16303     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16305 commit b201171f2b4d509f3ad510b214bee70ff902e3d6
16306 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
16307 Date:   Thu Jul 23 04:54:45 2009 -0400
16309     zlib: updated to v.1.2.3
16311     This patch updates zlib to the latest stable version.
16313     Only relevant zlib parts were ported to u-boot tree, as was done for
16314     the previously used version of zlib (0.95). New zlib gives faster
16315     inflate performance and other improvements, see www.zlib.net
16317     Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
16318     Reviewed-by: Angelo Castello <angelo.castello@st.com>
16320     Edited commit message
16322     Signed-off-by: Wolfgang Denk <wd@denx.de>
16324 commit 97cfe86163505ea18e7ff7b71e78df5bb03dad57
16325 Author: Robin Getz <rgetz@blackfin.uclinux.org>
16326 Date:   Tue Jul 21 12:15:28 2009 -0400
16328     Save server's MAC address in environment
16330     Linux's netconsole works much better when you can pass it the MAC address of
16331     the server. (otherwise it just uses broadcast, which everyone else on my
16332     network complains about :)
16334     This sets the env var "serveraddr" (to match ethaddr), so that you can pass
16335     it to linux with whatever bootargs you want to....
16337     addnetconsole=set bootargs $(bootargs) netconsole=@$(ipaddr)/eth0,@$(serverip)/$(serveraddr)
16339     Signed-of-by: Robin Getz <rgetz@blackfin.uclinux.org>
16341     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16343 commit 0b23fb368d08c9669fac647971ff249c3f9fee8f
16344 Author: Ilya Yanok <yanok@emcraft.com>
16345 Date:   Tue Jul 21 19:32:21 2009 +0400
16347     fec_mxc: driver for FEC ethernet controller on i.MX27
16349     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
16350     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16352 commit 0544c63681d2ea3607faf374e9c56f101e365b42
16353 Author: Alessio Centazzo <centazzo@gmail.com>
16354 Date:   Sat Jul 11 11:56:06 2009 -0700
16356     ppc4xx: Fixed compilation warning in 4xx_enet.c
16358     This patch fixes a compilation warning for some Ethernet PHY-less
16359     PPC4xx platforms (440SPE based ones) and a potential compilation
16360     error for 440SP platforms (use of undefined 'ethgroup' variable).
16361     In the original code and in case of 440SPE platforms, 'ethgroup'
16362     is initialized to -1 and never modified.  Later in the function,
16363     within an #ifdef statement, an 'if statement' executes code only
16364     if 'ethgroup' is set to 4, therefore it is harmless to avoid
16365     executing the 'if statement' by removing the CONFIG_440SPE from
16366     the affected #ifdefs.  In case of 440SP platforms  with on-board
16367     Ethernet PHY, 'ethgroup' is undefined but used (there are not such
16368     platforms in the repository yet). All other architectures are not
16369     affected by this change.
16371     Signed-off-by: Alessio Centazzo acpatin@yahoo.com
16372     Acked-by: Stefan Roese <sr@denx.de>
16373     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16375 commit 09133f8580f0106429ba3600f1855bd3577ae58b
16376 Author: Michael Zaidman <michael.zaidman@gmail.com>
16377 Date:   Tue Jul 14 23:37:12 2009 +0300
16379     DHCP regression on 2009-06
16381     Fixed the DHCP/BOOTP/RARP regression introduced in u-boot-2009.06
16382     by initializing our IP addr to 0 in order to accept any IP addr
16383     assigned to us by the DHCP/BOOTP/RARP server.
16385     Ack-by: Robin Getz <rgetz@blackfin.uclinux.org>
16386     Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
16387     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16389 commit 443ce4ac9d1138ae5ae6863b2d40a96fd6edf523
16390 Author: Prafulla Wadaskar <prafulla@marvell.com>
16391 Date:   Thu Jul 16 20:58:02 2009 +0530
16393     net: phy: bugfixes: mv88E61xx multichip addressing support
16395     With these fixes, this driver works properly for multi chip
16396     addressging mode
16398     Bugfixes:
16399     1. Build error fixed for function mv88e61xx_busychk_multic-fixed
16400     2. PHY dev address error detection- fixed
16401     3. wrong busy bit was refered in function mv88e61xx_busychk -fixed
16402     4. invalid data read ptr was refered for RD_PHY in case of
16403         multichip addressing mode -fixed
16405     The Multichip Address mode is tested with RD6281A board having
16406     MV88E6165 switch on it
16408     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
16409     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16411 commit 16025ea45539219f2a7c750c6f0ae983ea5c2737
16412 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
16413 Date:   Wed Jul 8 13:05:11 2009 +0200
16415     arm: Kirkwood: Check the error summary bit for error detection
16417     The Marvell documentation for the 88f6281 states that the error coding
16418     is only valid if the error summary and last frame bits in the transmit
16419     descriptor status field are set. This patch adds checks for these for
16420     transmit (I would get transmit errors on bootp with the current check,
16421     which I believe are spurious).
16423     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
16424     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16426 commit 7b05f5e027b81cd3a9a41c6c6d3fe09c72fa93f6
16427 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
16428 Date:   Wed Jul 8 13:03:18 2009 +0200
16430     arm: Kirkwood: Fix compiler optimization bug for kwgbe_send
16432     kwgbe_send/recv both have loops waiting for the hardware to set  a bit.
16433     GCC 4.3.3 cleverly optimizes the send case to ... a while(1); loop. This
16434     patch uses readl to force a read from device memory. Other volatile
16435     accesses have also been replaced with readl/writel where appropriate
16436     (as per suggestions on the U-boot mailing list).
16438     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
16439     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16441 commit 3f6b18ffd94621625de961bc566022b0266790f5
16442 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16443 Date:   Thu Jul 2 13:21:22 2009 -0400
16445     MIIPHYBB: Return 0xFFFF if the PHY is not asserting TA.
16447     This patch sets the returned value to 0xFFFF if the PHY does not exist
16448     and does not assert Transfer Acknowledge. A NULL check for the value
16449     pointer is also added for buffer overflow protection.
16451     Without this patch 'mii info' will  show 'phantom' devices because the
16452     value will be not be initialized and return with some random value.
16454     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
16455     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16457 commit 736fead8fdbf8a8407048bebc373cd551d01ec98
16458 Author: Ben Warren <biggerbadderben@gmail.com>
16459 Date:   Mon Jul 20 22:01:11 2009 -0700
16461     Convert SMC911X Ethernet driver to CONFIG_NET_MULTI API
16463     All in-tree boards that use this controller have CONFIG_NET_MULTI added
16464     Also:
16465      - changed CONFIG_DRIVER_SMC911X* to CONFIG_SMC911X*
16466      - cleaned up line lengths
16467      - modified all boards that override weak function in this driver
16468      - added
16470     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16471     Tested-by: Mike Frysinger <vapier@gentoo.org>
16473 commit 3bd0a877b74b9c005ae7cb892480ccedfa308c20
16474 Author: Ben Warren <biggerbadderben@gmail.com>
16475 Date:   Fri Jul 17 00:50:15 2009 -0700
16477     Add warning about upcoming removal of old Ethernet API
16479     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16481 commit b7fe25d2a8d1cede401d09e1f9c84f8fe47bdbb1
16482 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
16483 Date:   Thu Jul 2 16:15:13 2009 +0530
16485     P2020RDB Added support of Vitesse PHYs VSC8641(RGMII) and VSC8221(SGMII)
16487     These PHYs are on P2020RDB platform.
16489     Also revamped Freescale copyright message in drivers/net/tsec.c.
16491     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
16492     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16494 commit 1a32bf41881b5dbe3119cb77a33572b4d462cabf
16495 Author: Robin Getz <rgetz@blackfin.uclinux.org>
16496 Date:   Mon Jul 20 14:53:54 2009 -0400
16498     Add DNS support
16500     On 04 Oct 2008 Pieter posted a dns implementation for U-Boot.
16502     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg10216.html
16503     >
16504     > DNS can be enabled by setting CFG_CMD_DNS. After performing a query,
16505     > the serverip environment var is updated.
16506     >
16507     > Probably there are some cosmetic issues with the patch. Unfortunatly I
16508     > do not have the time to correct these. So if anybody else likes DNS
16509     > support in U-Boot and has the time, feel free to patch it in the main tree.
16511     Here it is again - slightly modified & smaller:
16512       - update to 2009-06 (Pieter's patch was for U-Boot 1.2.0)
16513       - README.dns is added
16514       - syntax is changed (now takes a third option, the env var to store
16515         the result in)
16516       - add a random port() function in net.c
16517       - sort Makefile in ./net/Makefile
16518       - dns just returns unless a env var is given
16519       - run through checkpatch, and clean up style issues
16520       - remove packet from stack
16521       - cleaned up some comments
16522       - failure returns much faster (if server responds, don't wait for
16523         timeout)
16524       - use built in functions (memcpy) rather than byte copy.
16526     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
16527     Signed-off-by: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
16528     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16530 commit 88ad3fd91c83a4343b25385fd78fd8e29ebb723f
16531 Author: Kim Phillips <kim.phillips@freescale.com>
16532 Date:   Fri Jul 17 12:17:00 2009 -0500
16534     net: tsec - fix dereferencing type-punned pointer will break strict-aliasing rules warning
16536     fix this gcc 4.4 warning:
16538     tsec.c: In function 'tsec_init':
16539     tsec.c:200: warning: dereferencing type-punned pointer will break strict-aliasing rules
16541     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16542     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16544 commit d9bec9f42ab34383737c8a94429aa02fe76d7946
16545 Author: Mike Frysinger <vapier@gentoo.org>
16546 Date:   Sat Jul 18 21:04:08 2009 -0400
16548     net: rename NetRxPkt to NetRxPacket
16550     The net code is mostly consistent in using 'Packet' rather than 'Pkt', so
16551     rename the minor detractor to follow suite.
16553     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16554     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16556 commit 88a4c2e77cd5674db745d0c2ebbad68c9baf760c
16557 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16558 Date:   Thu Jun 25 16:33:04 2009 +0900
16560     sh: sh_eth: Remove garbage from printf
16562     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16563     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16564     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16566 commit 2ea20efa47da9d98ff38223ff51dea5439ad8708
16567 Author: Andreas Pretzsch <apr@cn-eng.de>
16568 Date:   Thu Jul 9 21:50:05 2009 +0200
16570     smc911x: add support for LAN9221
16572     Signed-off-by: Andreas Pretzsch <apr@cn-eng.de>
16573     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16575 commit 7168eba729b9e6d730db7cd1028767f7b1a6128b
16576 Author: David Brownell <david-b@pacbell.net>
16577 Date:   Tue Jun 9 11:14:24 2009 -0700
16579     rm9200 ethernet driver: board-specific quirk (csb337)
16581     CSB337 boards originally shipped with MicroMonitor, not U-Boot;
16582     and with a version using a different convention for recording
16583     Ethernet addresses than anyone else.  To avoid breaking Linux
16584     when it uses U-Boot, have it use the same convention on that
16585     hardware.
16587     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
16588     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16590 commit 57215cd2e59fd403248df8f2f195e382900d5fc2
16591 Author: Heiko Schocher <hs@denx.de>
16592 Date:   Thu Jul 16 09:58:31 2009 +0200
16594     arm, kirkwood: added kw_gpio_set_valid() in gpio.h
16596     Signed-off-by: Heiko Schocher <hs@denx.de>
16598 commit ec16441085f471c03a8c0909579463e31e5b947a
16599 Author: Dieter Kiermaier <dk-arm-linux@gmx.de>
16600 Date:   Mon Jun 29 14:45:08 2009 +0200
16602     Kirkwood: add Marvell Kirkwood gpio driver
16604     Signed-off-by: Dieter Kiermaier <dk-arm-linux@gmx.de>
16605     Acked-by: Prafulla Wadaskar <prafulla@marvell.com>
16606     Tested-by: Heiko Schocher <hs@denx.de>
16608 commit 688b6a0ff2dcbb0c7e63ef63cbbcc291f14f321f
16609 Author: Heiko Schocher <hs@denx.de>
16610 Date:   Thu Jul 16 09:59:10 2009 +0200
16612     arm, kirkwood: added KW_TWSI_BASE in kirkwood.h
16614     Signed-off-by: Heiko Schocher <hs@denx.de>
16616 commit fbc8365ad7ab0afd4143bdbffab2fd0b24df004f
16617 Author: Prafulla Wadaskar <prafulla@marvell.com>
16618 Date:   Thu Jul 16 21:02:24 2009 +0530
16620     Marvell RD6281A Board support
16622     This is Marvell's 88F6281_A0 based reference design board
16624     This patch is tested for-
16625     1. Boot from DRAM/NAND flash/NFS
16626     2. File transfer using tftp and loadb
16627     3. NAND flash read/write/erase
16629     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
16630     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16632 commit 2906e6d654fcc7f2451fde225e4e8b3f20c9555f
16633 Author: Piotr Ziecik <kosmo@semihalf.com>
16634 Date:   Fri Jul 17 16:35:19 2009 +0200
16636     api: Fix broken build on ARM.
16638     This patch fixes broken build introduced by commit
16639     84bf7ca522e94ec402a1264b01971b924b7e268f (api: remove un-needed
16640     ifdef CONFIG_API already handle by the Makefile).
16642     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
16644 commit 48677a1ef5f82adca49145a7baf11ece77f51945
16645 Author: Wolfgang Denk <wd@denx.de>
16646 Date:   Wed Jul 22 23:53:23 2009 +0200
16648     Fix "ld: cannot find -lstubs" build error
16650     Commit 1bc15386 moved the examples/ to examples/standalone but failed
16651     to adapt the Makefiles that need to link against libstubs.a
16653     Signed-off-by: Wolfgang Denk <wd@denx.de>
16654     Cc: Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16656 commit ae71121a111ddf9dd057cacbbdd0f51054be428a
16657 Author: Wolfgang Denk <wd@denx.de>
16658 Date:   Sat Jul 18 20:47:36 2009 +0200
16660     at91cap9adk: fix #ifdef/#endif pairing
16662     The #ifdef/#endif pairing in this file was obviously messed up.
16664     Signed-off-by: Wolfgang Denk <wd@denx.de>
16666 commit 6b96a20d512b04a808438553874c00cf40812c44
16667 Author: Minkyu Kang <mk7.kang@samsung.com>
16668 Date:   Mon Jul 20 11:40:01 2009 +0900
16670     ARM Cortex A8: Move OMAP3 specific reset handler
16672     Because of the reset_cpu is soc specific, should be move to soc
16674     Cc: Dirk Behme <dirk.behme@googlemail.com>
16675     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
16677 commit 048e7efe91f66094f868281c12e488ce2bae8976
16678 Author: Kumar Gala <galak@kernel.crashing.org>
16679 Date:   Wed Jul 22 10:12:39 2009 -0500
16681     85xx/86xx: Replace in8/out8 with in_8/out_8 on FSL boards
16683     The pixis code used in8/out8 all over the place.  Replace it with
16684     in_8/out_8 macros.
16686     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16688 commit 0a6d0c6320b77bd6572393a93e6b8ccdf39c7100
16689 Author: Peter Tyser <ptyser@xes-inc.com>
16690 Date:   Tue Jul 21 13:51:08 2009 -0500
16692     xpedite5370: Enable NAND command support
16694     Use the MPC8572's eLBC to access 1 GB (or greater) onboard NAND flash
16695     via the 'nand' command.
16697     Previously, the XPedite5370's NAND chip selects were properly
16698     configured, but NAND support was not enabled.
16700     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16701     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16703 commit 39121c0896a6760bd436d88c17892f49a97902d0
16704 Author: Peter Tyser <ptyser@xes-inc.com>
16705 Date:   Tue Jul 21 13:51:07 2009 -0500
16707     xes: Increase CONFIG_SYS_BOOTM_LEN to 16MB
16709     Increasing CONFIG_SYS_BOOTM_LEN from 8 MB to 16 MB is necessary to
16710     support uncompressing images larger than 8 MB when using the bootm
16711     command.
16713     Note that recent Linux kernels for the 85xx and 86xx map greater than
16714     16MB of memory on bootup, but we use 16MB to maintain compatibility with
16715     older Linux kernels for now.
16717     Signed-off-by: Nate Case <ncase@xes-inc.com>
16718     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16719     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16721 commit 58f31b602dfd52eb7836ab82caa587514e046f02
16722 Author: Peter Tyser <ptyser@xes-inc.com>
16723 Date:   Sun Jul 19 19:17:41 2009 -0500
16725     xpedite5370: Fix I2C GPIO initialization typo
16727     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16728     Acked-by: Heiko Schocher<hs@denx.de>
16729     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16731 commit 5ff821006c6e7647d183ea95817044943bb22e7e
16732 Author: Peter Tyser <ptyser@xes-inc.com>
16733 Date:   Sun Jul 19 19:17:40 2009 -0500
16735     xpedite5200,5370: Use buffered NOR flash writes
16737     Buffered writes are possible on the XPedite5200 and XPedite5370 and greatly
16738     improve NOR flash write speeds
16740     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16741     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16743 commit d9c147f371800a479a507a816b2fe572c97da197
16744 Author: Peter Tyser <ptyser@xes-inc.com>
16745 Date:   Fri Jul 17 10:14:48 2009 -0500
16747     85xx, 86xx: Add common board_add_ram_info()
16749     Previously, 85xx and 86xx boards would display DRAM information on
16750     bootup such as:
16752     ...
16753     I2C:   ready
16754     DRAM:
16755     Memory controller interleaving enabled: Bank interleaving!
16756      2 GB
16757     FLASH: 256 MB
16758     ...
16760     This patch moves the printing of the DRAM controller configuration to a
16761     common board_add_ram_info() function which prints out DDR type, width,
16762     CAS latency, and ECC mode.  It also makes the DDR interleaving
16763     information print out in a more sane manner:
16765     ...
16766     I2C:   ready
16767     DRAM:   2 GB (DDR2, 64-bit, CL=4, ECC on)
16768            DDR Controller Interleaving Mode: bank
16769     FLASH: 256 MB
16770     ...
16772     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16773     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16775 commit 12a440ae6d09445140f1a0c2023dba76a9f1a617
16776 Author: Peter Tyser <ptyser@xes-inc.com>
16777 Date:   Fri Jul 17 10:14:47 2009 -0500
16779     tqm85xx: Remove board_add_ram_info()
16781     This is in preparation for adding one common 8xxx board_add_ram_info()
16782     function for all 8xxx boards
16784     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16785     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16787 commit ed2c9488bbe389b7b25cada1e42bdae5d0976327
16788 Author: Peter Tyser <ptyser@xes-inc.com>
16789 Date:   Fri Jul 17 10:14:46 2009 -0500
16791     xes: Remove 8xxx board_add_ram_info() function
16793     This is in preparation for adding one common 8xxx board_add_ram_info()
16794     fuction for all 8xxx boards
16796     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16797     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16799 commit e7ee23ec1788d8cf269a4cf6b9cd3722cbc7d592
16800 Author: Peter Tyser <ptyser@xes-inc.com>
16801 Date:   Fri Jul 17 10:14:45 2009 -0500
16803     86xx: Rename ccsr_ddr's sdram_mode_1, sdram_cfg_1 fields
16805     Rename sdram_mode_1 to sdram_mode and sdram_cfg_1 to sdram_cfg to match
16806     the 86xx user's manual and other Freescale architectures
16808     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16809     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16811 commit f6155c6fbb1d85f517b7c160570f0995ef14c43f
16812 Author: Roy Zang <tie-fei.zang@freescale.com>
16813 Date:   Thu Jul 9 10:05:48 2009 +0800
16815     85xx: Add pci/pcie E1000 ethernet support for MPC8544DS and MPC8536 boards
16817     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
16818     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16820 commit 6bb5b412291177e6edd42f9a80e5c5afe57a6a0f
16821 Author: Kumar Gala <galak@kernel.crashing.org>
16822 Date:   Tue Jul 14 22:42:01 2009 -0500
16824     85xx: Report which "bank" of NOR flash we are booting from on FSL boards
16826     The p2020DS, MPC8536DS, MPC8572DS, MPC8544DS boards are capable of
16827     swizzling the upper address bits of the NOR flash we boot out of which
16828     creates the concept of "virtual" banks.  This is useful in that we can
16829     flash a test of image of u-boot and reset to one of the virtual banks
16830     while still maintaining a working image in "bank 0".
16832     The PIXIS FPGA exposes registers on LBC which we can use to determine
16833     which "bank" we are booting out of (as well as setting which bank to
16834     boot out of).
16836     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16838 commit 9af9c6bdc16da53772c56b1a79c2c91701fe94e6
16839 Author: Kumar Gala <galak@kernel.crashing.org>
16840 Date:   Wed Jul 15 13:45:00 2009 -0500
16842     86xx: Report which "bank" of NOR flash we are booting from on MPC8641HPCN
16844     The MPC8641HPCN board is capable of swizzling the upper address bit of
16845     the NOR flash we boot out of which creates the concept of "virtual"
16846     banks.  This is useful in that we can flash a test of image of u-boot
16847     and reset to one of the virtual banks while still maintaining a
16848     working image in "bank 0".
16850     The PIXIS FPGA exposes registers on LBC which we can use to determine
16851     which "bank" we are booting out of (as well as setting which bank to
16852     boot out of).
16854     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16856 commit caf72ff329759b4da71352ab098537c7698c0e9f
16857 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
16858 Date:   Tue Jul 21 10:45:49 2009 +0200
16860     Refresh LZMA-lib to v4.65
16862     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
16864 commit 70ebf31633f372a24505e47846b2628e8435ea37
16865 Author: Wolfgang Denk <wd@denx.de>
16866 Date:   Fri Jul 17 23:35:29 2009 +0200
16868     AT91: factor out ROUND() macro
16870     A large number of boards (all AT91 based) duplicated the ROUND()
16871     macro in their board specific config files. Add the definition to
16872     include/common.h and clean up the board config files.
16874     Signed-off-by: Wolfgang Denk <wd@denx.de>
16876 commit 89188a62333c0841a7166783d2ebdd39d7044eb2
16877 Author: Kumar Gala <galak@kernel.crashing.org>
16878 Date:   Wed Jul 15 08:54:50 2009 -0500
16880     85xx: Bump up the BOOTMAP to 16M on FSL 85xx boards
16882     We have always mapped at least 16M in the kernel and we have seen cases
16883     with new kernel features that a kernel image needs more than 8M of
16884     memory.
16886     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16888 commit d4abc757c26c531293f5bbc4262ade44a317eec9
16889 Author: Peter Tyser <ptyser@xes-inc.com>
16890 Date:   Mon Jul 20 19:02:21 2009 -0500
16892     Move api_examples to examples/api
16894     Also add a rule to remove demo.bin which was previously leftover
16895     after a "make clean"
16897     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16899 commit af1d7d984a23a0faa1f436ebfeb55c876b1a99e1
16900 Author: Heiko Schocher <hs@denx.de>
16901 Date:   Tue Jul 21 06:37:28 2009 +0200
16903     83xx, kmeter: fix compile error
16905     CONFIG_SYS_MALLOC_LEN is defined in the board config, and
16906     the keymile-common.h, which collects common options used
16907     by all keymile-boards. This results in a compile error
16908     when compiling the kmeter1 board. So remove this define
16909     in the board config file.
16911     Signed-off-by: Heiko Schocher <hs@denx.de>
16913 commit 39df00d9aecfb465b9eec9af593f9b763fb5209a
16914 Author: Heiko Schocher <hs@denx.de>
16915 Date:   Thu Jul 9 12:04:26 2009 +0200
16917     i2c, mpc83xx: add CONFIG_SYS_I2C_INIT_BOARD for fsl_i2c
16919     This patch adds the possibility to call a board specific
16920     i2c bus reset routine for the fsl_i2c bus driver, and adds
16921     this option for the keymile kmeter1 board.
16923     The deblock sequence for this board is implemented and
16924     tested in the following way:
16926     CR = 0x20 (release SDA and SCL pin)
16927     CR = 0xa0 (start read)
16928     dummy read
16929     dummy read
16930     if 2. dummy read == 0x00
16931         3. dummy read
16933     CR = 0x80 (SDA and SCL now 1 SR = 0x86)
16934     CR = 0x00 (Modul reset SR=0x81)
16935     CR = 0x80 (SDA and SCL = 1, SR = 0x81)
16937     Signed-off-by: Heiko Schocher <hs@denx.de>
16939 commit 1bc1538613d66cef3cbce680fc8d7c3561a0fbd0
16940 Author: Peter Tyser <ptyser@xes-inc.com>
16941 Date:   Fri Jul 10 11:03:19 2009 -0500
16943     Move examples/ to examples/standalone
16945     The current files in examples are all standalone application examples,
16946     so put them in their own subdirectory for organizational purposes
16948     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16950 commit b220c64d86f7c705a183302c3b50076d7e5d876c
16951 Author: Peter Tyser <ptyser@xes-inc.com>
16952 Date:   Fri Jul 10 11:03:15 2009 -0500
16954     Move architecture specific config.mk files into subdirs
16956     This cleans up U-Boot's toplevel directory a bit and makes the
16957     architecture 'config.mk' file naming and location similar to board
16958     and cpu 'config.mk' files
16960     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16962 commit 082becd0d546399637fa94fdf9f1730a0f7bf348
16963 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
16964 Date:   Fri Jul 10 18:25:34 2009 +0800
16966     Add "tags" to .gitignore file.
16968     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
16969     Signed-off-by: Wolfgang Denk <wd@denx.de>
16971 commit dc71b248ef0d5e12b19f33c6efb873e31df91fa9
16972 Author: Heiko Schocher <hs@denx.de>
16973 Date:   Thu Jul 9 12:04:18 2009 +0200
16975     powerpc: updates for the keymile boards
16977     - CONFIG_SYS_MAX_I2C_BUS changed to 1
16978       We use only one I2C hardwarecontroller on this boards, so
16979       change the CONFIG_SYS_MAX_I2C_BUS to 1.
16980     - common: dont print errormsg if second IVM Block lacks.
16981     - 82xx, mgcoge: fix double mtdpart entry in environment
16982     - 82xx, mgcoge: activate on second Flash the second bank.
16983     - common: CONFIG_ENV_SIZE 0x4000 for all keymile boards
16984     - common: Change malloc size to 1MByte for all Keymile boards
16985         We need a bigger malloc area for the environment support (128k)
16986         on some Keymile boards (kmeter1) and the upcoming UBI support.
16987         Change it to 1MB for all Keymile boards to be on the save side.
16988         Also define CONFIG_SYS_64BIT_VSPRINTF which is needed for
16989         UBI/UBIFS support.
16990     - Add UBI support to all Keymile boards
16991     - change manner of writing "/localbus/ranges" node
16992         instead of writting the complete "/localbus/ranges" node
16993         before booting Linux, only update the ranges entries
16994         which gets dynamical detected (size of flashes).
16995         This is needed, because keymile adds in the DTS
16996         "/localbus/ranges" node entries, which u-boot must
16997         not overwrite/delete.
16998     - kmeter, mgcoge: define 2 seperate regions needed for the Intel P30 chips
16999         The Intel P30 chip has 2 non-identical chips on
17000         one die, so we need to define 2 seperate regions
17001         that are scanned by physmap_of independantly.
17002     - kmeter1: Add MTD concat support to Keymile boards
17003     - 82xx, mgcoge: add "unlock=yes" to default environment
17004     - added CONFIG_MTD_DEVICE to get in sync with mainline code
17006     Signed-off-by: Heiko Schocher <hs@denx.de>
17007     Signed-off-by: Stefan Roese <sr@denx.de>
17009 commit f14d81050a9e0fa57aedb1bc746c60a07c1ad67f
17010 Author: galak <galak@ducky.am.freescale.net>
17011 Date:   Tue Jul 7 15:53:21 2009 -0500
17013     fsl_sata: Fix compiler warnings shown by gcc-4.4
17015     Update fsl_sata to use common structures instead of casting
17016     back and forth between the fsl specific ones and the common ones
17017     (which are identical).
17019     fsl_sata.c: In function 'scan_sata':
17020     fsl_sata.c:550: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
17021     fsl_sata.c:549: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
17022     fsl_sata.c:548: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
17023     fsl_sata.c:545: note: initialized from here
17024     fsl_sata.c:592: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
17025     fsl_sata.c:590: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
17026     fsl_sata.c:588: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
17027     fsl_sata.c:586: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
17028     fsl_sata.c:579: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
17029     ...
17031     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17033 commit 20938e54a207472a090f04f20f30c9e32b14137e
17034 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
17035 Date:   Tue Jul 7 15:58:51 2009 +0200
17037     Add unaligned.h for arm
17039     This patch adds unaligned.h for ARM (needed to build with LZO
17040     compression). The file is taken from the linux kernel, but includes
17041     u-boot headers instead.
17043     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
17044     Acked-by: Stefan Roese <sr@denx.de>
17046 commit 433ea8abd6adfae3138dd4ce238237a037e1e537
17047 Author: Peter Tyser <ptyser@xes-inc.com>
17048 Date:   Sun Jul 19 19:17:42 2009 -0500
17050     Remove last remanants of unused CONFIG_I2C_CMD_TREE
17052     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17054 commit f6ca3b70949790ab5438d6c9a592216cc3616110
17055 Author: Andrzej Wolski <awolski@poczta.fm>
17056 Date:   Fri Jul 17 22:26:54 2009 +0200
17058     ubi: help message correction
17060     Fix incorrect information about size units and correct typo.
17062     Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
17063     Signed-off-by: Stefan Roese <sr@denx.de>
17065 commit 22f2017c31bc682e9b15612a5c2580ab5b84418e
17066 Author: Peter Tyser <ptyser@xes-inc.com>
17067 Date:   Sun Jul 19 19:17:42 2009 -0500
17069     Remove last remanants of unused CONFIG_I2C_CMD_TREE
17071     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17073 commit f99a292aa6083057f5db8283d2ce4a2be22b8856
17074 Author: Andrzej Wolski <awolski@poczta.fm>
17075 Date:   Fri Jul 17 22:26:54 2009 +0200
17077     ubi: help message correction
17079     Fix incorrect information about size units and correct typo.
17081     Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
17082     Signed-off-by: Stefan Roese <sr@denx.de>
17084 commit b86b85e2611d57d834795a92453431a1a340c3c9
17085 Author: Ilya Yanok <yanok@emcraft.com>
17086 Date:   Mon Jun 29 17:53:16 2009 +0400
17088     mmc: set bus width to 1 and clock to minimum early during initialization
17090     We need to switch back to 1-bit before initialization or SD 2.0 cards
17091     will fail to send SCR if we've switched to 4-bit already.
17093     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
17095 commit cff80f2cd12bf9767509b5334ecfc90cd7de5502
17096 Author: Shinya Kuribayashi <skuribay@pobox.com>
17097 Date:   Sat Jun 20 19:14:33 2009 +0900
17099     config.mk: Remove unused HPATH
17101     This variable is not unused anywhere.
17103     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
17105 commit a781de12700e2cb3d3011fc83b47f7dd8cc3c154
17106 Author: Grzegorz Bernacki <gjb@semihalf.com>
17107 Date:   Wed Jun 17 16:20:14 2009 +0200
17109     digsy mtc: Enable command line history.
17111     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
17113 commit 37566090766d61beef70c62986b90749920255d8
17114 Author: Mike Frysinger <vapier@gentoo.org>
17115 Date:   Thu Jul 2 19:23:25 2009 -0400
17117     compiler.h: unify system ifdef cruft here
17119     Shove a lot of the HOSTCC and related #ifdef checking crap into the new
17120     compiler.h header so that we can keep all other headers nice and clean.
17122     Also introduce custom uswap functions so we don't have to rely on the non
17123     standard implementations that a host may (or may not in the case of OS X)
17124     provide.  This allows mkimage to finally build cleanly on an OS X system.
17126     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17128 commit 2a2ed845c085eb093b69fa6382fcf7534bb1f4b0
17129 Author: Kim Phillips <kim.phillips@freescale.com>
17130 Date:   Mon Jun 15 11:50:40 2009 -0500
17132     common: fix 'dummy' is used uninitialized in this function warning
17134     fix this gcc 4.4 warning:
17136     xyzModem.c: In function 'xyzModem_stream_open':
17137     xyzModem.c:564: warning: 'dummy' is used uninitialized in this function
17139     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17141 commit 1ea6bcd8590b3ff9fe2bfbb0eb29a3b0edaa9460
17142 Author: Mike Frysinger <vapier@gentoo.org>
17143 Date:   Sun Jun 14 23:33:14 2009 -0400
17145     push CROSS_COMPILE out to $(ARCH)_config.mk
17147     Each arch should handle setting a proper default CROSS_COMPILE value in
17148     their own config.mk file rather than having to maintain a large ugly list
17149     in the Makefile.  By using conditional assignment, we don't have to worry
17150     about the variable already being set (env/cmdline/etc...).
17152     The common config.mk file takes care of exporting CROSS_COMPILE already,
17153     and while a few variables (toolchain ones) utilize CROSS_COMPILE before
17154     including the arch config.mk, they do so with deferred assignment.
17156     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17158 commit 60a3f404acbf8238a3138fe1f80a6bac75da4582
17159 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17160 Date:   Sat Jun 13 12:55:37 2009 +0200
17162     malloc.h: protect it against multiple include
17164     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17166 commit 7640f41988a456a0b1f05263d2e2dc5cd7d93984
17167 Author: Wolfgang Denk <wd@denx.de>
17168 Date:   Sun Jul 19 19:37:24 2009 +0200
17170     Fix boards broken after removal of legacy NAND and DoC support
17172     Commit 2419169f removed support for legacy NAND and disk on chip but
17173     missed to update the code for a few boards. This patch fixes the
17174     resulting build issues.
17176     Signed-off-by: Wolfgang Denk <wd@denx.de>
17178 commit 1a4664b53aaf23687b52d64b94be06a9aa260b86
17179 Author: Wolfgang Denk <wd@denx.de>
17180 Date:   Sun Jul 19 19:32:37 2009 +0200
17182     cmd_flash.c: fix fix compile error for boards with DataFlash
17184     Commit 5669ed45 ("cmd_flash.c: fix warning: unused variable
17185     'addr_first'/'addr_last'") changed the #ifdef logic areound the
17186     declaration of these variables and missed a combination of settings
17187     of HAS_DATAFLASH with SYS_NO_FLASH; this patch fixes this.
17189     Also spotted by Alessandro Rubini <rubini@gnudd.com>
17191     Signed-off-by: Wolfgang Denk <wd@denx.de>
17193 commit 341245a28830d3261c41b09d958eeea7bb93587a
17194 Author: Wolfgang Denk <wd@denx.de>
17195 Date:   Sun Jul 19 12:05:15 2009 +0200
17197     pcm030: fix out-of-tree building
17199     Commit 0a87dd90 that was supposed to fix out-of-tree building for the
17200     pcm030 board was unfortunately incomplete.
17202     Signed-off-by: Wolfgang Denk <wd@denx.de>
17204 commit 8bf29b59fce8cc381114929082202d800e313ad5
17205 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
17206 Date:   Tue Jul 7 13:58:51 2009 +0200
17208     Add unaligned.h for arm
17210     This patch adds unaligned.h for ARM (needed to build with LZO
17211     compression). The file is taken from the linux kernel, but includes
17212     u-boot headers instead.
17214     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
17215     Acked-by: Stefan Roese <sr@denx.de>
17217 commit e405afab1dda66c9df3733f6b779d72fc36a0162
17218 Author: Kazuaki Ichinohe <kazuichi@fsi.co.jp>
17219 Date:   Fri Jun 12 18:10:12 2009 +0900
17221     Canyonlands SATA harddisk driver
17223     This patch adds a SATA harddisk driver for the canyonlands.
17224     This patch is kernel driver's porting.
17225     This patch corresponded to not cmd_scsi but cmd_sata.
17226     This patch divided an unused member with ifndef __U_BOOT__ in the structure.
17228     [environment variable, boot script]
17229     setenv bootargs root=/dev/sda7 rw
17230     setenv bootargs ${bootargs} console=ttyS0,115200
17231     ext2load sata 0:2 0x400000 /canyonlands/uImage
17232     ext2load sata 0:2 0x800000 /canyonlands/canyonlands.dtb
17233     fdt addr 0x800000 0x4000
17234     bootm 0x400000 - 0x800000
17236     If you drive SATA-2 disk on Canyonlands, you must change parts from
17237     PI2PCIE212 to PI2PCIE2212 on U25. We confirmed to boot by using
17238     following disks:
17240     1.Vendor: Fujitsu    Type: MHW2040BS
17241     2.Vendor: Fujitsu    Type: MHW2060BK
17242     3.Vendor: HAGIWARA SYS-COM:HFD25S-032GT
17243     4.Vendor: WesternDigital Type: WD3200BJKT (CONFIG_LBA48 required)
17244     5.Vendor: WesternDigital Type: WD3200BEVT (CONFIG_LBA48 required)
17245     6.Vendor: Hitachi    Type: HTS543232L9A300 (CONFIG_LBA48 required)
17246     7.Vendor: Seagate    Type: ST31000333AS (CONFIG_LBA48 required)
17247     8.Vendor: Transcend  Type: TS32GSSD25S-M
17248     9.Vendor: MTRON              Type: MSD-SATA1525-016
17250     Signed-off-by: Kazuaki Ichinohe <kazuichi at fsi.co.jp>
17252 commit 52a0e2dee90c17e39634de814b16b96061cfb472
17253 Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
17254 Date:   Wed Jun 10 19:09:40 2009 +0200
17256     Add support for the Tundra TSI148 VME-bridge
17258     From: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
17260     This patch adds support for the Tundra TSI148 VME-bridge. It's used on
17261     the upcoming esd VME8349 board.
17263     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
17264     Signed-off-by: Stefan Roese <sr@denx.de>
17266 commit 8d1fea2c4041e665c96944e3f6fcffbde55db34b
17267 Author: Mike Frysinger <vapier@gentoo.org>
17268 Date:   Thu Jul 16 19:05:30 2009 -0400
17270     Blackfin: bf537-{minotaur,srv1}: do not hardcode CONFIG_ETHADDR
17272     MAC addresses should not be hardcoded in boards to avoid random link level
17273     conflicts.
17275     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17277 commit baf357050353aee30c04f3f4b868426cb54468ca
17278 Author: Mike Frysinger <vapier@gentoo.org>
17279 Date:   Fri Jul 10 10:42:06 2009 -0400
17281     Blackfin: bf533-stamp: back down SCLK a bit
17283     While the 1.0 and 1.2 spin of the bf533-stamp boards can handle the higher
17284     SCLK speeds just fine, the 1.1 spin cannot due to the bugs introduced with
17285     the shortened SDRAM traces.  So lower the SCLK speed down to a value that
17286     all three can handle.
17288     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17290 commit 490fe7349102012c48730f6fc14ef36c8d155068
17291 Author: Mike Frysinger <vapier@gentoo.org>
17292 Date:   Thu Jul 9 20:56:56 2009 -0400
17294     Blackfin: split cpu COBJS into multilines
17296     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17298 commit 909878fd3fda056d19b8b51a5cc51cb1c0b563d1
17299 Author: Mike Frysinger <vapier@gentoo.org>
17300 Date:   Thu Jul 9 01:15:05 2009 -0400
17302     Blackfin: add os log functions
17304     Part of the mini Blackfin ABI with operating systems is that they can use
17305     0x4f0-0x4f8 to pass log buffers to/from bootloaders.  So add support to
17306     U-Boot for reading the log buffer.
17308     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17310 commit 9993e196da707a0a1cd4584f1fcef12382c1c144
17311 Author: Kim Phillips <kim.phillips@freescale.com>
17312 Date:   Sat Jul 18 18:42:13 2009 -0500
17314     mpc83xx: convert all remaining boards over to 83XX_GENERIC_PCI
17316     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17318 commit d39041fcadb1231430201d298c31f6be03d654f7
17319 Author: Wolfgang Denk <wd@denx.de>
17320 Date:   Sun Jul 19 01:15:52 2009 +0200
17322     PATI board: fix compiler warnings
17324     Fix these:
17325     pati.c: In function 'checkboard':
17326     pati.c:358: warning: pointer targets in passing argument 2 of 'getenv_r' differ in signedness
17327     ../common/flash.c: In function 'write_word':
17328     ../common/flash.c:824: warning: dereferencing type-punned pointer will break strict-aliasing rules
17329     cmd_pati.c: In function 'do_pati':
17330     cmd_pati.c:279: warning: 'value' may be used uninitialized in this function
17332     Signed-off-by: Wolfgang Denk <wd@denx.de>
17334 commit 28c345042eafc550a34b9f52431bd4a22af6ac25
17335 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17336 Date:   Sat May 16 12:14:56 2009 +0200
17338     mpl: printing current stdio devices cleanup
17340     Currently the mpl boards duplicate the code to print the current
17341     devices from common/console.c; use stdio_print_current_devices()
17342     instead
17344     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17346     Edited commit message.
17348     Signed-off-by: Wolfgang Denk <wd@denx.de>
17350 commit 7e3be7cf3bb344f717b6ec3d47a081269ea67ead
17351 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17352 Date:   Sat May 16 12:14:55 2009 +0200
17354     console: unify printing current devices
17356     Create stdio_print_current_devices() for this purpose
17358     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17360 commit 5669ed4557edf2714203aa8625c9fcd5a753b338
17361 Author: Wolfgang Denk <wd@denx.de>
17362 Date:   Sat Jul 18 23:18:14 2009 +0200
17364     cmd_flash.c: fix warning: unused variable 'addr_first'/'addr_last'
17366     Signed-off-by: Wolfgang Denk <wd@denx.de>
17368 commit 6bb6e6c75ec4ef496f00f7f530e549d3e073c5de
17369 Author: Tom Rix <Tom.Rix@windriver.com>
17370 Date:   Tue Jun 30 15:04:13 2009 -0500
17372     OMAP3 Fix compiler warning for v7_flush_dcache_all
17374     On build of omap3 targets in MAKEALL, the *.ERR files have
17376     cpu.c: In function 'cleanup_before_linux':
17377     cpu.c:64: warning: implicit declaration of function 'v7_flush_dcache_all'
17378     cpu.c:64: warning: implicit declaration of function 'get_device_type
17380     The functions v7_flush_dcache_all and get_device_type are declared
17381     in include/asm-arm/arch-omap3/sys_proto.h, so use this file to
17382     declare the functions.
17384     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
17386 commit dba107b967332fc8a35867f4d58038626c968800
17387 Author: Wolfgang Denk <wd@denx.de>
17388 Date:   Sat Jul 18 22:09:38 2009 +0200
17390     ARM: make split_by_variant.sh output more useful
17392     The board/armltd/integrator/split_by_variant.sh script used to print
17393     "Configuring for integrator*p board..." no matter which board name
17394     was being compiled. This made it difficult to match MAKEALL output to
17395     board names. This patch fixes this.
17397     Signed-off-by: Wolfgang Denk <wd@denx.de>
17399 commit 2eb99ca8029b44c988d5f6312f97e68d3b9cb2bd
17400 Author: Wolfgang Denk <wd@denx.de>
17401 Date:   Sat Jul 18 21:52:24 2009 +0200
17403     NAND: Part 2: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
17405     Commit 8d2effea added a warning for configurations that use NAND
17406     without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
17407     failed to fix the affected boards.
17409     This patch covers the non-PPC boards that were missed in the previous
17410     patch (commit 170c1972).
17412     Signed-off-by: Wolfgang Denk <wd@denx.de>
17414 commit 7024aa14df2981b4e65c6189909da9aadb1c22da
17415 Author: Wolfgang Denk <wd@denx.de>
17416 Date:   Sat Jul 18 20:46:38 2009 +0200
17418     at91cap9adk: fix #ifdef/#endif pairing
17420     The #ifdef/#endif pairing in this file was obviously messed up.
17422     Signed-off-by: Wolfgang Denk <wd@denx.de>
17424 commit 4abc5bffea244589fa1097e4c899a63efc609c8e
17425 Author: Prafulla Wadaskar <prafulla@marvell.com>
17426 Date:   Thu Jul 16 20:58:01 2009 +0530
17428     Marvell MV88F6281GTW_GE Board support
17430     This is Marvell's 88F6281_A0 based custom board developed
17431     for wireless access point product
17433     This patch is tested for-
17434     1. Boot from DRAM/SPI flash/NFS
17435     2. File transfer using tftp and loadb
17436     3. SPI flash read/write/erase
17437     4. Booting Linux kernel and RFS from SPI flash
17438     5. Boot from USB supported
17440     Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
17441     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
17443 commit 55dd4ba5413b14e8ee24058c89ac5c05376c331c
17444 Author: Prafulla Wadaskar <prafulla@marvell.com>
17445 Date:   Thu Jul 16 20:58:00 2009 +0530
17447     Marvell Sheevaplug Board support
17449     Reference:
17450     http://plugcomputer.org/
17451     http://openplug.org/plugwiki/index.php/Das_U-boot_plug_support
17453     This patch is tested for-
17454     1. Boot from DRAM/NAND flash
17455     2. File transfer using tftp
17456     3. NAND flash read/write/erase
17457     4. Linux kernel and RFS Boot from NAND
17458     5. Enabled USB PHY init for kernel need
17459     6. Boot from USB supported
17461     Note: to boot Kirkwood kernel with USB support,
17462         you should add "usb start" in the boot sequence
17464     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
17466 commit 0a87dd90a75d034301496285026fbd8106c7c6d5
17467 Author: Wolfgang Denk <wd@denx.de>
17468 Date:   Sat Jul 18 18:00:25 2009 +0200
17470     pcm030: fix out-of-tree building
17472     Commit c9969947, which added support for the pcm030 board
17473     (aka phyCORE-MPC5200B-tiny), broke out-of-tree building.
17475     Signed-off-by: Wolfgang Denk <wd@denx.de>
17477 commit 9ff59601c71e800b9d0dfde22fa70d12c71c12b4
17478 Author: Wolfgang Denk <wd@denx.de>
17479 Date:   Sat Jul 18 16:36:11 2009 +0200
17481     MPC837XERDB: fix warning: "CONFIG_SYS_MONITOR_LEN" redefined
17483     Signed-off-by: Wolfgang Denk <wd@denx.de>
17485 commit 2b5243fc24a724e83409c0b70caa1a3180e997ae
17486 Author: Wolfgang Denk <wd@denx.de>
17487 Date:   Sat Jul 18 16:13:18 2009 +0200
17489     8xxx: fix warning: implicit declaration of function 'uec_standard_init'
17491     Commit 8e55258f created function uec_standard_init() to initialize
17492     all UEC interfaces for 83xx and 85xx but failed to provide a
17493     prototype for it.
17495     Signed-off-by: Wolfgang Denk <wd@denx.de>
17497 commit 5b54df2674fdad5e7d316484c67efc68e79f3f0d
17498 Author: Wolfgang Denk <wd@denx.de>
17499 Date:   Sat Jul 18 15:46:02 2009 +0200
17501     MIP405T: fix compile problem
17503     The "stdio/device: rework function naming convention" patch
17504     (commit 52cb4d4f) broke the MIP405T board; this patch fixes it.
17506     Signed-off-by: Wolfgang Denk <wd@denx.de>
17508 commit 170c19725ecd3a0e2e517dfd49979ca8822edec0
17509 Author: Wolfgang Denk <wd@denx.de>
17510 Date:   Sat Jul 18 15:32:10 2009 +0200
17512     NAND: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
17514     Commit 8d2effea added a warning for configurations that use NAND
17515     without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
17516     failed to fix the affected boards.
17518     Signed-off-by: Wolfgang Denk <wd@denx.de>
17520 commit 6e897a661fb9968ce354165a12cce82e4b889e04
17521 Author: Wolfgang Denk <wd@denx.de>
17522 Date:   Sat Jul 18 15:05:44 2009 +0200
17524     CPCI750: fix compile problem
17526     Commit bc0d3296 removed ppc_error_no.h from Marvell boards
17527     but forgot to update board/esd/cpci750/mv_eth.h
17529     Signed-off-by: Wolfgang Denk <wd@denx.de>
17531 commit 6aee3048348f1b19ab89156da98bfa4f7babf24b
17532 Author: Alessandro Rubini <rubini-list@gnudd.com>
17533 Date:   Fri Jul 17 14:42:11 2009 +0200
17535     cmd_i2c: bugfix: add missing brace
17537     The sub-command parser missed a brace, so "return 0;" is always
17538     taken and no error message is diplayed if you say "i2c scan"
17539     instead of "i2c probe", for example.
17541     Proper brace is added. Also, a misleading and unneeded else
17542     is removed.
17544     Signed-off-by: Alessandro Rubini <rubini@gnudd.com.it>
17546 commit 52cb4d4fb3487313f5a72ea740f527a4aefaa365
17547 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17548 Date:   Sat May 16 12:14:54 2009 +0200
17550     stdio/device: rework function naming convention
17552     So far the console API uses the following naming convention:
17554         ======Extract======
17555         typedef struct device_t;
17557         int     device_register (device_t * dev);
17558         int     devices_init (void);
17559         int     device_deregister(char *devname);
17560         struct list_head* device_get_list(void);
17561         device_t* device_get_by_name(char* name);
17562         device_t* device_clone(device_t *dev);
17563         =======
17565     which is too generic and confusing.
17567     Instead of using device_XX and device_t we change this
17568     into stdio_XX and stdio_dev
17570     This will also allow to add later a generic device mechanism in order
17571     to have support for multiple devices and driver instances.
17573     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17575     Edited commit message.
17577     Signed-off-by: Wolfgang Denk <wd@denx.de>
17579 commit f732a7598fa36d48241df20b1a1f4cdbf09f75ee
17580 Author: Peter Tyser <ptyser@xes-inc.com>
17581 Date:   Wed Jul 15 00:01:08 2009 -0500
17583     ppc: Fix compile error for boards with CONFIG_DDR_ECC
17585     A bug was introduced by commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
17586     which affected non-MPC83xx/85xx/86xx ppc boards which had CONFIG_DDR_ECC
17587     defined and resulted in errors such as:
17589     Configuring for canyonlands board...
17590     fsl_dma.c:50:2: error: #error "Freescale DMA engine not supported on your
17591     processor"
17592     make[1]: *** No rule to make target `.depend', needed by `libdma.a'.  Stop.
17594     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17596 commit 18e067de9b6ed087fa60496e64887f0b7458dbaa
17597 Author: Prafulla Wadaskar <prafulla@marvell.com>
17598 Date:   Thu Jul 16 20:57:59 2009 +0530
17600     include/config_cmd_default.h cleanup
17602     arranged configurations in alphabetical order
17603     CONFIG_CMD_FLASH moved under ifndef CONFIG_SYS_NO_FLASH
17605     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
17607 commit 569460ebf14b87bd8fdb2352bde95d35ee96e13b
17608 Author: Mike Frysinger <vapier@gentoo.org>
17609 Date:   Sun Jun 14 21:35:22 2009 -0400
17611     sata: namespace curr_device variable
17613     The curr_device variable really should be namespaced with a "sata_" prefix
17614     since it is only used by the sata code.  It also avoids random conflicts
17615     with other pieces of code (like cmd_mmc):
17616     common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
17617         multiple definition of `curr_device'
17618     common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
17620     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17622 commit 02e22c2de1ce2312f2636fa473a60c8d8f18d8aa
17623 Author: Mike Frysinger <vapier@gentoo.org>
17624 Date:   Sun Jun 14 21:35:21 2009 -0400
17626     cmd_mmc: make curr_device static
17628     The curr_device variable isn't used outside of cmd_mmc, so mark it static
17629     to avoid conflicts with other pieces of code (like sata which also exports
17630     a curr_device).  Otherwise we end up with stuff like:
17631     common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
17632         multiple definition of `curr_device'
17633     common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
17635     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17637 commit 2d8d2adde3fce1152e4ad9f47238f07e70793c53
17638 Author: Mike Frysinger <vapier@gentoo.org>
17639 Date:   Sun Jun 14 21:35:16 2009 -0400
17641     envcrc: add missing dependencies on env storage
17643     When the envcrc building was made conditional, it missed a bunch of env
17644     storage types, so add all currently supported types.
17646     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17648 commit 2419169f5749d7af501b3b77a5336d1d535320de
17649 Author: Scott Wood <scottwood@freescale.com>
17650 Date:   Thu Jul 16 19:08:04 2009 -0500
17652     Remove legacy NAND and disk on chip references from boards.
17654     Signed-off-by: Scott Wood <scottwood@freescale.com>
17656 commit 12e9043c7ed961b60df865f45d9a3c74d6a38199
17657 Author: Shinya Kuribayashi <skuribay@pobox.com>
17658 Date:   Sat Jun 20 19:10:14 2009 +0900
17660     config.mk: Remove $(PCI_CLOCK) reference
17662     The following commit introduced $(PCI_CLOCK) reference so that
17663     we could tweak `PCI_66M' definition via an environment variable.
17665     > commit f046ccd15c8bc9613bfd72916b761a127d36e5c6
17666     > Author: Eran Liberty <liberty@freescale.com>
17667     > Date:   Thu Jul 28 10:08:46 2005 -0500
17668     >
17669     >     * Patch by Eran Liberty
17670     >       Add support for the Freescale MPC8349ADS board.
17672     But I suggest a removal of it for the following reasons:
17674     * In 2006, MPC8349ADS was merged into MPC8349EMDS port,
17675       and it seems that MPC8349EMDS port is PCI_66M free.
17677     * OTOH, PCI_66M is used by MPC832XEMDS an MPC8360EMDS ports,
17678       but they don't need $(PCI_CLOCK) environment variable at all.
17679       PCI_66M is automatically configured via $(BOARD)_config names
17680       with the help of $(findstring _66_,$@).
17682     * Unfortunately $(PCI_CLOCK) has been undocumented anywhere,
17683       so only a few people know the existence of it these days.
17685     * Keep config.mk independent from $(BOARD) as much as possible.
17687     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
17688     Acked-by: Kim Phillips <kim.phillips@freescale.com>
17690 commit 3db75d9c11d37cc1d28bebd91b19f4e548b68155
17691 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17692 Date:   Sat May 23 21:42:36 2009 +0200
17694     fix: missing autoconfig.mk from general Makefile
17696     At the first run of make we generate the autoconf.mk and
17697     autoconf.mk.dep if not already the case and we currently include only
17698     to .dep
17700     In order to use these autogenerated values we need to include it also
17701     even if it's included in config.mk but it's done before their
17702     generation
17704     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17705     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17707 commit 1ca298ced07327749b54321815f76fcddb2f9479
17708 Author: Matthias Weisser <matthias.weisser@graf-syteco.de>
17709 Date:   Thu Jul 9 16:07:30 2009 +0200
17711     Added support for splash screen positioning
17713     This patch adds support splash image positioning by adding an
17714     additional variable "splashpos" to the environment. Please see
17715     README for details.
17717     Signed-off-by: Matthias Weisser <matthias.weisser@graf-syteco.de>
17718     Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
17719     Signed-off-by: Anatolij Gustschin <agust@denx.de>
17721 commit 9d173e0233493113c9b1aa81bd2208d0057ab9db
17722 Author: Anatolij Gustschin <agust@denx.de>
17723 Date:   Tue Jul 7 13:11:36 2009 +0200
17725     video: mb862xx: replace printf with puts
17727     Signed-off-by: Anatolij Gustschin <agust@denx.de>
17729 commit cce99b2a7dd80683d61360aee56a6ece344950b2
17730 Author: Anatolij Gustschin <agust@denx.de>
17731 Date:   Tue Jul 7 13:27:07 2009 +0200
17733     video: mb862xx: use macros instead of magic numbers
17735     Signed-off-by: Anatolij Gustschin <agust@denx.de>
17737 commit e86528671ece6d5c1162656a37fc68a8e0bf67f8
17738 Author: Anatolij Gustschin <agust@denx.de>
17739 Date:   Tue Jul 7 13:24:08 2009 +0200
17741     video: mb862xx: fix coding style and remove dead code
17743     Signed-off-by: Anatolij Gustschin <agust@denx.de>
17745 commit 292ed489dba8cc97b458579003a8001cd4703cd8
17746 Author: Michal Simek <monstr@monstr.eu>
17747 Date:   Tue Jun 30 12:03:50 2009 +0200
17749     microblaze: Remove ignored return type for __arch__swab16 function
17751     This change remove compilation warnings.
17753     Signed-off-by: Michal Simek <monstr@monstr.eu>
17755 commit e2776587c0eac131954ae100fda89cc3e7ed8b57
17756 Author: Michal Simek <monstr@monstr.eu>
17757 Date:   Tue Jun 30 12:02:45 2009 +0200
17759     microblaze: Removed unused variables
17761     Signed-off-by: Michal Simek <monstr@monstr.eu>
17763 commit be33b046b549ad88c204c209508cd7657232ffbd
17764 Author: Scott Wood <scottwood@freescale.com>
17765 Date:   Wed Apr 1 15:02:13 2009 -0500
17767     Remove legacy NAND and disk on chip code.
17769     Legacy NAND had been scheduled for removal.  Any boards that use this
17770     were already not building in the previous release due to an #error.
17772     The disk on chip code in common/cmd_doc.c relies on legacy NAND,
17773     and it has also been removed.  There is newer disk on chip code
17774     in drivers/mtd/nand; someone with access to hardware and sufficient
17775     time and motivation can try to get that working, but for now disk
17776     on chip is not supported.
17778     Signed-off-by: Scott Wood <scottwood@freescale.com>
17780 commit fbdaafaee71e2c7f2c31b3582ab6d8679efee8d3
17781 Author: Stefan Roese <sr@denx.de>
17782 Date:   Thu Jun 4 16:40:36 2009 +0200
17784     nand: Change NAND_MAX_OOBSIZE to 218 as needed for some 4k page devices
17786     This is needed for the MPC512x NAND driver (fsl_nfc_nand.c) which already
17787     defines such a 4k plus 218 bytes ECC layout.
17789     Signed-off-by: Stefan Roese <sr@denx.de>
17790     Cc: Scott Wood <scottwood@freescale.com>
17791     Signed-off-by: Scott Wood <scottwood@freescale.com>
17793 commit f2f376ab956c17d4a0c42a993133ca25cdc87278
17794 Author: Stefan Roese <sr@denx.de>
17795 Date:   Thu Jul 16 15:13:04 2009 +0200
17797     nand: ndfc: Remove unnecessary #ifdef's
17799     Now that the 4xx NAND driver ndfc is moved to the common NAND driver
17800     directory we don't need this #ifdef's anymore.
17802     Signed-off-by: Stefan Roese <sr@denx.de>
17803     Cc: Scott Wood <scottwood@freescale.com>
17804     Signed-off-by: Scott Wood <scottwood@freescale.com>
17806 commit 12582ac771b0bf3852817c3bfa4be326522a0665
17807 Author: Stefan Roese <sr@denx.de>
17808 Date:   Thu Jul 16 15:12:48 2009 +0200
17810     nand/ppc4xx: Move PPC4xx NAND driver to common NAND driver directory
17812     Signed-off-by: Stefan Roese <sr@denx.de>
17813     Cc: Scott Wood <scottwood@freescale.com>
17814     Signed-off-by: Scott Wood <scottwood@freescale.com>
17816 commit 3ebf70db5452d3d47c316ddef09f40e76553bcba
17817 Author: Valeriy Glushkov <gvv@lstec.com>
17818 Date:   Tue Jul 14 13:51:10 2009 +0300
17820     nand: fixed failed reads on corrected ECC errors in nand_util.c
17822     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
17823     Signed-off-by: Paulraj, Sandeep <s-paulraj@ti.com>
17824     Signed-off-by: Scott Wood <scottwood@freescale.com>
17826 commit ed727d394c5ab139033719772dc95dc25cfa14f7
17827 Author: David Brownell <david-b@pacbell.net>
17828 Date:   Mon Jul 13 16:29:04 2009 -0700
17830     Typo fix: use CONFIG_SOC_DM644X, not CONFIG_SOC_DM646.
17832     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
17833     Signed-off-by: Scott Wood <scottwood@freescale.com>
17835 commit 937076f84c5064f0a79105fce352ac7cf7b33643
17836 Author: Kyungmin Park <kmpark@infradead.org>
17837 Date:   Sat Jul 11 16:49:55 2009 +0900
17839     MTD: OneNAND: Increase the environment size to 4KiB
17841     Also use mtd operation instead of onenand functions
17843     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
17844     Signed-off-by: Scott Wood <scottwood@freescale.com>
17846 commit bfadb17f69c256196620c32164775f063a59c34f
17847 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17848 Date:   Wed Jun 10 00:25:38 2009 +0400
17850     mpc83xx: MPC837xEMDS: Use hwconfig instead of pci_external_arbiter variable
17852     Since we have simple hwconfig interface now, we don't need
17853     pci_external_arbiter variable any longer.
17855     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17856     Acked-by: Kim Phillips <kim.phillips@freescale.com>
17858 commit b8b71ffbc35fde6905e65ffdbf4e4b87efc26b7e
17859 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17860 Date:   Wed Jun 10 00:25:36 2009 +0400
17862     mpc83xx: MPC8315ERDB: Use hwconfig for board type selection
17864     This patch simply converts the board to the hwconfig infrastructure.
17866     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17867     Acked-by: Kim Phillips <kim.phillips@freescale.com>
17869 commit c78c678354c8321737aa07e86831ff14176f4ed5
17870 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17871 Date:   Wed Jun 10 00:25:31 2009 +0400
17873     mpc83xx: MPC837XEMDS: Fixup eSDHC nodes in device tree
17875     fdt_fixup_esdhc() will either disable or enable eSDHC nodes, and
17876     also will fixup clock-frequency property.
17878     Plus, since DR USB and eSDHC are mutually exclusive, we should
17879     only configure the eSDHC if asked through hwconfig.
17881     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17882     Acked-by: Kim Phillips <kim.phillips@freescale.com>
17884 commit c9646ed758804fa1fa6c1425369a4eee5d618b1d
17885 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17886 Date:   Wed Jun 10 00:25:30 2009 +0400
17888     mpc83xx: MPC837XERDB: Add support for FSL eSDHC
17890     This patch adds support for eSDHC on MPC837XERDB boards. The WP
17891     switch doesn't seem to work on RDB boards though, the WP pin is
17892     always asserted (can see the pin state when it's in GPIO mode).
17894     FSL DR USB and FSL eSDHC are mutually exclusive because of pins
17895     multiplexing, so user should specify 'esdhc' or 'dr_usb' options
17896     in the hwconfig environment variable to choose between the
17897     devices.
17899     p.s.
17900     Now we're very close to a monitor len limit (196 bytes left using
17901     gcc-4.2.0), so also increase the monitor len by one sector (64 KB).
17903     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17904     Acked-by: Kim Phillips <kim.phillips@freescale.com>
17906 commit b33433a63fe08c9e723ea15a7c7c7143bf527c6d
17907 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17908 Date:   Wed Jun 10 00:25:29 2009 +0400
17910     fsl_esdhc: Add device tree fixups
17912     This patch implements fdt_fixup_esdhc() function that is used to fixup
17913     the device tree.
17915     The function adds status = "disabled" propery if esdhc pins muxed away,
17916     otherwise it fixups clock-frequency for esdhc nodes.
17918     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17919     Acked-by: Kim Phillips <kim.phillips@freescale.com>
17921 commit 93f9dcf9e8b8182e97aeb7965c687176cbd0b933
17922 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17923 Date:   Wed Jun 10 00:25:27 2009 +0400
17925     Add simple hwconfig infrastructure
17927     This patch implements simple hwconfig infrastructure: an
17928     interface for software knobs to control a hardware.
17930     This is very simple implementation, i.e. it is implemented
17931     via `hwconfig' environment variable. Later we could write
17932     some "hwconfig <enable|disable|list>" commands, ncurses
17933     interface for Award BIOS-like interface, and frame-buffer
17934     interface for AMI GUI[1] BIOS-like interface with mouse
17935     support[2].
17937     Current implementation details/limitations:
17939     1. Doesn't support options dependencies and mutual exclusion.
17940        We can implement this by integrating apt-get[3] into the
17941        u-boot. But I didn't bother yet.
17943     2. Since we don't implement hwconfig command, i.e. we're working
17944        with the environement directly, there is no way to tell that
17945        toggling a particular option will need a reboot to take
17946        an effect. So, for now it's advised to always reboot the
17947        target after modifying hwconfig variable.
17949     3. We support hwconfig options with arguments. For example,
17951        set hwconfig dr_usb:mode=peripheral,phy_type=ulpi
17953        That means:
17954        - dr_usb - enable Dual-Role USB controller;
17955        - dr_usb:mode=peripheral - USB in Function mode;
17956        - dr_usb:phy_type=ulpi - USB should work with ULPI PHYs;
17958     The purpose of this simple implementation is to define some
17959     internal API and then we can continue improving user experience
17960     by adding more mature interface, like hwconfig command with
17961     bells and whistles. Or not adding, if we feel that current
17962     interface fits its needs.
17964     [1] http://en.wikipedia.org/wiki/American_Megatrends
17965     [2] Regarding ncurses and GUI with mouse support -- I'm just
17966         kidding.
17967     [3] The comment regarding apt-get is also a joke, meaning that
17968         dependency tracking could be non-trivial. For example, for
17969         enabling HW feature X we may need to disable Y, and turn Z
17970         into reduced mode (like RMII-only interface for ethernet,
17971         no MII).
17973         It's quite trivial to implement simple cases though.
17975     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17976     Acked-by: Kim Phillips <kim.phillips@freescale.com>
17978 commit 6c3fef28b9fff0d7f3fa4c51c3ee0ae8c2a3b043
17979 Author: Jerry Van Baren <gvb.uboot@gmail.com>
17980 Date:   Wed Jul 15 20:42:59 2009 -0400
17982     Improve U-Boot Porting Guide in the README
17984     Update for...
17985     * BDI2000 -> BDI3000 (BDI2000 is obsolete).
17986     * Add a line to read the doc/README.* files
17987     * Fix coding standard violations
17989     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
17991 commit 9578718c1b085cac73017d834001bc5cb0b2f73f
17992 Author: Kim Phillips <kim.phillips@freescale.com>
17993 Date:   Tue Jul 14 16:00:24 2009 -0500
17995     mtd: cfi - if defined, use MAX_FLASH_BANKS_DETECT for static declarations
17997     a.k.a cfi_mtd.c does as cfi_flash.c does.  This also prevents
17998     the TQM834x build from doing a:
18000     cfi_mtd.c:36: error: variably modified 'cfi_mtd_info' at file scope
18001     cfi_mtd.c:37: error: variably modified 'cfi_mtd_names' at file scope
18003     using gcc 4.4.
18005     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18006     Signed-off-by: Stefan Roese <sr@denx.de>
18008 commit 4a9932a4364b548773bc131bf85e24a2ec15f2b0
18009 Author: Kim Phillips <kim.phillips@freescale.com>
18010 Date:   Tue Jul 7 18:04:21 2009 -0500
18012     mpc83xx: increase MONITOR_LEN to offset growing pains
18014     Saving the environment leads to overwriting u-boot itself,
18015     bricking boards.  Increase u-boot's image size so the environment
18016     base address doesn't end up overlapping u-boot text.
18018     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18020 commit c31e13260bcd048a94412a47b004386ea6112acf
18021 Author: Valeriy Glushkov <gvv@lstec.com>
18022 Date:   Tue Jun 30 15:48:41 2009 +0300
18024     usb: mpx8349itx: added support of loading images from USB storage (MPH/DR)
18026     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
18027     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18029 commit d89e1c36891de793a20a929282acc0fc7b98feac
18030 Author: Valeriy Glushkov <gvv@lstec.com>
18031 Date:   Tue Jun 30 15:48:40 2009 +0300
18033     usb: mpc834x: added support of the MPH USB controller in addition to the DR one
18035     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
18036     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18038 commit d9ac3d5a17ecef0beb70073018925e011b11684e
18039 Author: Kim Phillips <kim.phillips@freescale.com>
18040 Date:   Mon Jun 15 11:51:47 2009 -0500
18042     mpc83xx: set 64BIT_VSPRINTF for boards using nand_util
18044     When enabling NAND support for a board, one must also define
18045     CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
18046     for correct output.
18048     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18049     Cc: Dave Liu <daveliu@freescale.com>
18050     Cc: Ron Madrid <ron_madrid@sbcglobal.net>
18051     Cc: Anton Vorontsov <avorontsov@ru.mvista.com>
18053 commit 052c08916532d1d9c2f69eb9229709c7b2fc1f02
18054 Author: TsiChung Liew <tsicliew@gmail.com>
18055 Date:   Wed Jul 8 07:41:24 2009 +0000
18057     ColdFire: Update bootargs
18059     Add a bootargs for M53017EVB and update bootargs
18060     for M54451EVB
18062     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
18064 commit 6e8d58d36691520f8da74cd948661d28d5a5dc66
18065 Author: TsiChung Liew <tsicliew@gmail.com>
18066 Date:   Tue Jun 30 14:30:19 2009 +0000
18068     Command for accessing serial flash update
18070     Change strtoul number base of argv 3 from 0 to 16
18072     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
18074 commit ee0a8462466dd284968536eb57c6eef4be0d6aad
18075 Author: TsiChung Liew <tsicliew@gmail.com>
18076 Date:   Tue Jun 30 14:18:29 2009 +0000
18078     ColdFire: Add DSPI support for MCF5227x and MCF5445x
18080     Remove individual CPU specific DSPI driver.
18081     Add required feature for the common DSPI driver in cpu_init and
18082     in platform configuration file.
18084     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
18086 commit dec61c7851baa72151ef1d3657e7bb3b68907d48
18087 Author: TsiChung Liew <tsicliew@gmail.com>
18088 Date:   Tue Jun 30 14:09:47 2009 +0000
18090     Coldfire: Consolidate DSPI driver
18092     Unify both MCF5227x and MCF5445x DSPI driver in CPU to
18093     driver/spi folder for common use.
18095     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
18097 commit 11d88b26a68bd4bf98b1c962fde6257a50978231
18098 Author: TsiChung Liew <tsicliew@gmail.com>
18099 Date:   Fri Jun 12 13:03:34 2009 +0000
18101     ColdFire: Remove compiler warning messages
18103     Remove unused variables and printf type mismatch in
18104     lib_m68k/board.c
18106     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
18108 commit 4567c7bff2503fb1a7c738ff9b9f0bd00d274d9a
18109 Author: TsiChung Liew <tsicliew@gmail.com>
18110 Date:   Fri Jun 12 11:31:31 2009 +0000
18112     ColdFire: Fix M53017EVB flash size
18114     Increase the flash size from 8MB to 16MB
18116     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
18118 commit bf9a521529e484b15e8fdb583a607cf7945d2f6b
18119 Author: TsiChung Liew <tsicliew@gmail.com>
18120 Date:   Fri Jun 12 11:29:00 2009 +0000
18122     ColdFire: Add M5208EVB and MCF520x CPU support
18124     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
18126 commit 709b384b6493d9726dce20663ebe31bf7cab2925
18127 Author: TsiChung Liew <tsicliew@gmail.com>
18128 Date:   Thu Jun 11 15:39:57 2009 +0000
18130     ColdFire: Update for M54451EVB
18132     Update serial boot DRAM's Internal RAM, vector table and DRAM in
18133     start.S, serial flash's read status command over SPI and NOR
18134     flash.
18136     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
18138 commit bbf6bbffcaf694c03504c661e58fbd1aefe5bf64
18139 Author: TsiChung Liew <tsicliew@gmail.com>
18140 Date:   Thu Jun 11 12:50:05 2009 +0000
18142     ColdFire: Update configuration file to use flash buffer write
18144     Update M52277EVB, M53017EVB and M54455EVB platform configuration
18145     file to use flash buffer write
18147     Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
18149 commit 7d4450a9773673052fcd7fdf0a4a88c089126ac1
18150 Author: Wolfgang Denk <wd@denx.de>
18151 Date:   Sun Jun 14 20:58:53 2009 +0200
18153     mpc5121ads: add JFFS2 and MTDPARTS support; adjust flash map
18155     Signed-off-by: Wolfgang Denk <wd@denx.de>
18157 commit 1f1f82f3de1660f398bf42bfd709b9859582ce5e
18158 Author: Wolfgang Denk <wd@denx.de>
18159 Date:   Sun Jun 14 20:58:52 2009 +0200
18161     aria: add JFFS2 and MTDPARTS support; adjust flash map
18163     Signed-off-by: Wolfgang Denk <wd@denx.de>
18165 commit a6d6d46a4fef876455e11b45ed699c0fb3bd1ca1
18166 Author: Wolfgang Denk <wd@denx.de>
18167 Date:   Sun Jun 14 20:58:51 2009 +0200
18169     aria: enable NAND flash support
18171     Signed-off-by: Wolfgang Denk <wd@denx.de>
18173 commit 13946925e850db5351982acb691d51716fc754e2
18174 Author: Wolfgang Denk <wd@denx.de>
18175 Date:   Sun Jun 14 20:58:50 2009 +0200
18177     MPC512x: fix typo in comment listing the NAND driver name
18179     Signed-off-by: Wolfgang Denk <wd@denx.de>
18180     Cc: Stefan Roese <sr@denx.de>
18181     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
18183 commit 2ca6f74d09653f8041b52cafd0d650fdc2a56c51
18184 Author: Wolfgang Denk <wd@denx.de>
18185 Date:   Sun Jun 14 20:58:49 2009 +0200
18187     mecp5123: cleanup - remove dead code
18189     Remove dead code that was obviously a left-over from copy & paste.
18191     Signed-off-by: Wolfgang Denk <wd@denx.de>
18192     Cc: Stefan Roese <sr@denx.de>
18193     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
18195 commit 25671c8672f2d7b39555416a6b7a6b7b39b810bf
18196 Author: Wolfgang Denk <wd@denx.de>
18197 Date:   Sun Jun 14 20:58:48 2009 +0200
18199     aria: adjust memory controller initialization
18201     Needed for Rev. 2 silicon at 400 MHz
18203     Signed-off-by: Wolfgang Denk <wd@denx.de>
18205 commit 7629f1c06b6dea36bbc7bf70820b824e9b6d2227
18206 Author: Wolfgang Denk <wd@denx.de>
18207 Date:   Sun Jun 14 20:58:47 2009 +0200
18209     MPC512x: factor out common code
18211     Now that we have 3 boards for the MPC512x it turns out that they all
18212     use the very same fixed_sdram() code.
18214     This patch factors out this common code into cpu/mpc512x/fixed_sdram.c
18215     and adds a new header file, include/asm-ppc/mpc512x.h, with some
18216     macros, inline functions and prototype definitions specific to MPC512x
18217     systems.
18219     Signed-off-by: Wolfgang Denk <wd@denx.de>
18220     Cc: Stefan Roese <sr@denx.de>
18221     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
18223 commit 0549353a6ba5aa03420c0962b9072e9cf1fa49d9
18224 Author: Wolfgang Denk <wd@denx.de>
18225 Date:   Sun Jun 14 20:58:46 2009 +0200
18227     mecp5123: fix build error
18229     The mecp5123 board did not compile because the MSCAN Clock Control
18230     Registers were missing; these got added, but as an array instead
18231     of 4 individual registers. Adapt the code so it builds.
18233     Signed-off-by: Wolfgang Denk <wd@denx.de>
18234     Cc: Stefan Roese <sr@denx.de>
18235     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
18237 commit a9905db5d29a56aedd7db5bcb56b0385873aa6a3
18238 Author: Wolfgang Denk <wd@denx.de>
18239 Date:   Sun Jun 14 20:58:45 2009 +0200
18241     MPC512x: Add MSCAN1...4 Clock Control Registers
18243     Signed-off-by: Wolfgang Denk <wd@denx.de>
18244     Cc: Stefan Roese <sr@denx.de>
18245     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
18247 commit f5489c4200b37c9a1d6dbde116f5adc0539610de
18248 Author: Wolfgang Denk <wd@denx.de>
18249 Date:   Sun Jun 14 20:58:44 2009 +0200
18251     MPC512x: enabling NAND support requires CONFIG_SYS_64BIT_VSPRINTF
18253     When enabling NAND support for a board, one must also define
18254     CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
18255     for correct output.
18257     Signed-off-by: Wolfgang Denk <wd@denx.de>
18258     Cc: Stefan Roese <sr@denx.de>
18259     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
18261 commit b4db4a7638ef90cf0aacf7b954d9bf3043dda780
18262 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
18263 Date:   Fri Jul 10 18:03:57 2009 +0800
18265     issue write command to base for JEDEC flash
18267     For JEDEC flash, we should issue word programming command relative to
18268     base address rather than sector base address. Original source makes
18269     SST Flash fails to program sectors which are not on the 0x10000 boundaries.
18271     e.g.
18272     SST39LF040 uses addr1=0x5555 and addr2=0x2AAA, however, each sector
18273     is 0x1000 bytes.
18275     Thus, if we issue command to "sector base (0x41000) + offset(0x5555)",
18276     it sends to 0x46555 and the chip fails to recognize that address.
18278     This patch is tested with SST39LF040.
18280     Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
18281     Signed-off-by: Stefan Roese <sr@denx.de>
18283 commit 986922714ffd21ad39f48522d285fffc7aed56b1
18284 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18285 Date:   Sat May 2 11:53:50 2009 +0200
18287     versatile: update config and merge to cfi flash driver
18289     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18290     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
18291     Cc: Catalin Marinas <catalin.marinas@arm.com>
18293 commit d6e8ed832b25d5db4fdd3fb91e73028e494dcd6e
18294 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18295 Date:   Sat May 2 11:53:49 2009 +0200
18297     versatile: specify the board type on the prompt
18299     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18300     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
18301     Cc: Catalin Marinas <catalin.marinas@arm.com>
18303 commit 5ccc2d99d61c81805348b0cd9f79731b271f7daf
18304 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
18305 Date:   Thu Jun 25 17:04:15 2009 +0200
18307     at91: Introduction of at91sam9g10 SOC.
18309     AT91sam9g10 is an ARM 926ej-s SOC. It is an evolution of the at91sam9261 with a
18310     faster clock speed: 266/133MHz.
18312     Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
18314 commit 22ee647380c42f44528f99b7c1b423725e542102
18315 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
18316 Date:   Thu Jul 9 10:16:29 2009 +0200
18318     at91: Introduction of at91sam9g45 SOC.
18320     AT91sam9g45 series is an ARM 926ej-s SOC family clocked at 400/133MHz.
18321     It embeds USB high speed host and device, LCD, DDR2 RAM, and a full set of
18322     peripherals.
18324     The first board that embeds at91sam9g45 chip is the AT91SAM9G45-EKES.
18325     On the board you can find 2 USART, USB high speed,
18326     a 480*272 LG lcd, ethernet, gpio/joystick/buttons.
18328     Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
18330 commit c33c5990cec7ced9ef1ef148debbca34adafa12b
18331 Author: Daniel Mack <daniel@caiaq.de>
18332 Date:   Tue Jun 23 17:30:05 2009 +0200
18334     pxa: fix CKEN_B register bits
18336     The current defition for CKEN_B register bits is nonsense. Adding 32 to
18337     the shifted value is equal to '| (1 << 5)', and this bit is marked
18338     'reserved' in the PXA docs.
18340     Signed-off-by: Daniel Mack <daniel@caiaq.de>
18342 commit bd876be46f28b5fc2896537f6d01353f332789f7
18343 Author: Daniel Mack <daniel@caiaq.de>
18344 Date:   Tue Jun 23 17:30:04 2009 +0200
18346     pxa: add clock for system bus 2 arbiter
18348     This clock is needed for systems using the USB2 device unit or the 2d
18349     graphics accelerator.
18351     Signed-off-by: Daniel Mack <daniel@caiaq.de>
18353 commit b016000a95514c08cab50e1cba00b019c0801bc4
18354 Author: Grazvydas Ignotas <notasas@gmail.com>
18355 Date:   Wed Jul 8 00:30:01 2009 +0300
18357     OMAP3 pandora: Fix CKE1 MUX setting to allow self-refresh
18359     Pandora is using both SDRC CSes. The MUX setting is needed
18360     for the second CS clock signal to allow the 2 RAM parts to
18361     be put in self-refresh correctly.
18363     Based on similar patch for beagle and overo by
18364     Jean Pihet and Steve Sakoman.
18366 commit 8672c288703f3c51c829851c8fe6608c7869faaa
18367 Author: Grazvydas Ignotas <notasas@gmail.com>
18368 Date:   Wed Jul 8 00:30:00 2009 +0300
18370     OMAP3 pandora: setup pulls for various GPIOs
18372     Set pullups or pulldowns for GPIOs which need them.
18373     Disable them for others, which have external pulls.
18374     Also make disabled pull setting consistent (some pins had
18375     type set to "up" even if pull type selection was disabled).
18377 commit 5ff78122f229946862a3f67a2f50a329e8e1bcf5
18378 Author: Grazvydas Ignotas <notasas@gmail.com>
18379 Date:   Wed Jul 8 00:29:59 2009 +0300
18381     OMAP3 pandora: setup pin mux for pins used on rev3 boards
18383     Setup pin mux for GPIO pins connected on rev3 or later
18384     boards. Also change NUB2 IRQ pin. This should not affect
18385     older boards because they don't have any nubs (analog
18386     controllers) attached to them.
18388 commit 67c97c346b27c586a7263564f7afff6d1f8d8d0a
18389 Author: Grazvydas Ignotas <notasas@gmail.com>
18390 Date:   Wed Jul 8 00:29:58 2009 +0300
18392     OMAP3 pandora: pin mux cleanup
18394     Remove configuration of not unused pins, effectively
18395     leaving them in safe mode.
18397 commit b996165f5a1623a055c03b22d64d6d5da81835d0
18398 Author: Prafulla Wadaskar <prafulla@marvell.com>
18399 Date:   Mon Jul 6 15:50:47 2009 +0530
18401     arm: Kirkwood: bugfix: UART1 bar correction
18403     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
18405 commit 50243e3e7a96a96c5418ce6c90b7252d26fdd5b0
18406 Author: Kumar Gala <galak@kernel.crashing.org>
18407 Date:   Tue Jul 7 15:48:58 2009 -0500
18409     usb: Fix compiler warning with gcc4.4
18411     ehci-hcd.c: In function 'ehci_submit_root':
18412     ehci-hcd.c:719: warning: value computed is not used
18413     ehci-hcd.c:748: warning: value computed is not used
18415     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18416     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18418 commit 04366d070a1a3f7affddf15aaaea87bcf44cdbb0
18419 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18420 Date:   Wed Jul 8 11:42:19 2009 +0900
18422     sh: Update pci config for Renesas r7780mp board
18424     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18426 commit 74d9c16a681aa24bb4125191fe39dc7c75cde56a
18427 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18428 Date:   Thu Jun 25 16:31:26 2009 +0900
18430     sh: Add support ESPT-GIGA borad
18432     ESPT-Giga is SH7763-based reference board.
18433     Board support is relatively sparse, presently supporting serial,
18434     gigabit ethernet, USB host, and MTD.
18436     More information (in Japanese) available at:
18437     http://www.cente.jp/product/cente_hard/ESPT-Giga.html
18439     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18440     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18442 commit dae4e0148a1146a5610025ae4b445e841410b659
18443 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
18444 Date:   Fri Jul 3 16:06:37 2009 +0200
18446     Add ESD PCI vendor ID
18448     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
18450 commit 876b3cef537aab2cba8c19505db2876f6057f818
18451 Author: Peter Tyser <ptyser@xes-inc.com>
18452 Date:   Mon Jun 22 18:01:41 2009 -0500
18454     api_examples/Makefile: General cleanup
18456     * Remove symlinking of files located outside api_examples/
18458     * Auto generate dependencies for files located outside api_examples/
18460     * Update names of variables to be similar to those in tools/Makefile
18462     * Fix out of tree build error
18463       Dependencies are calculated for all files in the SRCS variable.
18464       Previously, the SRCS variable contained files which were symlinked
18465       into the api_examples/ directory.  These symlinked files did not exist
18466       when dependencies were calculated when building out of tree.  This
18467       resulted in errors such as:
18468         make[1]: *** No rule to make target `/work/wd/tmp-ppc/api_examples/.depend', needed by `_depend'.  Stop.
18469         make[1]: Leaving directory `/home/wd/git/u-boot/work/api_examples'
18470         make: *** [depend] Error 2
18472       Since symlinked source files are no longer used, this bug no longer
18473       exists.
18475     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18476     Acked-by: Rafal Jaworowski <raj@semihalf.com>
18478 commit 522f6f02adb93194e337016fe2e4e53c58d5d5ea
18479 Author: Peter Tyser <ptyser@xes-inc.com>
18480 Date:   Mon Jun 22 18:01:40 2009 -0500
18482     api_examples/Makefile: Get rid of unnecessary intermediate LIB target
18484     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18485     Acked-by: Rafal Jaworowski <raj@semihalf.com>
18487 commit 117d0ab5e6f3b3dd48fc346df4919555a78afd39
18488 Author: Peter Tyser <ptyser@xes-inc.com>
18489 Date:   Mon Jun 22 18:01:39 2009 -0500
18491     api_examples/Makefile: Combine ELF and BIN targets
18493     Combining the two rules cleans up the Makefile a bit
18495     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18496     Acked-by: Rafal Jaworowski <raj@semihalf.com>
18498 commit 644cb38108b8dc22e0ef3cf5f404fe310d1995f8
18499 Author: Peter Tyser <ptyser@xes-inc.com>
18500 Date:   Mon Jun 22 18:01:38 2009 -0500
18502     api_examples/Makefile: Split up variable declarations
18504     This cleans up the Makefile a bit and simplifies future changes
18506     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18507     Acked-by: Rafal Jaworowski <raj@semihalf.com>
18509 commit 890d242facc4079ed21e979ced2e8c6d6974f6d3
18510 Author: Timur Tabi <timur@freescale.com>
18511 Date:   Fri Jun 19 14:10:52 2009 -0500
18513     remove _IO_BASE and KSEG1ADDR from board configuration files
18515     The KSEG1ADDR macro used to be necessary for the RTL8139 Ethernet
18516     driver, but the code that used that macro was removed over a year
18517     ago, so board configuration files no longer need to define it.
18519     The _IO_BASE macro is also automatically defined to 0 if it isn't
18520     already set, so there's no need to define that macro either in the
18521     board configuration files.
18523     Signed-off-by: Timur Tabi <timur@freescale.com>
18524     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18525     Acked-by: Andy Fleming <afleming@freescale.com>
18526     Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
18527     Acked-by: Kim Phillips <kim.phillips@freescale.com>
18529 commit c9969947a4687de90e2bb58e76842b491aa0e0b9
18530 Author: Jon Smirl <jonsmirl@gmail.com>
18531 Date:   Sun Jun 14 18:21:28 2009 -0400
18533     board support patch for phyCORE-MPC5200B-tiny
18535     Add support for the Phytec phyCORE-MPC5200B-tiny.
18536     Code originally from Pengutronix.de.
18537     Created CONFIG_SYS_ATA_CS_ON_TIMER01 define for when IDE CS is on
18538     Timer 0/1
18540     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
18541     Acked-by: Grant Likely <grant.likely@secretlab.ca>
18543 commit 7bd49ad12cc36a4de6995ddabbc65ffa1aa1933d
18544 Author: Mike Frysinger <vapier@gentoo.org>
18545 Date:   Mon Jun 15 13:37:20 2009 -0400
18547     kallsyms: fix escaping of NUL char in strings
18549     The current kallsyms code is using \\0 to escape the backslash in the awk
18550     code, but the shell too needs escaping.  This way we make sure gcc is
18551     passed the \0.  Then gcc itself will consume this as an octal, so we have
18552     to use 000 so gcc will create the final NUL.
18554     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18556 commit ed540f07b8ad86909704e9806c1762462cb4995a
18557 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
18558 Date:   Fri Jun 26 10:18:49 2009 -0400
18560     Blackfin: cm-bf561: add example settings for EXT-BF5xx-USB-ETH2 add-on
18562     The cm-bf561 module can easily hook up to the EXT-BF5xx-USB-ETH2 extender
18563     board, so add a simple example of how to do that in the board config.
18565     Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
18566     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18568 commit f8bf54b4081c3c3d518830df0017a23ec672a841
18569 Author: Mike Frysinger <vapier@gentoo.org>
18570 Date:   Thu Jun 25 19:40:28 2009 -0400
18572     Blackfin: blackstamp: update spi flash settings
18574     The latest blackstamp boards can only run the SPI flash at 15MHz before
18575     they start to crap out, so lower the max speeds accordingly.  The new SPI
18576     flash also has different sector requirements, so update the environment
18577     sizes as well.
18579     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18581 commit 286070ddc8339666c09bd7912e960b850a8a0318
18582 Author: Mike Frysinger <vapier@gentoo.org>
18583 Date:   Mon Oct 6 03:31:52 2008 -0400
18585     Blackfin: add cache_dump commands
18587     A few debug-type commands used to dump the raw icache/dcache data.  Useful
18588     when trying to track down cache-related bugs.
18590     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18592 commit 632e9b671efb0a6c900499f7a49fe5b63292b5fc
18593 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
18594 Date:   Wed Jul 8 15:31:57 2009 +0200
18596     ppc4xx: Set default PCI device ID for 405EP boards
18598     Current code only sets the PCI vendor id to 0x1014 and
18599     leaved device id to 0x0000.
18601     Ths patch ....
18602     a) uses the correct PCI_VENDOR_ID_IBM macro for this
18603     b) sets the default device ID as stated in the UM to 0x0156
18604        by using PCI_DEVICE_ID_IBM_405GP for this.
18606     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
18607     Signed-off-by: Stefan Roese <sr@denx.de>
18609 commit 123f102ec093fba6967066acdf9beb637df2e2d1
18610 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
18611 Date:   Wed Jul 8 13:43:55 2009 +0200
18613     ppc4xx: Move 405EP pci code from cpu_init_f() to __pci_pre_init()
18615     This patch moves some basic PCI initialisation from the 4xx cpu_init_f()
18616     to cpu/ppc4xx/4xx_pci.c.
18618     The original cpu_init_f() function enabled the 405EP's internal arbiter
18619     in all situations. Also the HCE bit in cpc0_pci is always set.
18620     The first is not really wanted for PCI adapter designs and the latter
18621     is a general bug for PCI adapter U-Boots. Because it enables
18622     PCI configuration by the system CPU even when the PCI configuration has
18623     not been setup by the 405EP. The one and only correct place is
18624     in pci_405gp_init() (see "Set HCE bit" comment).
18626     So for compatibility reasons the arbiter is still enabled in any case,
18627     but from weak pci_pre_init() so that it can be replaced by board specific
18628     code.
18630     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
18631     Signed-off-by: Stefan Roese <sr@denx.de>
18633 commit c71103f9dc66dfcce8ad6df942364043bf27ade8
18634 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
18635 Date:   Wed Jul 8 13:43:23 2009 +0200
18637     ppc4xx: Make is_pci_host() available for all 440 and 405 CPUs
18639     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
18640     Signed-off-by: Stefan Roese <sr@denx.de>
18642 commit 1d8937a469bfeb55ca1f6d89a4e7cd2dfee3cf17
18643 Author: Prafulla Wadaskar <prafulla@marvell.com>
18644 Date:   Mon Jun 29 20:56:43 2009 +0530
18646     usb: add Marvell Kirkwood ehci host controller driver
18648     This driver is tested on Sheevaplug platform
18650     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
18651     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18653 commit db7b43e4681f6f93c336132708157a8a0cca1f8b
18654 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
18655 Date:   Wed Jun 24 10:08:40 2009 +0530
18657     mpc83xx: USB: fix: access of ehci struct elements
18659     It fixes the access to the 'ehci' struct elements for mpc83xx which
18660     should have been taken care of in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
18661     Sorry about that.
18663     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
18664     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18666 commit 08066152735417fc55a5c9de2cec0714c529e4f3
18667 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
18668 Date:   Fri Jun 19 17:56:00 2009 +0530
18670     mpc8xxx: USB: fix: access of ehci struct elements
18672     This patch fixes the access to the 'ehci' struct elements which should
18673     have been taken care off in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
18674     Sorry about that.
18676     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
18677     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18679 commit c3a012ce65818beb274195cd47f31ed80d0fbaa5
18680 Author: Bryan Wu <bryan.wu@analog.com>
18681 Date:   Tue Jun 16 05:26:27 2009 -0400
18683     usb: musb: add timeout via CONFIG_MUSB_TIMEOUT
18685     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
18686     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18687     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18689 commit 7984967a9405672db1581402d2c2cfae268d1a67
18690 Author: Mike Frysinger <vapier@gentoo.org>
18691 Date:   Tue Jun 16 05:26:25 2009 -0400
18693     usb: musb: drop old musb read/write prototypes
18695     These functions are no longer defined, so remove their prototypes.
18697     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18698     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18700 commit 4e04f16020115ab5ccf53158e100de58bcaf29bd
18701 Author: Kim Phillips <kim.phillips@freescale.com>
18702 Date:   Mon Jun 15 11:50:07 2009 -0500
18704     usb: fix CONFIG_SYS_MPC83xx_USB_ADDR not defined error
18706     fix a stray CONFIG_MPC83XX that escaped commit
18707     0f898604945af4543c1525fc33b6bae621a3b805.
18709     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18710     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18712 commit bc0d3296f1780b50e6b9630aee5eb368f2afb6cb
18713 Author: Michal Simek <monstr@monstr.eu>
18714 Date:   Tue Jun 30 23:47:30 2009 +1000
18716     asm-generic: Consolidate errno.h to asm-generic/errno.h
18718     This patch use blackfin errno.h implementation which
18719     correspond Linux kernel one.
18721     MIPS implemetation is different that's why I keep it.
18723     I removed ppc_error_no.h from Marvell boards which
18724     was the same too.
18726     I have got ack from ppc40x, blackfin, arm, coldfire and avr custodians.
18728     Acked-by: Stefan Roese <sr@denx.de>
18729     Signed-off-by: Michal Simek <monstr@monstr.eu>
18731 commit 2896b5851f0430bf16529376a4193630e966c788
18732 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
18733 Date:   Tue Jul 7 16:01:02 2009 +0200
18735     Command improvements for ubifs
18737     Check that an argument is passed to ubifsmount and that addresses and
18738     sizes are actually numbers for ubifsload. Also improve the instructions
18739     a bit.
18741     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
18742     Signed-off-by: Stefan Roese <sr@denx.de>
18744 commit 25c8f4005979ab2d190713ba341d96a5fa905cdb
18745 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
18746 Date:   Tue Jul 7 16:59:46 2009 +0200
18748     Handle VID header offset in ubi part command
18750     The VID header offset is sometimes needed to initialize the UBI
18751     partition. This patch adds it (optionally) to the command line
18752     for the ubi part command.
18754     (Lines have been properly wrapped since last version)
18756     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
18757     Acked-by: Stefan Roese <sr@denx.de>
18758     Signed-off-by: Stefan Roese <sr@denx.de>
18760 commit 3672cd5c3b53d219d33345eebad4e25ad5bf6d52
18761 Author: Wolfgang Denk <wd@denx.de>
18762 Date:   Thu Jul 9 09:56:16 2009 +0200
18764     MAINTAINERS: fix sorting, remove duplicates.
18766     Signed-off-by: Wolfgang Denk <wd@denx.de>
18768 commit efbf14e9a2394a154b12643d4a011994b5096b5a
18769 Author: Heiko Schocher <heiko.schocher@invitel.hu>
18770 Date:   Wed Dec 10 08:27:01 2008 +0100
18772     all platforms: make show_boot_progress() work again
18774     Signed-off-by: Heiko Schocher <hs@denx.de>
18776 commit 205a0988d8fd778c60746c34c2f17dbd2b7cd0d2
18777 Author: Prafulla Wadaskar <prafulla@marvell.com>
18778 Date:   Mon Jun 29 15:25:18 2009 +0530
18780     nand: Add Marvell Kirkwood NAND driver
18782     This patch adds a NAND driver for the Marvell Kirkwood SoC's
18784     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
18785     Acked-by: Scott Wood <scottwood@freescale.com>
18787 commit 0580e48f53f972783e56fcedadb9ce6e5b0b6f32
18788 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
18789 Date:   Mon Jul 6 16:27:33 2009 +0200
18791     ppc4xx: Make pll_write global
18793     This patch makes pll_write on PPC405EP boards
18794     global and callable from C code.
18796     pll_write can be used to dynamically modify the PLB:PCI divider
18797     as it is required for 33/66 MHz pci adapters based on the 405EP.
18799     board_early_init_f() is a good place to do that (check M66EN signal
18800     and call pll_write() when it is required).
18802     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
18803     Signed-off-by: Stefan Roese <sr@denx.de>
18805 commit 20b3c4b528606d51799aed5e4c71783720cd2b72
18806 Author: Stefan Roese <sr@denx.de>
18807 Date:   Mon Jul 6 11:44:33 2009 +0200
18809     ppc4xx: Remove compilation warning "pci_async_enabled defined but not used"
18811     Signed-off-by: Stefan Roese <sr@denx.de>
18813 commit d0a1364f91c80d29daff6b27a7904a50cdc00b35
18814 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
18815 Date:   Fri Jul 3 16:06:06 2009 +0200
18817     ppc4xx: Implement is_pci_host() for 405 CPUs
18819     This patch implements the is_pci_host() function in a similiar way
18820     as it is used on 440 targets.
18822     The former path with CONFIG_PCI_HOST == PCI_HOST_AUTO does not
18823     build on 405EP targets because checking the PCI arbiter is different.
18824     So putting the fixed code into a separate function makes the code
18825     more readable.
18827     Also using is_pci_host() on 405 brings 405 and 440 PCI code
18828     a little bit closer.
18830     In preparation for an upcoming 405EP based PMC module I made this
18831     function weak so that it can be overwritten from board specific code.
18833     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
18834     Signed-off-by: Stefan Roese <sr@denx.de>
18836 commit 04ddae915f295dee301f15c32100533a48e3b433
18837 Author: Alessio Centazzo <centazzo@gmail.com>
18838 Date:   Wed Jul 1 22:20:51 2009 -0700
18840     ppc4xx: Fixed PPC4xx debug compilation error in uic.c
18842     This patch fixes a debug compilation error for PPC4xx platforms, all
18843     other architectures are not affected by this change.  The 'handler'
18844     pointer was undefined.  The fix is exercised and has effect only if
18845     DEBUG is defined.
18847     Signed-off-by: Alessio Centazzo acpatin@yahoo.com
18848     Signed-off-by: Stefan Roese <sr@denx.de>
18850 commit 48e2b535a0dd3a7b77b674130934a24f9de6f48d
18851 Author: Felix Radensky <felix@embedded-sol.com>
18852 Date:   Wed Jul 1 11:37:46 2009 +0300
18854     4xx: Fix compilation warnings and MQ registers dump in SPD DDR2 code
18856     This patch fixes printf format string compilation warnings in several
18857     debug statements. It also fixes the dump of DDR controller MQ registers
18858     found on some 44x and 46x platforms. The current register dump code
18859     uses incorrect DCRs to access these registers.
18861     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
18862     Signed-off-by: Stefan Roese <sr@denx.de>
18864 commit 26d37f0061ad05e5c383c910f00e6006f3c89a3a
18865 Author: Felix Radensky <felix@embedded-sol.com>
18866 Date:   Mon Jun 22 15:30:42 2009 +0300
18868     ppc4xx: Fix FDT EBC mappings on Canyonlands
18870     This patch fixes 2 problems with FDT EBC mappings on Canyonlands.
18871     First, NAND EBC mapping was missing, making Linux NAND driver
18872     unusable on this board. Second, NOR remapping code assumed that
18873     NOR is always on CS0, however when booting from NAND NOR is on CS3.
18875     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
18876     Signed-off-by: Stefan Roese <sr@denx.de>
18878 commit baa9f9ba4345ed6dc5c403871c32e6295316ea52
18879 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18880 Date:   Tue Jun 16 22:29:15 2009 +0900
18882     sh: Revised the build with newest compiler
18884     The check of data became severe from newest gcc.
18885     This patch checked in gcc-4.2 and 4.3 .
18887     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18889 commit be45c632568ba76343c1453b3951ad793f482fd5
18890 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18891 Date:   Thu Jun 4 12:06:48 2009 +0200
18893     sh3/sh4: rename config option TMU_CLK_DIVIDER to CONFIG_SYS_TMU_CLK_DIV
18895     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18896     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18897     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18899 commit 8dd29c87ba370072a8464b8cc19e0a1e6e0497b4
18900 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18901 Date:   Thu Jun 4 12:06:47 2009 +0200
18903     sh3/sh4: fix CONFIG_SYS_HZ to 1000
18905     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18906     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18907     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18909 commit add380f51f34ed1e2678c2abac8d53c91d652f26
18910 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18911 Date:   Thu Jun 4 12:06:46 2009 +0200
18913     sh: introduce clock framework
18915     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18916     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18917     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18919 commit 3931a375de2c381d9ff5ec2767b2da9f62a41aef
18920 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18921 Date:   Thu Jun 4 12:06:45 2009 +0200
18923     sh: unify linker script
18925     all sh boards use the same cpu linker script so move it to cpu/$(CPU)
18927     that could be overwrite in following order
18928     SOC
18929     BOARD
18930     via the corresponding config.mk
18932     tested on r2dplus
18934     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18935     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18936     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18938 commit 236aad875817771eb1f25ed32784b3cd7760b2e6
18939 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18940 Date:   Thu Jun 4 12:06:44 2009 +0200
18942     sh: make the linker scripts more generic
18944     currently we need to sync the linker script enty and TEXT_BASE manualy
18945     and the reloc_dst is based on it
18947     instead provide it now from the ldflags
18949     tested on r2dplus
18951     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18952     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18953     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18955 commit ce29817212792113cd2d67a9767049a2e262c406
18956 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18957 Date:   Thu Jun 4 12:06:43 2009 +0200
18959     sh7785lcr: fix out of tree build
18961     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18962     Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18963     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18965 commit 2e8a6f551cba550e9220dca4d8504066203b1f74
18966 Author: HeungJun Kim <riverful.kim@gmail.com>
18967 Date:   Tue Jun 30 14:42:22 2009 +0900
18969     env_onenand: change env_address type from unsigned long to loff_t
18971     If use the onenand boot, the env_relocate_spec() calls mtd->read(),
18972     and the type of the argument #2 of mtd->read() was changed to loff_t.
18973     But, the "env_addr" type is still unsigned long, thus this patch change
18974     the type from unsigned long to loff_t.
18976     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
18977     Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
18978     Signed-off-by: Scott Wood <scottwood@freescale.com>
18980 commit 66372fe2ab11cdeb0e841ad9eb6ba79769db4909
18981 Author: Mingkai Hu <Mingkai.hu@freescale.com>
18982 Date:   Thu Jun 18 18:23:27 2009 +0800
18984     fsl_elbc_nand: redirect the pointer of bbt pattern to RAM
18986     The bbt descriptors contains the pointer to the bbt pattern which
18987     are statically initialized memory struct. When relocated to RAM,
18988     these pointers will continue point to NOR flash(or L2 SRAM, or
18989     other boot device). If the contents of NOR flash changed or L2
18990     SRAM disabled, it'll hang the system.
18992     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
18993     Signed-off-by: Scott Wood <scottwood@freescale.com>
18995 commit 1dac3a51875967f32641bbc0d26dc382ef02330a
18996 Author: Scott Wood <scottwood@freescale.com>
18997 Date:   Wed Jun 24 17:23:49 2009 -0500
18999     nand_spl: Fix cmd_ctrl usage in nand_boot.c.
19001     When adding large page NAND support to this file, I had a misunderstanding
19002     about the exact semantics of NAND_CTRL_CHANGE (which isn't documented
19003     anywhere I can find) -- it is apparently just a hint to drivers,
19004     which aren't required to preserve the old value for subsequent
19005     non-"change" invocations.
19007     This change makes nand_boot.c no longer assume this.  Note that this
19008     happened to work by chance with some NAND drivers, which don't preserve
19009     the value, but treat 0 equivalently to NAND_CTRL_ALE.
19011     I don't have hardware to test this, so any testing is appreciated.
19013     Signed-off-by: Scott Wood <scottwood@freescale.com>
19015 commit 98713d2663d5d30dde74f48f547114a2bfd9d463
19016 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
19017 Date:   Thu Jun 18 18:41:03 2009 +0100
19019     Bug-fix in drivers mtd nand Makefile
19021     The S3C2410 NAND driver source file is included in the makefile instead of
19022     the object file.
19024     Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
19025     Signed-off-by: Scott Wood <scottwood@freescale.com>
19027 commit b74ab737369bbbe66c15cbe6c0d0b6a351b00c96
19028 Author: Guennadi Liakhovetski <lg@denx.de>
19029 Date:   Mon May 18 16:07:22 2009 +0200
19031     nand_spl: read environment early, when booting from NAND using nand_spl
19033     Currently, when booting from NAND using nand_spl, in the beginning the default
19034     environment is used until later in boot process the dynamic environment is read
19035     out. This way environment variables that must be interpreted early, like the
19036     baudrate or "silent", cannot be modified dynamically and remain at their
19037     default values. Fix this problem by reading out main and redundand (if used)
19038     copies of the environment in the nand_spl code.
19040     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19041     Signed-off-by: Scott Wood <scottwood@freescale.com>
19043 commit 378adfcdf4bbd77ee4cbc3276d4733e218308a21
19044 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19045 Date:   Sat May 16 14:27:40 2009 +0200
19047     mtd: nand: use loff_t for offset
19049     nand_util currently uses size_t which is arch dependent and not always a
19050     unsigned long.  Now use loff_t, as does the linux mtd layer.
19052     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19053     Signed-off-by: Scott Wood <scottwood@freescale.com>
19055 commit 8360b66bac9567701027a0087274d0c9b2fe8d6b
19056 Author: Wolfgang Denk <wd@denx.de>
19057 Date:   Sun May 24 17:34:33 2009 +0200
19059     nand/onenand: Fix missing argument checking for "markbad" command
19061     The "nand markbad" and "onenand markbad" commands did not check if an
19062     argument was passed; if this was forgotten, no error was raised but
19063     block 0 was marked as bad.
19065     While fixing this bug, clean up the code a bit and allow to pass more
19066     than one block address, thus allowing to mark several blocks as bad
19067     in a single command invocation.
19069     Signed-off-by: Wolfgang Denk <wd@denx.de>
19070     Signed-off-by: Scott Wood <scottwood@freescale.com>
19072 commit cd84423a09f3a08029fe41c1db96168debd0b51f
19073 Author: Mike Frysinger <vapier@gentoo.org>
19074 Date:   Mon May 25 22:42:28 2009 -0400
19076     mtd: nand: new base driver for memory mapped nand devices
19078     The BF537-STAMP Blackfin board had a driver for working with NAND devices
19079     that are simply memory mapped.  Since there is nothing Blackfin specific
19080     about this, generalize the driver a bit so that everyone can leverage it.
19082     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19083     Signed-off-by: Scott Wood <scottwood@freescale.com>
19085 commit d27bc728cf35e7d7996fbd77154335e66615b213
19086 Author: Guennadi Liakhovetski <lg@denx.de>
19087 Date:   Mon May 18 16:06:45 2009 +0200
19089     env_nand: remove unused variable.
19091     Remove an unused "total" variable in multiple functions.
19093     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19094     Signed-off-by: Scott Wood <scottwood@freescale.com>
19096 commit 154b5484ac7dcbcd0fb5ba388d930b02f87fa302
19097 Author: David Brownell <dbrownell@users.sourceforge.net>
19098 Date:   Sun May 10 15:43:01 2009 -0700
19100     davinci_nand chipselect/init cleanup
19102     Update chipselect handling in davinci_nand.c so that it can
19103     handle 2 GByte chips the same way Linux does:  as one device,
19104     even though it has two halves with independent chip selects.
19105     For such chips the "nand info" command reports:
19107       Device 0: 2x nand0, sector size 128 KiB
19109     Switch to use the default chipselect function unless the board
19110     really needs its own.  The logic for the Sonata board moves out
19111     of the driver into board-specific code.  (Which doesn't affect
19112     current build breakage if its NAND support is enabled...)
19114     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
19115     Signed-off-by: Scott Wood <scottwood@freescale.com>
19117 commit 496863b2440dd7cd69a1ad2443a9badd5f8968d1
19118 Author: Sandeep Paulraj <s-paulraj@ti.com>
19119 Date:   Sat May 9 12:35:20 2009 -0400
19121     NAND DaVinci: Update to ALE/CLE Mask values
19123     All DaVinci SOC's use a CLE mask of 0x10 and an ALE mask of 0x8
19124     except the DM646x. This was decided by the design team driving the design.
19125     This patch updates the CLE and ALE values for DM646x.
19126     Updated patches for DM646x will be sent shortly.
19127     This applies to u-boot-nand-flash git
19129     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
19130     Signed-off-by: Scott Wood <scottwood@freescale.com>
19132 commit 0c1684437ef810c503df29e8d73f63191aa63862
19133 Author: Sandeep Paulraj <s-paulraj@ti.com>
19134 Date:   Wed Apr 29 09:47:09 2009 -0400
19136     ARM DaVinci: Changing ALE Mask Value
19138     The ALE mask used by DaVinci SOCs is wrong. The patch changes the mask value
19139     from '0xa' to '0x8'. This is the mask we use for all TI releases.
19141     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
19142     Signed-off-by: Scott Wood <scottwood@freescale.com>
19144 commit 6e29ed8e576a6900c5d8dcde36b423ac576894dc
19145 Author: David Brownell <dbrownell@users.sourceforge.net>
19146 Date:   Tue Apr 28 13:19:53 2009 -0700
19148     davinci_nand: cleanup II (CONFIG_SYS_DAVINCI_BROKEN_ECC)
19150     Remove CONFIG_SYS_DAVINCI_BROKEN_ECC option.  It's not just nasty;
19151     it's also unused by any current boards, and doesn't even match the
19152     main U-Boot distributions from TI (which use soft ECC, or 4-bit ECC
19153     on newer chips that support it).
19155     DaVinci GIT kernels since 2.6.24, and mainline Linux since 2.6.30,
19156     match non-BROKEN code paths for 1-bit HW ECC.  The BROKEN code paths
19157     do seem to partially match what MontaVista/TI kernels (4.0/2.6.10,
19158     and 5.0/2.6.18) do ... but only for small pages.  Large page support
19159     is really broken (and it's unclear just what software it was trying
19160     to match!), and the ECC layout was making three more bytes available
19161     for use by filesystem (or whatever) code.
19163     Since this option itself seems broken, remove it.  Add a comment
19164     about the MV/TI compat issue, and the most straightforward way to
19165     address it (should someone really need to solve it).
19167     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
19168     Signed-off-by: Scott Wood <scottwood@freescale.com>
19170 commit fcb774777562bb7bcdc53c608d0e6bae906ce0f6
19171 Author: David Brownell <dbrownell@users.sourceforge.net>
19172 Date:   Tue Apr 28 13:19:50 2009 -0700
19174     davinci_nand: cleanup I (minor)
19176     Minor cleanup for DaVinci NAND code:
19178      - Use I/O addresses from nand_chip; CONFIG_SYS_NAND_BASE won't
19179        be defined when there are multiple chipselect lines in use
19180        (as with common 2 GByte chips).
19182      - Cleanup handling of EMIF control registers
19183         * Only need one pointer pointing to them
19184         * Remove incorrect and unused struct supersetting them
19186      - Use the standard waitfunc; we don't need a custom version
19188      - Partial legacy cleanup:
19189         * Don't initialize every board like it's a DM6446 EVM
19190         * #ifdef a bit more code for BROKEN_ECC
19192     Sanity checked with small page NAND on dm355 and dm6446 EVMs;
19193     and large page on dm355 EVM (packaged as two devices, not one).
19195     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
19196     Signed-off-by: Scott Wood <scottwood@freescale.com>
19198 commit 8e5e9b940cdede0debe528cdd7edccccbb3ebf2a
19199 Author: Wolfgang Denk <wd@denx.de>
19200 Date:   Tue Jul 7 22:35:02 2009 +0200
19202     Coding style cleanup; update CHANGELOG
19204     Signed-off-by: Wolfgang Denk <wd@denx.de>
19206 commit d318d0c44d8e91e937c4dad0c5b1d2f6bb9d9fd8
19207 Author: Stefan Roese <sr@denx.de>
19208 Date:   Mon Jun 29 13:30:50 2009 +0200
19210     UBI: Fix build problem noticed on Apollon (arm/testing repo)
19212     This patch fixes a build problem noticed on Apollon by using
19213     mtd_dev_by_eb() instead of "/" as done in the Linux UBI version.
19214     So this brings the U-Boot UBI version more in sync with the Linux
19215     version again.
19217     Signed-off-by: Stefan Roese <sr@denx.de>
19219 commit 2efee52b09657e9353655b9dae9e1d1a67a2abe4
19220 Author: Prafulla Wadaskar <prafulla@marvell.com>
19221 Date:   Mon Jul 6 20:29:15 2009 +0530
19223     sf: Macronix additional chips supported
19225     new chips supported:-
19226     MX25L1605D, MX25L3205D, MX25L6405D, MX25L12855E
19227     out of which MX25L6405D and MX25L12855E tested on Kirkwood platforms
19229     Modified the Macronix flash support to use 2 bytes of device id instead of 1
19230     This was required to support MX25L12855E
19232     Signed-off-by: Piyush Shah <spiyush@marvell.com>
19233     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
19234     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19236 commit dd54126715b89ed0c43322aa78b0dad306f043b6
19237 Author: Mike Frysinger <vapier@gentoo.org>
19238 Date:   Fri Jun 19 03:27:28 2009 -0400
19240     sf: sst: add sst25vf###b ids
19242     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19244 commit 7d907f0ea993b179a197d8db2a36f122bc673c2d
19245 Author: Mike Frysinger <vapier@gentoo.org>
19246 Date:   Fri Jun 19 03:20:06 2009 -0400
19248     sf: sst: fix sector size
19250     Looks like when I was encoding the sector sizes, I forgot to divide by 8
19251     (due to the stupid marketing driven process that declares all sizes in
19252     useless megabits and not megabytes).
19254     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19256 commit ceb70b466e75ceb1a621b6163f7e31116bfc8094
19257 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19258 Date:   Sun Jul 5 01:06:06 2009 +0200
19260     nhk8815: fix MAKEALL
19262     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19264 commit d08e5ca301b69ab77ecdd34e2b06aee30d6057d1
19265 Author: Magnus Lilja <lilja.magnus@gmail.com>
19266 Date:   Sat Jul 4 10:31:24 2009 +0200
19268     MX31: Add NAND SPL boot support to i.MX31 PDK board.
19270     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
19272 commit 78eabb90b793fafe875a7469526d1715fa56cbb4
19273 Author: Prafulla Wadaskar <prafulla@marvell.com>
19274 Date:   Mon Jun 29 20:55:54 2009 +0530
19276     arm: Kirkwood: arch specific updated for ehci-Kirkwood driver support
19278     This patch abstracts Kirkwood arch specific changes to support ehci-kirkwood driver
19280     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
19282 commit 095a460b49022e64df76134300643606e3acb4e9
19283 Author: Alessandro Rubini <rubini@unipv.it>
19284 Date:   Mon Jun 29 10:52:37 2009 +0200
19286     arm nomadik: use 1000 as HZ value and rewrite timer code
19288     This sets CONFIG_SYS_HZ to 1000 as required, and completely rewrites
19289     timer code, which is now both correct and much smaller.  Unused
19290     functions like udelay_masked() have been removed as no driver uses
19291     them, even the ones that are not currently active for this board.
19292     mtu.h is copied literally from the kernel sources.
19294     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
19295     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
19296     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19298 commit f7aa59b29a451cc502078a9e4ba32345a4250c05
19299 Author: Alessandro Rubini <rubini@unipv.it>
19300 Date:   Mon Jun 22 09:18:57 2009 +0200
19302     arm nomadik: allow Nand and OneNand to coexists
19304     The evaluation kit has both Nand and OneNand, both drivers are there
19305     and the two configurations only select a different default for the
19306     jffs partition. This adds the OneNand driver and cleans up storage.
19308     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
19309     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
19311 commit fd14c41a861cd38ee2fe3abd61d59b57b4eb23c9
19312 Author: Alessandro Rubini <rubini@unipv.it>
19313 Date:   Mon Jun 22 09:18:47 2009 +0200
19315     arm nomadik: cleanup reset
19317     There is only one public release of the Nomadik chip, so the ifdef
19318     in reset code as well as a define in the config file are not needed
19320     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
19321     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
19323 commit ee1363f2da3996bafdecdd8f4e48862ebff3f271
19324 Author: Alessandro Rubini <rubini@unipv.it>
19325 Date:   Mon Jun 22 09:18:37 2009 +0200
19327     arm nomadik: rename board to nhk8815
19329     This is an error in my side in the initial submission: nobody
19330     calls it ""nmdk8815", it's "nomadik hardware kit", nhk8815, instead.
19332     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
19333     Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
19335 commit 040f8f63e922bbfb8ba0958bf637f11a917f5c38
19336 Author: Stefano Babic <sbabic@denx.de>
19337 Date:   Wed Jul 1 20:40:41 2009 +0200
19339     xscale: add support for the polaris board
19341     The Polaris board is based on the TrizepsIV module of
19342     Keith & Koep (http://www.keith-koep.com).
19344     Signed-off-by: Stefano Babic <sbabic@denx.de>
19346 commit 88bd97501314683b87f3f1edcf55b347c041b722
19347 Author: Stefano Babic <sbabic@denx.de>
19348 Date:   Wed Jul 1 04:33:56 2009 +0200
19350     xscale: fix USB initialization for Trizepsiv module
19352     Due to change in the usb_board_init() prototype, the USB for
19353     the TrizepsIV was not correctly initialized.
19354     Removed dummy print from usb_board_stop().
19356     Signed-off-by: Stefano Babic <sbabic@denx.de>
19358 commit 0b785ddd60120cfb74d18e58c56054238219f6db
19359 Author: Prafulla Wadaskar <prafulla@marvell.com>
19360 Date:   Wed Jul 1 20:34:51 2009 +0200
19362     net: merge bugfix: Marvell Kirkwood gigabit ethernet driver
19364     This patch looks okay on u-boot-net.git/next branch
19365     but when it was merged to u-boot.git/master the last line is missing
19367     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
19368     Acked-by: Ben Warren <biggerbadderben@gmail.com>
19370 commit 33b1d3f43a16fbb79004075ce89ae4e618b288a2
19371 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
19372 Date:   Tue Jun 30 21:03:37 2009 +0200
19374     at91: Add esd gmbh MEESC board support
19376     This patch adds support for esd gmbh MEESC board.
19377     The MEESC is based on an Atmel AT91SAM9263 SoC.
19379     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
19381 commit 21761540b43c7086c75ee9afb412da1e5ddde2e9
19382 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19383 Date:   Tue Jun 30 21:03:35 2009 +0200
19385     ARM: Update mach-types
19387     update against linux v2.6.30
19389     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19391 commit 45627fce18139a74e0755124d27376b520db156c
19392 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
19393 Date:   Tue Jun 30 23:03:33 2009 +0200
19395     at91: Add CAN init function
19397     To enable CAN init, CONFIG_CAN has to be defined in the board config file
19398     and at91_can_hw_init() has to be called in the board specific code.
19400     CAN is available on AT91SAM9263 and AT91CAP9 SoC.
19402     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
19404 commit 2e23008e5dbde7fe4c4758bee5a393e1db796cdf
19405 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
19406 Date:   Tue Jun 30 23:03:31 2009 +0200
19408     arm: Kirkwood: Correct header define
19410     Correct define typo (. -> ,)
19412     Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
19414 commit 8449f287f5c53d59db13c3c512e6bd1750b692d1
19415 Author: Magnus Lilja <lilja.magnus@gmail.com>
19416 Date:   Wed Jul 1 01:07:55 2009 +0200
19418     MX31: Add basic support for Freescale i.MX31 PDK board.
19420     Add support for Freescale's i.MX31 PDK board (a.k.a. 3 stack board).
19422     This patch assumes that some other program performs the actual
19423     NAND boot.
19425     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
19426     Acked-by: Fabio Estevam <fabioestevam@yahoo.com>
19427     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19429 commit 8d460a573e2a2ac4834636903865a0428ad0e629
19430 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19431 Date:   Tue Jun 23 00:12:01 2009 +0200
19433     S3C24x0: extract interrupts from timer
19435     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19437 commit c8badbe500a752f42049e51042767ee62ea714e0
19438 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19439 Date:   Sun Jun 28 14:14:21 2009 +0200
19441     dm355/pm9261: add missing CONFIG_NET_MULTI
19443     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19445 commit 798bf9a9ade1cfbe85a16d180cad720927d8e10a
19446 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19447 Date:   Tue Jun 23 00:12:01 2009 +0200
19449     arm920t/interrupts: Move conditional compilation to Makefile
19451     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19453 commit 06e758e75c79ce8761866bf8165c443584a20893
19454 Author: Kim, Heung Jun <riverful@gmail.com>
19455 Date:   Sat Jun 20 11:02:17 2009 +0200
19457     move L2 cache enable/disable function to cache.c in the omap3 SoC directory
19459     Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
19460     CC: Dirk Behme <dirk.behme@googlemail.com>
19461     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19463 commit d583ef5147066d3609de21f3beebbab99a19bad4
19464 Author: Thomas Lange <thomas@corelatus.se>
19465 Date:   Sat Jun 20 11:02:17 2009 +0200
19467     ARM DaVinci: EMIF settings
19469     NAND module should not modify EMIF registers unrelated to CS2
19470     that is used for NAND, i.e. do not modify EWAIT config register
19471     or registers for other Chip Selects.
19473     Without this patch, EMIF configurations made in board_init()
19474     will be invalidated.
19476     Signed-off-by: Thomas Lange <thomas@corelatus.se>
19478 commit 2600b8571a26c10c1c43401d7af38e2333cc5381
19479 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19480 Date:   Sat Jun 20 11:02:17 2009 +0200
19482     versatile: config coding style cleanup
19484     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19485     Cc: Peter Pearse <peter.pearse@arm.com>
19487 commit 4efb77d41f9c5d93f0f92dda60e742023fa03c72
19488 Author: Prafulla Wadaskar <prafulla@marvell.com>
19489 Date:   Sat Jun 20 11:01:53 2009 +0200
19491     arm: Kirkwood: Basic SOCs support
19493     Kirkwood family controllers are highly integrated SOCs
19494     based on Feroceon-88FR131/Sheeva-88SV131/arm926ejs cpu core.
19496     SOC versions supported:-
19497     1) 88F6281-A0       define CONFIG_KW88F6281_A0
19498     2) 88F6192-A0       define CONFIG_KW88F6192_A0
19500     Other supported features:-
19501     1) get_random_hex() fucntion
19502     2) PCI Express port initialization
19503     3) NS16550 driver support
19505     Contributors:
19506     Yotam Admon <yotam@marvell.com>
19507     Michael Blostein <michaelbl@marvell.com
19509     Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
19510     Acked-by: Stefan Rose <sr@denx.de>
19511     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
19513 commit 5c3d5817e5e68b828c165c501c215e793dc63aac
19514 Author: Prafulla Wadaskar <prafulla@marvell.com>
19515 Date:   Sat Jun 20 11:01:52 2009 +0200
19517     arm: generic cache.h for ARM architectures
19519     This patch is required for Kirkwood SoC support
19520     may be used by other ARM architectures
19522     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
19524 commit 9c8c706c92e53433a871a563946c38075d76504d
19525 Author: Matthias Ludwig <mludwig@ultratronik.de>
19526 Date:   Sat Jun 20 11:01:50 2009 +0200
19528     OMAP3EVM: fix typo. replace CS6 by CS5, no functionality change
19530     Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
19532 commit 0aafde1dc76d6d65d6be10bf499ec86d9ffee8b9
19533 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
19534 Date:   Wed Jun 24 08:32:09 2009 +0200
19536     at91sam9260/9263: add back up for the rst(reset controller).
19538     On the boards at91sam9260ek, at91sam9263ek and afed9260, the rstc register was
19539     set to 0 after being set to 500 ms for the PHY reset.
19540     Do backup the old reset length and restore it after the MACB initialisation.
19542     Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
19543     Signed-off-by: Stelian Pop <stelian@popies.net>
19545 commit afb0b1315c048ce2b1f35f0183b8b118ad0c14e1
19546 Author: Kumar Gala <galak@kernel.crashing.org>
19547 Date:   Fri Jul 3 12:45:44 2009 -0500
19549     fsl: Fix compiler warnings from gcc-4.4 in sys_eeprom code
19551     sys_eeprom.c: In function 'do_mac':
19552     sys_eeprom.c:323: warning: dereferencing type-punned pointer will break strict-aliasing rules
19553     sys_eeprom.c: In function 'mac_read_from_eeprom':
19554     sys_eeprom.c:395: warning: dereferencing type-punned pointer will break strict-aliasing rules
19556     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19558 commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
19559 Author: Peter Tyser <ptyser@xes-inc.com>
19560 Date:   Tue Jun 30 17:15:51 2009 -0500
19562     83xx: Add support for fsl_dma driver
19564     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19565     Reviewed-by: Ira W. Snyder <iws@ovro.caltech.edu>
19566     Tested-by: Ira W. Snyder <iws@ovro.caltech.edu>
19567     Acked-by: Kim Phillips <kim.phillips@freescale.com>
19568     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19570 commit 9adda5459ca62120c0c50b82b766fe1cf6925bbf
19571 Author: Peter Tyser <ptyser@xes-inc.com>
19572 Date:   Tue Jun 30 17:15:50 2009 -0500
19574     83xx: Replace CONFIG_ECC_INIT_VIA_DDRC references
19576     Update 83xx architecture's CONFIG_ECC_INIT_VIA_DDRC references to
19577     CONFIG_ECC_INIT_VIA_DDRCONTROLLER, which other Freescale architectures
19578     use
19580     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19581     Acked-by: Kim Phillips <kim.phillips@freescale.com>
19582     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19584 commit 039594a4301dadceb267db5e8b9c8c78b1bb86b5
19585 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
19586 Date:   Thu Jul 2 16:15:01 2009 +0530
19588     8xxx: Second UART port added for MPC85xx, MPC83xx, MPC86xx processors
19590     Defining the next two configs allows to switch the serial port from the
19591     console using the setenv stdin and stdout
19592       1. #define CONFIG_SERIAL_MULTI 1 /* Enable both serial ports */
19593       2. #define CONFIG_SYS_CONSOLE_IS_IN_ENV /* determine from environment */
19595     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
19596     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
19597     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19599 commit 546b1032907df70f2dd0f98f3ad09885a88411e5
19600 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
19601 Date:   Thu Jul 2 16:14:40 2009 +0530
19603     85xx: Adds GPIO registers to MPC85xx Memory Map.
19605     Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
19606     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19608 commit 5da6f806b400372b8a0664f3282c9e83a402eb66
19609 Author: Peter Tyser <ptyser@xes-inc.com>
19610 Date:   Tue Jun 30 17:26:01 2009 -0500
19612     86xx: XPedite5170 board support
19614     Initial support for Extreme Engineering Solutions XPedite5170 -
19615     a MPC8640-based 3U VPX single board computer with a PMC/XMC
19616     site.
19618     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19619     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19621 commit e66f38da8434425aca8df08d06d9ef41b3478d3b
19622 Author: Timur Tabi <timur@freescale.com>
19623 Date:   Wed Jul 1 16:51:59 2009 -0500
19625     fsl_ddr: Fix DDR3 calculation of rank density with 8GB or more
19627     The calculate for rank density in compute_ranksize() for DDR3 used all
19628     integers for the expression, so the result was also a 32-bit integer, even
19629     though the 'bsize' variable is a u64.  Fix the expression to calculate a
19630     true 64-bit value.
19632     Signed-off-by: Timur Tabi <timur@freescale.com>
19633     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19635 commit 6af015b86b86d94de7ca1b23a3890bc93a50c2ab
19636 Author: Peter Tyser <ptyser@xes-inc.com>
19637 Date:   Tue Jun 30 17:15:49 2009 -0500
19639     fsl_dma: Make DMA transactions snoopable
19641     Make DMA transactions snoopable so that CPUs can keep caches up-to-date.
19642     This allows dma transactions to be used for operations such as memory
19643     copies without any additional cache control operations.
19645     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19646     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19648 commit 0d595f76bc9c7c8dff5bd31dffed87a840a03c56
19649 Author: Peter Tyser <ptyser@xes-inc.com>
19650 Date:   Tue Jun 30 17:15:48 2009 -0500
19652     fsl_dma: Break out common memory initialization function
19654     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19655     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19657 commit 79f4333ceb059049b3ee560167d6cbaec493695f
19658 Author: Peter Tyser <ptyser@xes-inc.com>
19659 Date:   Tue Jun 30 17:15:47 2009 -0500
19661     8xxx: Move dma_init() call to common code
19663     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19664     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19666 commit 191c7118592cd182f2dc7f46b4f72d9bed0e2c76
19667 Author: Peter Tyser <ptyser@xes-inc.com>
19668 Date:   Tue Jun 30 17:15:46 2009 -0500
19670     fsl_dma: Move dma function prototypes to common header file
19672     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19673     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19675 commit 7892f619d40f4196e41e7114c5dfee9fad0f572f
19676 Author: Peter Tyser <ptyser@xes-inc.com>
19677 Date:   Tue Jun 30 17:15:45 2009 -0500
19679     8xxx: Rename dma_xfer() to dmacpy()
19681     Also update dmacpy()'s argument order to match memcpy's and use
19682     phys_addr_t/phy_size_t for address/size arguments
19684     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19685     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19687 commit 484919cf3351212ebf748b9b13ece1ddaf7e7d1c
19688 Author: Peter Tyser <ptyser@xes-inc.com>
19689 Date:   Tue Jun 30 17:15:44 2009 -0500
19691     fsl_dma: Fix Channel Start bug in dma_check()
19693     The Channel Start (CS) bit in the Mode Register (MR) should actually be
19694     cleared as the comment in the code suggests.  Previously, CS was being
19695     set, not cleared.
19697     Assuming normal operation of the DMA engine, this change shouldn't have
19698     any real affect.
19700     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19701     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19703 commit 51402ac12be9a0025f16db51fbde7c050a54e5fe
19704 Author: Peter Tyser <ptyser@xes-inc.com>
19705 Date:   Tue Jun 30 17:15:43 2009 -0500
19707     fsl_dma: Add support for arbitrarily large transfers
19709     Support DMA transfers larger than the DMA controller's limit of
19710     (2 ^ 26 - 1) bytes
19712     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19713     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19715 commit a730393a362741c318b21771b8d7b2647e546c3e
19716 Author: Peter Tyser <ptyser@xes-inc.com>
19717 Date:   Tue Jun 30 17:15:42 2009 -0500
19719     fsl_dma: Use proper I/O access functions
19721     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19722     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19724 commit 9c06071a6077ba95e9d43226156e39567d5d064a
19725 Author: Peter Tyser <ptyser@xes-inc.com>
19726 Date:   Tue Jun 30 17:15:41 2009 -0500
19728     fsl_dma: Add bitfield definitions for common registers
19730     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19731     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19733 commit 017f11f68ef543e866be033bcb7b8058a8a380d8
19734 Author: Peter Tyser <ptyser@xes-inc.com>
19735 Date:   Tue Jun 30 17:15:40 2009 -0500
19737     8xxx: Break out DMA code to a common file
19739     DMA support is now enabled via the CONFIG_FSL_DMA define instead of the
19740     previous CONFIG_DDR_ECC
19742     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19743     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19745 commit 6bbced671719518d0e28ff422623cd7ce396cbda
19746 Author: Mark Jackson <mpfj-list@mimc.co.uk>
19747 Date:   Mon Jun 29 15:59:10 2009 +0100
19749     Atmel LCD driver GUARDTIME fix
19751     This patch allows the guard time parameter to be set in
19752     the Atmel LCDC driver.
19754     By default, the previous value of 1 is used, unless the
19755     setting is defined elsewhere.
19757     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
19759 commit 29c35182462feea09f322e51913759a53359a3e0
19760 Author: Roy Zang <tie-fei.zang@freescale.com>
19761 Date:   Tue Jun 30 13:56:23 2009 +0800
19763     85xx: Add pci e1000 Ethernet support for P2020 board
19765     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
19766     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19768 commit 156984a3611c28093919d3e3c042f722b5548253
19769 Author: Kumar Gala <galak@kernel.crashing.org>
19770 Date:   Thu Jun 18 08:39:42 2009 -0500
19772     8xxx: Fix PCI bus address setup for 36-bit configs
19774     We want the outbound PCI memory map to end at the 4G boundary so we
19775     can maximize the amount of space available for inbound mappings if
19776     we have large amounts of memory.
19778     This matches the device tree setup in the kernel for the 36-bit physical
19779     configs for the platforms that have one (MPC8641 HPCN & MPC8572 DS).
19781     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19783 commit 480f61790565d77432b70b4016b73f2ae27d530f
19784 Author: Kumar Gala <galak@kernel.crashing.org>
19785 Date:   Thu Jun 18 08:23:01 2009 -0500
19787     86xx: Add CPU_TYPE_ENTRY support
19789     Unify with 83xx and 85xx and use CPU_TYPE_ENTRY.  We are going to use
19790     this to convey the # of cores and DDR width in the near future so its
19791     good to keep in sync.
19793     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19795 commit 98ab14e858bf60306d0aa3f0df5a7a5f88264aff
19796 Author: Peter Meerwald <pmeerw@pmeerw.net>
19797 Date:   Mon Jun 29 15:48:33 2009 -0400
19799     Blackfin: TWI/I2C: fix pure writes
19801     If doing a pure write with register address and data (not a read/write
19802     combo transfer), we don't set the initial transfer length properly which
19803     ends up causing only the register address to be transferred.
19805     While we're here, fix the i2c_write() parameter description of the buffer.
19807     Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
19808     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19810 commit 5710de45808eb8f1cc34b51dc3e67e2422113249
19811 Author: Prafulla Wadaskar <prafulla@marvell.com>
19812 Date:   Sat May 30 01:13:33 2009 +0530
19814     spi: Add Marvell Kirkwood SPI driver
19816     This patch adds a SPI driver for the Marvell Kirkwood SoC's.
19818     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
19820 commit 6bde171a4c4116cee179167cb65335a28f99932d
19821 Author: Minkyu Kang <mk7.kang@samsung.com>
19822 Date:   Thu Jun 25 19:21:33 2009 +0900
19824     s3c64xx: move the reset_cpu function
19826     Because of the reset_cpu is soc specific, should be move to soc
19827     And read reset value from SYS_ID register instead of hard code
19828     this patch also supports s3c6410
19830     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
19832 commit 576afd4faeba1519bcb8c0083c3e4d45e5643a48
19833 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19834 Date:   Sun May 17 00:58:37 2009 +0200
19836     integrator: merge integratorap and integratorcp
19838     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19839     Acked-by: Peter Pearse <peter.pearse@arm.com>
19841 commit 46937b27427688a56bf7f5944a92d962dc43c3fa
19842 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19843 Date:   Sun May 17 00:58:36 2009 +0200
19845     integratorap/cp: use cfi driver
19847     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19848     Acked-by: Peter Pearse <peter.pearse@arm.com>
19850 commit de7a01abd8aeb167946f391327e1e0d1e01f90c9
19851 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19852 Date:   Sun May 17 00:58:36 2009 +0200
19854     integratorap/cp/versatile: remove non used functions
19856     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19857     Acked-by: Peter Pearse <peter.pearse@arm.com>
19859 commit f54851a6e3844b7e01581b5a9681f294118b7529
19860 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19861 Date:   Sun May 17 00:58:36 2009 +0200
19863     integratorcp: split timer support
19865     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19866     Acked-by: Peter Pearse <peter.pearse@arm.com>
19868 commit 2bcef0723ea11c4e9bfbcfff2a93ec2da520b5f1
19869 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19870 Date:   Sun May 17 00:58:36 2009 +0200
19872     integratorap: split timer support
19874     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19875     Acked-by: Peter Pearse <peter.pearse@arm.com>
19877 commit 86baa085c52a7f3377a88074679c5aca9b9e4d38
19878 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19879 Date:   Sun May 17 00:58:36 2009 +0200
19881     integratorap: split pci support
19883     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19884     Acked-by: Peter Pearse <peter.pearse@arm.com>
19886 commit 379e9fc0a319b8f6ae16d763590bf023f3afb87c
19887 Author: Ilya Yanok <yanok@emcraft.com>
19888 Date:   Mon Jun 8 04:12:50 2009 +0400
19890     arm: add support for CONFIG_GENERIC_MMC
19892     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19894 commit 47d19da4d3f9ac4787abe9dee32406478424be52
19895 Author: Ilya Yanok <yanok@emcraft.com>
19896 Date:   Mon Jun 8 04:12:46 2009 +0400
19898     serial_mx31: allow it to work with mx27 too and rename to serial_mxc
19900     UART hardware on i.MX27 is the same as on the i.MX31 so we just
19901     need to provide the driver with correct address of the registers.
19903     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19905 commit 1dc4da749dbde27ec862f5b65703e8e4541fbba3
19906 Author: Ilya Yanok <yanok@emcraft.com>
19907 Date:   Mon Jun 8 04:12:45 2009 +0400
19909     mx27: basic cpu support
19911     This patch adds generic code to support Freescale's i.MX27 SoCs.
19913     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19915 commit dd2f6965a6c71f6f711ec98827880152e022c236
19916 Author: Magnus Lilja <lilja.magnus@gmail.com>
19917 Date:   Sat Jun 13 20:50:03 2009 +0200
19919     i.MX31: Create a common device file.
19921     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
19923 commit 958f7da7887fea4a2091ae60944d62c1708c2c55
19924 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19925 Date:   Sat Jun 13 20:50:02 2009 +0200
19927     ARM: Add macros.h to be used in assembler file.
19929     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19931 commit 40c642bc19b9fa2906e3172487a522fee456340b
19932 Author: Magnus Lilja <lilja.magnus@gmail.com>
19933 Date:   Sat Jun 13 20:50:01 2009 +0200
19935     MX31: Add NAND SPL for i.MX31.
19937     This patch adds the NAND SPL framework needed to boot i.MX31 boards
19938     from NAND.
19940     It has been tested on a i.MX31 PDK board with large page NAND. Small
19941     page NANDs should work as well, but this has not been tested.
19943     Note: The i.MX31 NFC uses a non-standard layout for large page NANDs,
19944     whether this is compatible with a particular setup depends on how
19945     the NAND device is programmed by the flash programmer (e.g. JTAG
19946     debugger).
19948     The patch is based on the work by Maxim Artamonov.
19950     Signed-off-by: Maxim Artamonov <scn1874@yandex.ru>
19951     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
19953 commit df81238b3e27a791da996a9208402ac8f40b9862
19954 Author: Magnus Lilja <lilja.magnus@gmail.com>
19955 Date:   Sat Jun 13 20:50:00 2009 +0200
19957     ARM1136: Introduce CONFIG_PRELOADER macro.
19959     Currently CONFIG_ONENAND_IPL is used in a number of #ifdef's
19960     in start.S. In preparation for adding support for NAND SPL
19961     the macro CONFIG_PRELOADER is introducted and replaces the
19962     CONFIG_ONENAND_IPL in start.S.
19964     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
19966 commit 8096c51fd4e611ed666dbe77767e81af5d94fc7b
19967 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19968 Date:   Sat Jun 13 12:50:04 2009 +0200
19970     at91: unify nor boot support
19972     the lowlevel init sequence is the same so unify it
19974     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19976 commit 1b3b7c640d04df2ba9a9d947117d112a75fee7f4
19977 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19978 Date:   Sat Jun 13 12:48:36 2009 +0200
19980     at91sam9263ek: add nor flash support
19982     this will allow you to store use it for the env and to boot directly U-Boot from
19984     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19986 commit 329492329700812c6df275aa0fda09d609cd0fd4
19987 Author: Ilko Iliev <iliev@ronetix.at>
19988 Date:   Fri Jun 12 21:20:39 2009 +0200
19990     at91: add support for the PM9261 board of Ronetix GmbH
19992     The PM9261 board is based on the AT91SAM9261-EK board.
19994     Here is the page on Ronetix website:
19995     http://www.ronetix.at/starter_kit_9261.html
19997     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
19998     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20000 commit 01550a2b650fbabc03334f9eadcc6083601a2414
20001 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20002 Date:   Fri Jun 12 21:20:38 2009 +0200
20004     pm9263: use macro instead of hardcode value for the lowlevel_init
20006     optimize a few the RAM init
20008     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
20009     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20011 commit 7a11c7f9747240dc770954d320569596c0fbcb50
20012 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20013 Date:   Fri Jun 12 21:20:37 2009 +0200
20015     pm9263: lowlevel init update
20017     move PSRAM init to pm9263.c
20018     this will allow us after to make the nor lowlevel_init generic
20020     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20022 commit 3e88337b225bf796f6df21d0a7f591530e9d4ce0
20023 Author: Mike Frysinger <vapier@gentoo.org>
20024 Date:   Mon Jun 15 00:25:19 2009 -0400
20026     Blackfin: move ALL += u-boot.ldr to blackfin_config.mk
20028     The way the ALL variable is used allows for config.mk's to add more
20029     targets themselves without having to clutter up the top level Makefile.
20031     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20033 commit afac8b07172d7e4a65f86ce1ec4c783a6165ba1f
20034 Author: Mike Frysinger <vapier@gentoo.org>
20035 Date:   Sun Jun 14 22:29:35 2009 -0400
20037     Blackfin: fix SPI flash speed define name
20039     The SPI flash define is named CONFIG_SF_DEFAULT_SPEED, not
20040     CONFIG_SF_DEFAULT_HZ, so fix the typos in the Blackfin boards.
20042     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20044 commit 9ae55ccf601de7a5b75eb418f3fc3d5eca92c106
20045 Author: Mike Frysinger <vapier@gentoo.org>
20046 Date:   Sun Jun 14 22:26:31 2009 -0400
20048     Blackfin: enable -O2 in lib_generic/ for ADI/Bluetechnix boards
20050     Building the compression code in lib_generic/ with -O2 rather than -Os
20051     gives a nice speed boost without too much code size increase.
20053     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20055 commit fea63e2a44f0db51d2e39ee7793e8c6d7f3cf5d4
20056 Author: Mike Frysinger <vapier@gentoo.org>
20057 Date:   Sun Jun 14 21:23:27 2009 -0400
20059     Blackfin: bf548-ezkit: bump up monitor size
20061     The latest version of U-Boot got a bit fatter in the BSS section which
20062     caused overflows in the RAM region, so increase the monitor size.
20064     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20066 commit bc43a8d8994c2f0be29e09b13b15da7f79e2c081
20067 Author: Vivi Li <vivi.li@analog.com>
20068 Date:   Fri Jun 12 10:53:22 2009 +0000
20070     Blackfin: bf533-stamp/bf537-stamp: fix env settings for SPI flash
20072     The SPI flash layer is much stricter about sector usage than the eeprom
20073     layer we used to use, so update the env settings to better match the
20074     sector alignment of the flashes we use.
20076     Signed-off-by: Vivi Li <vivi.li@analog.com>
20077     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20079 commit 63cb0f4eb2d3cf15e7a1add19d1289f4ae75816c
20080 Author: Vivi Li <vivi.li@analog.com>
20081 Date:   Fri Jun 12 10:33:23 2009 +0000
20083     Blackfin: bump up default JTAG console timeout
20085     The debug tools that interface with the other side of the JTAG console
20086     got much slower when generalizing things, so bump up the default timeout
20087     value on the U-Boot side to cope.  Hopefully at some point we can improve
20088     the debug tools to speed things back up.
20090     Signed-off-by: Vivi Li <vivi.li@analog.com>
20091     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20093 commit c11ff779f4e0e0c7edc322e84dd229ad28709595
20094 Author: Mike Frysinger <vapier@gentoo.org>
20095 Date:   Mon Jun 1 19:08:33 2009 -0400
20097     Blackfin: add jtagconsole helper script
20099     This script is similar to the netconsole script, but instead works with
20100     the JTAG console device driver that exists on Blackfin parts.
20102     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20104 commit 60f61e6d7655400bb785a2ef637581679941f6d1
20105 Author: Remy Bohmer <linux@bohmer.net>
20106 Date:   Sat May 2 21:49:18 2009 +0200
20108     Convert DM9000 driver for CONFIG_NET_MULTI
20110     All drivers need to be converted to CONFIG_NET_MULTI.
20111     This patch converts the dm9000 driver.
20113     Signed-off-by: Thomas Smits <ts.smits@gmail.com>
20114     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20115     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20117 commit 9131589ada4dda0718604d0a425ca46e52775f6e
20118 Author: Prafulla Wadaskar <prafulla@marvell.com>
20119 Date:   Sun Jun 14 22:33:46 2009 +0530
20121     net: Add Marvell Kirkwood gigabit ethernet driver
20123     This patch adds a egiga driver for the Marvell Kirkwood SoC's.
20125     Contributors:
20126     Yotam Admon <yotam@marvell.com>
20127     Michael Blostein <michaelbl@marvell.com
20129     Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
20130     Acked-by: Stefan Rose <sr@denx.de>
20131     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
20132     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20134 commit 7835f4b94927ecb5affd99aad62592108db606ad
20135 Author: s-paulraj@ti.com <s-paulraj@ti.com>
20136 Date:   Tue May 12 11:45:34 2009 -0400
20138     DaVinci Network Driver Updates
20140     Different flavours of DaVinci SOC's have differences in their EMAC IP
20141     This patch does the following
20142     1) Updates base addresses for DM365
20143     2) Updates MDIO frequencies for DM365 and DM646x
20144     3) Update EMAC wrapper registers for DM365 and DM646x
20146     Patch applies to u-boot-net git. the EMAC driver itself
20147     will be updated shortly to add support for DM365 and DM646x
20149     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
20150     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20152 commit 44578bea14e49035331a8f0e000e935e0d830ff4
20153 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
20154 Date:   Tue May 26 08:29:29 2009 -0400
20156     Subject: [PATCH] [repost] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
20158      From 584b5fbd4abfc43f920cc1c329633e03816e28be Mon Sep 17 00:00:00 2001
20159     From: Richard Retanubun <RichardRetanubun@RuggedCom.com>
20160     Date: Wed, 20 May 2009 18:26:01 -0400
20161     Subject: [PATCH] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
20163     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
20164     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20166 commit c9a2aab1512fb2d132670fff9c27656d2eb949cd
20167 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
20168 Date:   Thu Jun 4 09:39:48 2009 +0200
20170     A VLAN tagged DHCP request/discover is 4 bytes short
20172     The problem is that BOOTP_SIZE uses ETHER_HDR_SIZE which is 14 bytes.
20173     If sending a VLAN tagged frame (when env variable vlan is set) this
20174     should be VLAN_ETHER_HDR_SIZE=18 which is what NetSetEther returns.
20176     Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
20177     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20179 commit 6e0d2fc7fe0dcfa2f51ab8931d706940ee364193
20180 Author: Ben Warren <biggerbadderben@gmail.com>
20181 Date:   Tue Apr 28 16:39:19 2009 -0700
20183     Remove support for non-CONFIG_NET_MULTI on PPC4xx EMAC
20185     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20187 commit 8453587ef9137daf98b7c9cf4f3b865f4039cea0
20188 Author: Ben Warren <biggerbadderben@gmail.com>
20189 Date:   Tue May 26 00:34:07 2009 -0700
20191     Switched davinci_emac Ethernet driver to use newer API
20193     Added CONFIG_NET_MULTI to all Davinci boards
20194     Removed all calls to Davinci network driver from board code
20195     Added cpu_eth_init() to cpu/arm926ejs/cpu.c
20197     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20199 commit 8cc13c13f1d154c8fa8fff56cea357ed38af76bf
20200 Author: Ben Warren <biggerbadderben@gmail.com>
20201 Date:   Mon Apr 27 23:19:10 2009 -0700
20203     Initial cleanup of Davinci Ethernet driver
20205      Removed pointless #ifdefs
20206      Moved functions around in file in preparation for switch to newer API
20208     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20210 commit 09cdd1b9b01450e91786d26ff3c866dc9c8d8d6b
20211 Author: Ben Warren <biggerbadderben@gmail.com>
20212 Date:   Tue May 26 00:17:59 2009 -0700
20214     Moved Davinci Ethernet driver to drivers/net
20216     This driver has been renamed davinci_emac.c
20218     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20220 commit 6f51deb7f298413cfcb0a36d24c97ef7dd69d48f
20221 Author: Prafulla Wadaskar <prafulla@marvell.com>
20222 Date:   Tue May 19 01:40:16 2009 +0530
20224     Marvell MV88E61XX Switch Driver support
20226     Chips supported:-
20227     1. 88E6161 6 port gbe swtich with 5 integrated PHYs
20228     2. 88E6165 6 port gbe swtich with 5 integrated PHYs
20229     2. 88E6132 3 port gbe swtich with 2 integrated PHYs
20230     Platform specific configuration supported for:-
20231     default or router port vlan configuration
20232     led_init configuration
20233     mdip/n polarity reversal configuration
20235     Note: This driver is supported and tested against
20236     kirkwood egiga interface
20238     Contributors:
20239     Yotam Admon <yotam@marvell.com>
20240     Michael Blostein <michaelbl@marvell.com
20242     Reviewed by: Ronen Shitrit <rshitrit@marvell.com>
20243     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
20244     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20246 commit 091dc9f6adaf572b067ae91af92c4e7db33d7903
20247 Author: Zach LeRoy <zleroy@xes-inc.com>
20248 Date:   Fri May 22 10:26:33 2009 -0500
20250     tsec: Add support for BCM5482S PHY
20252     Signed-off-by: Zach LeRoy <zleroy@xes-inc.com>
20253     Acked-by: Kumar Gala <galak@kernel.crashing.org>
20254     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20256 commit 9ff67e5e4c719556d57f136a6453f8e4798d85c0
20257 Author: Mike Frysinger <vapier@gentoo.org>
20258 Date:   Sun Jun 14 06:29:07 2009 -0400
20260     Blackfin: unify u-boot linker scripts
20262     All the Blackfin linker scripts were duplicated across the board dirs with
20263     no difference save from the semi-often used ENV_IS_EMBEDDED option.  So
20264     unify all of them in the lib_blackfin/ dir and for the few boards that
20265     need to embedded the environment directly, add a LDS_BOARD_TEXT define for
20266     them to customize via their board config file.  This is much simpler than
20267     forcing them to duplicate the rest of the linker script.
20269     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20271 commit f52efcae98cbb8a39f1d0535df8d9646a776af9e
20272 Author: Mike Frysinger <vapier@gentoo.org>
20273 Date:   Fri May 29 17:02:37 2009 -0400
20275     Blackfin: bf518f-ezbrd: enable SST SPI flash driver
20277     The BF51xF parts have an internal SST SPI flash, so make sure the driver is
20278     enabled by default so we can access it.
20280     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20282 commit f348ab85f741dc98b2d202c04b5f430eace94925
20283 Author: Mike Frysinger <vapier@gentoo.org>
20284 Date:   Fri Apr 24 17:22:40 2009 -0400
20286     Blackfin: convert specific pre/post config headers to common method
20288     The Blackfin port was using asm/blackfin-config-{pre,post}.h to setup
20289     common Blackfin board defines.  The common method now is to use config.h,
20290     so convert blackfin-config-post.h to that.  Rename the still Blackfin
20291     specific blackfin-config-pre.h to config-pre.h so the naming conventions
20292     at least line up.
20294     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20296 commit 7c7503ee6cd03c0f3b16e98d33d5aa23b30d65b1
20297 Author: Mike Frysinger <vapier@gentoo.org>
20298 Date:   Fri Apr 24 17:11:47 2009 -0400
20300     Blackfin: enable LZMA for all ADI boards
20302     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20304 commit 0e63dc0679451d48f8b727c543ce48b488f7a33f
20305 Author: Mike Frysinger <vapier@gentoo.org>
20306 Date:   Mon Apr 13 05:52:45 2009 -0400
20308     Blackfin: make default ADI env more flexible
20310     Allow boards to easily override the root= and default bootcmd, allow
20311     people to tweak the file used in default bootcmds at runtime via one env
20312     var, and add a stock nandboot command.
20314     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20316 commit 0f52b560f19623ec651f9b9b40405d138ec251d3
20317 Author: Hoan Hoang <hnhoan@i-syst.com>
20318 Date:   Sun Jan 18 22:44:17 2009 -0500
20320     Blackfin: ibf-dsp561: new board port
20322     Signed-off-by: Hoan Hoang <hnhoan@i-syst.com>
20323     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20325 commit 3088189a15d219c48fd7e71623ca4daa08b80b59
20326 Author: Mike Frysinger <vapier@gentoo.org>
20327 Date:   Sun Oct 12 23:28:33 2008 -0400
20329     Blackfin: blackstamp: new board port
20331     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20333 commit 59ac9729700db1d4446c1a6db3ffe38398b7abb2
20334 Author: Mike Frysinger <vapier@gentoo.org>
20335 Date:   Sun Oct 12 23:22:25 2008 -0400
20337     Blackfin: bf537-srv1: new board port
20339     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20341 commit d7fdc1410b5fa5ef623b35a283733b6bcee3753b
20342 Author: Mike Frysinger <vapier@gentoo.org>
20343 Date:   Sun Oct 12 23:16:52 2008 -0400
20345     Blackfin: bf537-minotaur: new board port
20347     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20349 commit cb4b5e874f3c9b882a6f4394bbebbbd91fd01bbf
20350 Author: Mike Frysinger <vapier@gentoo.org>
20351 Date:   Sun Oct 12 23:08:03 2008 -0400
20353     Blackfin: bf537-pnav: new board port
20355     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20357 commit 59e4be945b6469e31eee721e0bcdccf4940d75ac
20358 Author: Mike Frysinger <vapier@gentoo.org>
20359 Date:   Sun Oct 12 21:55:45 2008 -0400
20361     Blackfin: cm-bf527: new board port
20363     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20365 commit 8b219cf07c186cc9d97354cf4b14f24a53d193c5
20366 Author: Mike Frysinger <vapier@gentoo.org>
20367 Date:   Sun Oct 12 21:54:07 2008 -0400
20369     Blackfin: cm-bf548: new board port
20371     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20373 commit 9417d9a21384279308abe5b4dd8dfd418742484c
20374 Author: Mike Frysinger <vapier@gentoo.org>
20375 Date:   Sun Oct 12 21:49:28 2008 -0400
20377     Blackfin: tcm-bf537: new board port
20379     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20381 commit e548321af00e869af7194896576beb9b68457ff7
20382 Author: Mike Frysinger <vapier@gentoo.org>
20383 Date:   Sun Oct 12 21:45:05 2008 -0400
20385     Blackfin: cm-bf561: new board port
20387     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20389 commit 8a9bab08a6fe93e5f3bf57b90438f1d2a67fad3c
20390 Author: Mike Frysinger <vapier@gentoo.org>
20391 Date:   Sun Oct 12 21:41:06 2008 -0400
20393     Blackfin: cm-bf537e: new board port
20395     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20397 commit e82d8a1f028bedb12c4ab88a35a935010d92898c
20398 Author: Mike Frysinger <vapier@gentoo.org>
20399 Date:   Sun Oct 12 21:36:22 2008 -0400
20401     Blackfin: cm-bf533: new board port
20403     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20405 commit dd14af7640f7d48d8e9768eeeb09592e6f94ed38
20406 Author: Mike Frysinger <vapier@gentoo.org>
20407 Date:   Thu Nov 27 16:50:32 2008 -0500
20409     Blackfin: new spibootldr command
20411     Newer Blackfin parts can an on-chip ROM that can boot LDRs over SPI flashes,
20412     so add a new 'spibootldr' command to take advantage of it.
20414     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20416 commit 67c2829b646bb5b859088b36fbc89e971b9c1960
20417 Author: Mike Frysinger <vapier@gentoo.org>
20418 Date:   Mon Oct 6 04:42:33 2008 -0400
20420     Blackfin: support embedding the environment into loader files (LDRs)
20422     For the most part, the Blackfin processor boots files in the LDR format
20423     rather than binary/ELF files.  So we want to export the environment as a
20424     raw blob to the LDR utility so it can embed it at the right location.
20426     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20428 commit 31f30c9eb60d9ab0bd702e31f66345f99b34bdc6
20429 Author: Mike Frysinger <vapier@gentoo.org>
20430 Date:   Sun Jun 14 11:03:48 2009 -0400
20432     add %.c->%.i and %.c->%.s rules
20434     The Linux kernel has some helper rules which allow you to quickly produce
20435     some of the intermediary files from C source.  Specifically, you can
20436     create .i files which is the preprocessed output and you can create .s
20437     files which is the assembler output.  This is useful when you are trying
20438     to track down header/macro expansion errors or inline assembly errors.
20440     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20441     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20443 commit 6d1ce387874c1060f27656f70151a52c511cd0e3
20444 Author: Mike Frysinger <vapier@gentoo.org>
20445 Date:   Sat May 30 01:02:03 2009 -0400
20447     make sure toplevel $(SUBDIRS) is always declared
20449     The $(SUBDIRS) variable is only declared when U-Boot has been configured,
20450     but it gets used all the time.  In the non-configured case, it is used to
20451     generate a helpful error message, but it needs to be set properly for that
20452     to occur.
20454     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20456 commit 1260233982f7dfbdfd1adee12daa95a0c0e84a43
20457 Author: Grzegorz Bernacki <gjb@semihalf.com>
20458 Date:   Fri Jun 12 11:33:55 2009 +0200
20460     digsy mtc: Add description to GPIO initial configuration.
20462     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
20464 commit 12304871bc7839145f2b4238923e9023616d7399
20465 Author: Grzegorz Bernacki <gjb@semihalf.com>
20466 Date:   Fri Jun 12 11:33:54 2009 +0200
20468     digsy MTC: Add 'mtc' command.
20470     New command allows to:
20471          o check FW version
20472          o set LED status
20473          o set digital output status
20474          o get digital input status
20476     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
20478 commit f1f66edfc76f4a9f5b9f63972d90309784a8cae5
20479 Author: Grzegorz Bernacki <gjb@semihalf.com>
20480 Date:   Fri Jun 12 11:33:53 2009 +0200
20482     digsy MTC: Add SPI support.
20484     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
20486 commit 6325b7780dad8be26ba6fc25ef88ba338c50205b
20487 Author: Grzegorz Bernacki <gjb@semihalf.com>
20488 Date:   Fri Jun 12 11:33:52 2009 +0200
20490     mpc52xx: Add SPI driver.
20492     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
20494 commit 5ec5529b82f314ca2cf9c262cdfc985d5fc468a0
20495 Author: Mike Frysinger <vapier@gentoo.org>
20496 Date:   Sun Jun 14 09:33:00 2009 -0400
20498     allow boards to customize compiler options on a per-file/dir basis
20500     With our Blackfin boards, we like to build the compression routines with
20501     -O2 as our tests show a pretty good size/speed tradeoff.  For the rest of
20502     U-Boot though, we want to stick with the default -Os as that is mostly
20503     control code.  So in our case, we would add a line like so to the board
20504     specific config.mk file:
20505         CFLAGS_lib_generic += -O2
20507     Now all files under lib_generic/ will have -O2 appended to their build.
20509     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20510     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20512 commit 6b1f78ae6ad037382ad430b07064105c88f7ac02
20513 Author: Wolfgang Denk <wd@denx.de>
20514 Date:   Sun Jun 14 21:30:39 2009 +0200
20516     Prepare v2009.06
20518     Update CHANGELOG, fix minor coding stylke issue. Update Makefile.
20520     Signed-off-by: Wolfgang Denk <wd@denx.de>
20522 commit c3147c1762f8caf99649051116a2411bdf887c10
20523 Author: Wolfgang Denk <wd@denx.de>
20524 Date:   Sun Jun 14 20:31:36 2009 +0200
20526     Revert "SMC911x driver fixed for NFS boot"
20528     This reverts commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43,
20529     which causes compile warnings ("large integer implicitly truncated
20530     to unsigned type") on all systems that use this driver. The warning
20531     results from passing long constants (TX_CFG, RX_CFG) into
20532     smc911x_set_mac_csr() which is declared to accept "unsigned
20533     character" arguments only.
20535     Being close to a release, with nobody available to actually test the
20536     code or the suggested fixes, it seems better to revert the patch.
20538 commit 388517e4b745b00256c2fa201ce7bccb67b4f245
20539 Author: Peter Tyser <ptyser@xes-inc.com>
20540 Date:   Fri May 22 10:26:37 2009 -0500
20542     xes: Update Freescale clock code to work with 86xx processors
20544     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20545     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20547 commit 25623937bb81cae788d767e6c59a11c96fc82866
20548 Author: Peter Tyser <ptyser@xes-inc.com>
20549 Date:   Fri May 22 10:26:36 2009 -0500
20551     xes: Update Freescale DDR code to work with 86xx processors
20553     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20554     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20556 commit bef3013908bbc68f24084174a3ca86cc2a3eb986
20557 Author: Peter Tyser <ptyser@xes-inc.com>
20558 Date:   Fri May 22 10:26:35 2009 -0500
20560     xes: Update Freescale PCI code to work with 86xx processors
20562     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20563     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20565 commit 6442b71b522face775c1c31bd43121db3b4bf7d6
20566 Author: Peter Tyser <ptyser@xes-inc.com>
20567 Date:   Fri May 22 10:26:32 2009 -0500
20569     85xx: Add PORBMSR and PORDEVSR shift defines
20571     Add defines similar to those already used for the the 86xx architecture.
20572     This will ease sharing of PCI code between the 85xx and 86xx
20573     architectures.
20575     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20576     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20578 commit 2f21ce4d546d31289ac49a680f78bcc9a792c6ec
20579 Author: Peter Tyser <ptyser@xes-inc.com>
20580 Date:   Thu May 21 12:10:00 2009 -0500
20582     fsl/85xx, 86xx: Sync up DMA code
20584     The following changes were made to sync up the DMA code between the 85xx
20585     and 86xx architectures which will make it easier to break out common
20586     8xxx DMA code:
20588     85xx:
20589     - Don't set STRANSINT and SPCIORDER fields in SATR register.  These bits
20590       only have an affect when the SBPATMU bit is set.
20591     - Write 0xffffffff instead of 0xfffffff to clear errors in the DMA
20592       status register.  We may as well clear all 32 bits of the register...
20594     86xx:
20595     - Add CONFIG_SYS_MPC86xx_DMA_ADDR define to address DMA registers
20596     - Add clearing of errors in the DMA status register when initializing
20597       the controller
20598     - Clear the channel start bit in the DMA mode register after a transfer
20600     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20601     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20603 commit b1f12650d332eadac1306a772cab6096abee6ddd
20604 Author: Peter Tyser <ptyser@xes-inc.com>
20605 Date:   Thu May 21 12:09:59 2009 -0500
20607     fsl: Create common fsl_dma.h for 85xx and 86xx cpus
20609     Break out DMA structures for the Freescale MPC85xx and MPC86xx cpus to
20610     reduce a large amount of code duplication
20612     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
20613     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20615 commit 3bd8e532b5de20647aeaff94a1cbf33fb8b897b9
20616 Author: Haiying Wang <Haiying.Wang@freescale.com>
20617 Date:   Wed May 20 12:30:41 2009 -0400
20619     85xx: Add UEC6 and UEC8 at SGMII mode for MPC8569MDS
20621     On MPC8569MDS board, UCC6 and UCC8 can be configured to work at SGMII mode via
20622     UEM on PB board. Since MPC8569 supports up to 4 Gigabit Ethernet ports, we
20623     disable UEC6 and UEC8 by default.
20625     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20626     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20628 commit e8efef7c1b457442583a8b9d38d8a5b667661616
20629 Author: Haiying Wang <Haiying.Wang@freescale.com>
20630 Date:   Thu Jun 4 16:12:42 2009 -0400
20632     drivers/qe: add sgmii support in for UEC driver
20634     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20635     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20637 commit 8e55258f144764de8902e9f078a7ad4c6c022c2f
20638 Author: Haiying Wang <Haiying.Wang@freescale.com>
20639 Date:   Thu Jun 4 16:12:41 2009 -0400
20641     qe: Pass in uec_info struct through uec_initialize
20643     The uec driver contains code to hard code configuration information for the uec
20644     ethernet controllers. This patch creates an array of uec_info structures, which
20645     are then parsed by the corresponding driver instance to determine configuration.
20646     It also creates function uec_standard_init() to initialize all UEC interfaces
20647     for 83xx and 85xx.
20649     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20650     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20652 commit 9a6110897fc9282ade598bbba70ad72b940436e3
20653 Author: Haiying Wang <Haiying.Wang@freescale.com>
20654 Date:   Thu Jun 4 16:12:40 2009 -0400
20656     fsl: Update the number of ethxaddr in reading system eeprom
20658     We support up to 8 mac addresses in system eeprom, so we define the macro
20659     MAX_NUM_PORTS to limit the mac_count to 8, and update the number of ethxaddr
20660     according to mac_count.
20662     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20663     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20665 commit f82107f637f167a77803c0933f9b24741a91c711
20666 Author: Haiying Wang <Haiying.Wang@freescale.com>
20667 Date:   Wed May 20 12:30:37 2009 -0400
20669     85xx: Add RMII support for MPC8569MDS
20671     This patch supports UCC working at RMII mode on PIB board, fixup fdt blob to
20672     support rmii in kernel. It also changes the name of enable_mpc8569mds_qe_mdio to
20673     enalbe_mpc8569mds_qe_uec which is  more accurate.
20675     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20676     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20678 commit 750098d33bc362ac4263863e92da158cf011063f
20679 Author: Haiying Wang <Haiying.Wang@freescale.com>
20680 Date:   Wed May 20 12:30:36 2009 -0400
20682     85xx: Add UEC3 and UEC4 support for MPC8569MDS
20684     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20685     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20687 commit 4e7b25e4fe777f525e426cbd58c3a3976c564f2e
20688 Author: Haiying Wang <Haiying.Wang@freescale.com>
20689 Date:   Wed May 20 12:30:35 2009 -0400
20691     drivers/qe: Add more SNUM number for QE
20693     Some QE chips like 8569 need more SNUM numbers for supporting 4 UECs in RGMII-
20694     1000 mode.
20696     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20697     Acked-by: Timur Tabi <timur@freescale.com>
20698     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20700 commit 7211fbfa18f3061858696150ee6e9e093d9eceae
20701 Author: Haiying Wang <Haiying.Wang@freescale.com>
20702 Date:   Thu May 21 15:34:14 2009 -0400
20704     drivers/qe: Change QE RISC ALLOCATION to support 4 RISCs
20706     Also define the QE_RISC_ALLOCATION_RISCs to MACROs instead of using enum, and
20707     define MAX_QE_RISC for QE based silicons.
20709     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20710     Acked-by: Timur Tabi <timur@freescale.com>
20711     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20713 commit b3d7f20f43a0f8d11c65e2f92153b5512b11580c
20714 Author: Haiying Wang <Haiying.Wang@freescale.com>
20715 Date:   Wed May 20 12:30:29 2009 -0400
20717     85xx: Add QE clk support
20719     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20720     Acked-by: Timur Tabi <Timur@freescale.com>
20721     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20723 commit 71b358cc26792889bbac35054d8e89d59b3fabc4
20724 Author: Kumar Gala <galak@kernel.crashing.org>
20725 Date:   Wed May 20 01:11:33 2009 -0500
20727     85xx: Added MPC8535/E identifiers
20729     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20731 commit 22419d77976bbd0df9fcf45513f1b96bd73e50d1
20732 Author: Kumar Gala <galak@kernel.crashing.org>
20733 Date:   Thu May 21 08:36:43 2009 -0500
20735     85xx: Always attempt ethernet device tree fixup
20737     Its reasonable that we may have ethernet devices but dont have drivers
20738     or support enabled for them in u-boot and want the device tree fixed up.
20739     Unconditionally calling the ethernet fixup is fine since if we dont have
20740     ethernet nodes that match (or aliases) we will not attempt to do
20741     anything.
20743     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20744     Acked-by: Timur Tabi <timur@freescale.com>
20746 commit 52d6ad5ecfb22938441c8e3e62935fbd7b0f0920
20747 Author: Haiying Wang <Haiying.Wang@freescale.com>
20748 Date:   Thu May 21 15:32:13 2009 -0400
20750     drivers/qe: Rename the camel-case identifiers in uec
20752     Rename riscRx/riscTx to risc_rx/risc_tx to comply with Codingstyle.
20754     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
20756 commit feb7838f979ec2b581df3c791b9ae3284c36bb47
20757 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
20758 Date:   Fri Apr 3 15:36:13 2009 -0500
20760     85xx: Add P2020DS support
20762     The patch adds support for P2020DS reference platform.
20763     DDR3 interface uses hard-coded initialization rather than SPD
20764     for now and was tested at 667Mhz. Some PIXIS register
20765     definitions and associated code sections need to be fixed.
20766     TSEC1/2/3, NOR flash, MAC/SYS ID EEPROM, PCIE1/2/3 are all
20767     tested under u-boot.
20769     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
20770     Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
20771     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20773 commit 229549a56d9ae413c00f64fd7c728c6879a1b54b
20774 Author: Stefan Roese <sr@denx.de>
20775 Date:   Tue Jun 9 16:57:47 2009 +0200
20777     mpc512x: MPC5121ADS: Add NAND support
20779     This patch adds NAND support to the MPC5121ADS board. Please
20780     note that the image size increased since NAND support didn't
20781     fit in the current image size (256k).
20783     Signed-off-by: Stefan Roese <sr@denx.de>
20784     Signed-off-by: Wolfgang Denk <wd@denx.de>
20785     Cc: Wolfgang Denk <wd@denx.de>
20787 commit 35f2edbb6cad043ccd5ea6e78fe9b7aa21d8395f
20788 Author: Stefan Roese <sr@denx.de>
20789 Date:   Tue Jun 9 16:57:03 2009 +0200
20791     nand/mpc512x: Add MPC512x NAND support (NFC)
20793     This patch adds NAND Flash Controller driver for MPC5121 revision 2.
20794     All device features, except hardware ECC and power management, are
20795     supported.
20797     This NFC driver replaces the one orignally posted by John Rigby:
20799     "[PATCH] Freescale NFC NAND driver"
20801     It's a port of the Linux driver version posted by Piotr Ziecik a few
20802     weeks ago. Using this driver has the following advantages (from my
20803     point of view):
20805     - Compatibility with the Linux NAND driver (e.g. ECC usage)
20806     - Better code quality in general
20807     - Resulting U-Boot image is a bit smaller (approx. 3k)
20808     - Better to sync with newer Linux driver versions
20810     The only disadvantage I can see, is that HW-ECC is not supported right
20811     now. But this could be added later (e.g. port from Linux driver after
20812     it's supported there). Using HW-ECC on the MCP5121 NFC has a general
20813     problem because of the ECC usage in the spare area. This collides with
20814     JFFS2 for example.
20816     Signed-off-by: Stefan Roese <sr@denx.de>
20817     Cc: Piotr Ziecik <kosmo@semihalf.com>
20818     Cc: Wolfgang Denk <wd@denx.de>
20819     Cc: John Rigby <jcrigby@gmail.com>
20820     Cc: Scott Wood <scottwood@freescale.com>
20822 commit e53b507cee5d976953134a565c72fd32c967d7dd
20823 Author: Stefan Roese <sr@denx.de>
20824 Date:   Tue Jun 9 11:50:40 2009 +0200
20826     mpc512x: Add esd gmbh mecp5123 board support
20828     MECP5123 is a MPC5121E based module by esd gmbh.
20830     Signed-off-by: Stefan Roese <sr@denx.de>
20831     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
20833 commit 6bd55cc65d0c3aa84d719518254fb3c650239ed9
20834 Author: Stefan Roese <sr@denx.de>
20835 Date:   Tue Jun 9 11:50:05 2009 +0200
20837     mcp512x: Add macros for SCFR LPC divisor access
20839     Thos macros will be used by the esd mecp5123 board.
20841     Signed-off-by: Stefan Roese <sr@denx.de>
20843 commit c60dc8527dbb2a1318c03bc18bdebcfbd0164551
20844 Author: Stefan Roese <sr@denx.de>
20845 Date:   Mon Jun 8 09:38:07 2009 +0200
20847     mpc512x: Fix problem with I2C access before relocation
20849     This is needed for the upcoming esd MECP5123 board port which uses
20850     I2C EEPROM for environment storage.
20852     Signed-off-by: Stefan Roese <sr@denx.de>
20853     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
20854     Acked-by: Heiko Schocher<hs@denx.de>
20856 commit 58f10460b05e0928d986b15edd4f2e1e99403f7e
20857 Author: Stefan Roese <sr@denx.de>
20858 Date:   Thu Jun 4 13:35:39 2009 +0200
20860     74xx_7xx: CPCI750: Add CPCI adapter/target support
20862     The CPCI750 can be built as CPCI host or adapter/target board. This patch
20863     adds support for runtime detection of those variants.
20865     Signed-off-by: Stefan Roese <sr@denx.de>
20866     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
20868 commit ae7a2739d7a0704437376e229bb21940952c55be
20869 Author: Stefan Roese <sr@denx.de>
20870 Date:   Fri Jun 5 05:45:41 2009 +0200
20872     74xx_7xx: CPCI750: Enable access to PCI function > 0
20874     The Marvell bridge 64360 supports serveral PCI functions, not only 0. This
20875     patch enables access to those functions.
20877     Signed-off-by: Stefan Roese <sr@denx.de>
20878     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
20880 commit e5b563e9ec54c3f6d702c8fa2b711b4a6150243a
20881 Author: Stefan Roese <sr@denx.de>
20882 Date:   Thu Jun 4 13:35:37 2009 +0200
20884     74xx_7xx: CPCI750: Minor coding style cleanup of cpci750.c
20886     Signed-off-by: Stefan Roese <sr@denx.de>
20887     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
20889 commit 0e5ef07d0d91bd3d87ebea0534f538561aa974d5
20890 Author: Stefan Roese <sr@denx.de>
20891 Date:   Thu Jun 4 13:35:36 2009 +0200
20893     74xx_7xx: CPCI750: Add loadpci command
20895     This command is used to load/boot an OS-image which is transferred from
20896     the CPCI host to the CPCI target/adapter.
20898     Signed-off-by: Stefan Roese <sr@denx.de>
20899     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
20901 commit 0a14d6b8f4d21ff59a9b7686a49a77069a9fcd2a
20902 Author: Stefan Roese <sr@denx.de>
20903 Date:   Thu Jun 4 13:35:35 2009 +0200
20905     74xx_7xx: CPCI750: Add commandline editing/history
20907     Signed-off-by: Stefan Roese <sr@denx.de>
20908     Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
20910 commit 60cfe87bd39e6f07f2b92eb4bff82bfd105f4724
20911 Author: Stefan Roese <sr@denx.de>
20912 Date:   Thu Jun 4 16:55:34 2009 +0200
20914     UBI: Add compile-time check for correct malloc area configuration
20916     UBI is quite memory greedy and requires at least approx. 512k of malloc
20917     area. This patch adds a compile-time check, so that boards will not
20918     build with less memory reserved for this area (CONFIG_SYS_MALLOC_LEN).
20920     Signed-off-by: Stefan Roese <sr@denx.de>
20922 commit 7ce6031afc8671c8b47c6135b3678d43fcd02852
20923 Author: Prafulla Wadaskar <prafulla@marvell.com>
20924 Date:   Mon Apr 6 21:24:43 2009 +0530
20926     sf: new Macronix MX25xx SPI flash driver
20928     Added macronix SF driver for MTD framework
20929     MX25L12805D is supported and tested
20930     TBD: sector erase implementation, other deivces support
20932     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
20933     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20935 commit 2a6cc58869305f346e389eefdfa96dea5146cb0c
20936 Author: Todor I Mollov <tmollov@ucsd.edu>
20937 Date:   Sat Apr 4 07:14:44 2009 -0400
20939     sf: atmel: implement power-of-two write/erase funcs
20941     Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
20942     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20943     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20945 commit 4bc6eb79be2a7317425575184324b94e3b43fbc2
20946 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
20947 Date:   Mon May 25 17:23:18 2009 +0530
20949     mpc85xx: 8536ds: Add USB related CONFIGs
20951     This patch adds CONFIGs for enabling USB in mpc8536ds and also
20952     adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
20953     Copyright.
20955     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
20956     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20958 commit 6823e9b01290977c4d9c90381459c01f66e12e79
20959 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
20960 Date:   Mon May 25 17:23:17 2009 +0530
20962     mpc83xx: 8315erdb: Add USB related CONFIGs
20964     This patch adds CONFIGs for enabling USB in mpc8315erdb and also
20965     adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
20966     Copyright.
20968     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
20969     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20971 commit a07bf180efc3c0de4a89a3bd49a7c7584dfb95a8
20972 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
20973 Date:   Thu May 21 17:32:48 2009 +0530
20975     mpc85xx: USB: Add support
20977     The following patch adds 85xx-specific USB support and also
20978     revamps Copyright in immap_85xx.h
20980     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
20981     Signed-off-by: Remy Bohmer <linux@bohmer.net>
20983 commit 4ef01010aa4799c759d75e67007fdd3a38c88c8a
20984 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
20985 Date:   Mon May 25 17:23:16 2009 +0530
20987     mpc83xx: USB: Reorganized its support
20989     The following patch reorganizes/reworks the USB support for mpc83xx
20990     as under:-
20992       * Moves the 83xx USB clock init from drivers/usb/host/ehci-fsl.c to
20993         cpu/mpx83xx/cpu_init.c
20995       * Board specific usb_phy_type is read from the environment
20997       * Adds USB EHCI specific structure in include/usb/ehci-fsl.h
20999       * Copyrights revamped in most of the following files
21001     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
21002     Signed-off-by: Remy Bohmer <linux@bohmer.net>
21004 commit ed90d2c87158e5114b6009fa95bb6417e4b27b3e
21005 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
21006 Date:   Thu May 21 17:32:27 2009 +0530
21008     mpc8xxx: USB: Relocates ehci-fsl.h to include/usb
21010     The following patch moves 8xxx-specifc USB #defines from
21011     drivers/usb/host/ehci-fsl.h to include/usb.
21013     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
21014     Signed-off-by: Remy Bohmer <linux@bohmer.net>
21016 commit cfd39cdf9422d3d25e9b3c058865f4c1f66f34da
21017 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
21018 Date:   Thu May 21 17:32:15 2009 +0530
21020     mpc8xxx: USB: Removed reenablement of its interface
21022     To prepare for the 85xx USB support, which requires interface enablement
21023     only once in (specified) order, no different than instructions for
21024     enabling the interface under 83xx.  It is unknown why the original author
21025     enabled the interface twice (checked for references in errata, etc).
21027     Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
21028     Signed-off-by: Remy Bohmer <linux@bohmer.net>
21030 commit 2c7920afaf96d9779304202cd8a355b4f7576a83
21031 Author: Peter Tyser <ptyser@xes-inc.com>
21032 Date:   Fri May 22 17:23:25 2009 -0500
21034     83xx: Replace CONFIG_MPC83[0-9]X with MPC83[0-9]x
21036     Use the standard lowercase "x" capitalization that other Freescale
21037     architectures use for CPU defines to prevent confusion and errors
21039     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
21040     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21042 commit 0f898604945af4543c1525fc33b6bae621a3b805
21043 Author: Peter Tyser <ptyser@xes-inc.com>
21044 Date:   Fri May 22 17:23:24 2009 -0500
21046     83xx: Replace CONFIG_MPC83XX with CONFIG_MPC83xx
21048     Use the standard lowercase "xx" capitalization that other Freescale
21049     architectures use for CPU defines to prevent confusion and errors
21051     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
21052     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21054 commit ba4feae90ca71de1681d5808f17e73224d8f03c4
21055 Author: Stefan Roese <sr@denx.de>
21056 Date:   Tue Jun 2 16:53:16 2009 +0200
21058     mpc512x: Use serial_setbrg() in serial_init() to not duplicate the code
21060     This patch removes the duplicated code for baudrate generator configuration
21061     in the PSC serial_init() implementation by calling serial_setbrg() instead
21062     of duplicating the code.
21064     Signed-off-by: Stefan Roese <sr@denx.de>
21066 commit b8c1d6a54ff8195488b68e163de8ec31f1603496
21067 Author: Stefan Roese <sr@denx.de>
21068 Date:   Tue Jun 2 16:53:15 2009 +0200
21070     mpc512x: Fix PSC divisor calculation for baudrate setting
21072     The wrong input frequency was used in serial_setbrg(). This patch fixes
21073     this by using ips_clk as input frequency for the PSC baudrate generator.
21075     Signed-off-by: Stefan Roese <sr@denx.de>
21077 commit 52568c3654b2b257016d52167805ae132faac14e
21078 Author: Wolfgang Denk <wd@denx.de>
21079 Date:   Sat May 16 10:47:46 2009 +0200
21081     MPC512x: add support for ARIA board
21083     ARIA is a MPC5121E based COM Express module by Dave/DENX.
21085     Signed-off-by: Wolfgang Denk <wd@denx.de>
21086     Cc: John Rigby <jcrigby@gmail.com>
21088 commit 3b74e7ec58e2cc352b0a396a614065cfeb8d138f
21089 Author: Wolfgang Denk <wd@denx.de>
21090 Date:   Sat May 16 10:47:45 2009 +0200
21092     MPC512x: remove include/mpc512x.h
21094     Move needed definitions (register descriptions etc.) from
21095     include/mpc512x.h  into  include/asm-ppc/immap_512x.h.
21097     Instead of using a #define'd register offset, use a function that
21098     provides the PATA controller's base address.
21100     All the rest of include/mpc512x.h are register offset definitions
21101     which can be eliminated by proper use of C structures.
21103     There are only a few register offsets remaining that are needed in
21104     cpu/mpc512x/start.S; for these we provide cpu/mpc512x/asm-offsets.h
21105     which is intended as a temporary workaround only. In a later patch
21106     this file will be removed, too, and then auto-generated from the
21107     respective C structs.
21109     Signed-off-by: Wolfgang Denk <wd@denx.de>
21110     Cc: John Rigby <jcrigby@gmail.com>
21112 commit a927e491b2a326c1e9c4313e3ce4042988422697
21113 Author: Wolfgang Denk <wd@denx.de>
21114 Date:   Sat May 16 10:47:44 2009 +0200
21116     MPC512x FEC: get rid of duplicated struct ethernet_regs
21118     Use existing struct fec512x instead.
21120     Signed-off-by: Wolfgang Denk <wd@denx.de>
21121     Cc: John Rigby <jcrigby@gmail.com>
21122     Acked-by: Ben Warren <biggerbadderben@gmail.com>
21124 commit 843efb1192cc8fd4f904a23dbab4e0fe3e1c5bc2
21125 Author: Wolfgang Denk <wd@denx.de>
21126 Date:   Sat May 16 10:47:43 2009 +0200
21128     MPC512x: use I/O accessors instead of pointer accesses
21130     This commit changes the MPC512x code to use I/O accessor calls (i.e.
21131     out_*() and in_*()) instead of using deprecated pointer accesses.
21133     Signed-off-by: Wolfgang Denk <wd@denx.de>
21134     Cc: John Rigby <jcrigby@gmail.com>
21136 commit 19dc7e179268be148e550c36203208c662610d76
21137 Author: Wolfgang Denk <wd@denx.de>
21138 Date:   Sat May 16 10:47:42 2009 +0200
21140     MPC512x: add more hardware description to immap_512x.h
21142     - add GPIO module description
21143     - add Address Latch Timing Register description
21144     - add IO Control Memory Map
21145     - add FEC Memory Map
21147     Also change board/freescale/mpc5121ads/mpc5121ads.c and
21148     cpu/mpc512x/iopin.c as needed.
21150     Signed-off-by: Wolfgang Denk <wd@denx.de>
21151     Cc: John Rigby <jcrigby@gmail.com>
21153 commit 72601d04fdfdd4c7597afcf1f6aab654bd99366c
21154 Author: Wolfgang Denk <wd@denx.de>
21155 Date:   Sat May 16 10:47:41 2009 +0200
21157     Rename ads5121 board into mpc5121ads
21159     We rename the board so we use a consistent name in U-Boot and in
21160     Linux.  Also, we use this opportunity to move the board into the
21161     Freecale vendor directory.
21163     Signed-off-by: Wolfgang Denk <wd@denx.de>
21164     Cc: John Rigby <jcrigby@gmail.com>
21166 commit debf87415579c0f50aab9e0832976d4506babe0f
21167 Author: Wolfgang Denk <wd@denx.de>
21168 Date:   Sat May 16 10:47:40 2009 +0200
21170     cpu/mpc512x/diu.c: fix warning: assignment from incompatible pointer type
21172     Signed-off-by: Wolfgang Denk <wd@denx.de>
21173     Cc: John Rigby <jcrigby@gmail.com>
21175 commit 8b251263191ec554967dd1add6237c1ba7f7eb25
21176 Author: Wolfgang Denk <wd@denx.de>
21177 Date:   Sat May 16 10:47:39 2009 +0200
21179     cpu/mpc512x/pci.c: minor coding style cleanup
21181     Get rid of variable declaration in the middle of the code.
21183     Signed-off-by: Wolfgang Denk <wd@denx.de>
21184     Cc: John Rigby <jcrigby@gmail.com>
21186 commit de26ef99bddbce4ed225f93afcf0bee99c3b6f87
21187 Author: Wolfgang Denk <wd@denx.de>
21188 Date:   Sat May 16 10:47:38 2009 +0200
21190     mpc512x: Move common files to share them by several boards
21192     We will soon see several new MPC521x based boards added.  This patch
21193     moves files that are not board specific to a common directory so they
21194     can be shared by all such ports.  It also splits off common IDE code
21195     into a new file, cpu/mpc512x/ide.c .
21197     Signed-off-by: Wolfgang Denk <wd@denx.de>
21198     Cc: John Rigby <jcrigby@gmail.com>
21200 commit 03e069dc0a765d506f78a68319acf33d432e035b
21201 Author: Wolfgang Denk <wd@denx.de>
21202 Date:   Sat May 16 10:47:37 2009 +0200
21204     mpc512x: change cpu/mpc512x/Makefile to use Kconfig style
21206     Signed-off-by: Wolfgang Denk <wd@denx.de>
21207     Cc: John Rigby <jcrigby@gmail.com>
21209 commit a89c33db96a1e55319a286dd4c3c05ca64ac6bfd
21210 Author: Wolfgang Denk <wd@denx.de>
21211 Date:   Sun May 24 17:06:54 2009 +0200
21213     General help message cleanup
21215     Many of the help messages were not really helpful; for example, many
21216     commands that take no arguments would not print a correct synopsis
21217     line, but "No additional help available." which is not exactly wrong,
21218     but not helpful either.
21220     Commit ``Make "usage" messages more helpful.'' changed this
21221     partially. But it also became clear that lots of "Usage" and "Help"
21222     messages (fields "usage" and "help" in struct cmd_tbl_s respective)
21223     were actually redundant.
21225     This patch cleans this up - for example:
21227     Before:
21228         => help dtt
21229         dtt - Digital Thermometer and Thermostat
21231         Usage:
21232         dtt         - Read temperature from digital thermometer and thermostat.
21234     After:
21235         => help dtt
21236         dtt - Read temperature from Digital Thermometer and Thermostat
21238         Usage:
21239         dtt
21241     Signed-off-by: Wolfgang Denk <wd@denx.de>
21243 commit 94796d8544d4248028141bad11c6a74b840e9d6e
21244 Author: Wolfgang Denk <wd@denx.de>
21245 Date:   Sun May 24 19:17:29 2009 +0200
21247     Make "usage" messages more helpful.
21249     In case of incorrect command invocations U-Boot used to print pretty
21250     useless "usage" messages, for example:
21252         => nand markbad
21253         Usage:
21254         nand - NAND sub-system
21256     In the result, the user would have to run the "help" command to get
21257     the (available) information about correct command usage. Change this,
21258     so that this information gets always printed.
21260     Note that this changes the user interface of all commands, but
21261     hopefully to the better.
21263     Signed-off-by: Wolfgang Denk <wd@denx.de>
21265 commit 4c94f6c54bbc4dc5f418da01d8ec01e2adf636be
21266 Author: Mike Frysinger <vapier@gentoo.org>
21267 Date:   Sun May 24 02:26:19 2009 -0400
21269     nvedit: speed up printing of environment
21271     The printing code would check the same environment byte multiple times and
21272     write to the console one byte at a time.  For some devices (such as the
21273     Blackfin JTAG console which operates in 8 bytes at a time), this is pretty
21274     damned slow.  So create a small 16 byte buffer to fill up and send to puts
21275     as needed.  In the process, unify the different print functions, shrink
21276     the resulting code (source and compiled), and avoid excess env reads as
21277     those too can be somewhat expensive depending on the board.
21279     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21281 commit 3112030a430553768de5d30c05bedf8710784452
21282 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21283 Date:   Fri May 22 19:28:52 2009 +0200
21285     config.mk: remove un-needed REMOTE_BUILD check
21287     as $(obj) is empty when in tree build
21289     %.s:        %.S
21290         $(CPP) $(AFLAGS) -o $@ $<
21292     and
21294     $(obj)%.s:  %.S
21295         $(CPP) $(AFLAGS) -o $@ $<
21297     are the same
21299     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21300     Acked-by: Mike Frysinger <vapier@gentoo.org>
21302 commit 651351fe980b20217b014b9a888398f18d77951c
21303 Author: Tom Rix <Tom.Rix@windriver.com>
21304 Date:   Wed May 20 07:55:41 2009 -0500
21306     FAT replace compare_sign with strncmp.
21308     The static function compare_sign is only used to compare the fs_type string
21309     and does not do anything more than what strncmp does.
21311     The addition of the trailing '\0' to fs_type, while legal, is not needed
21312     because the it is never printed out and strncmp does not depend on NULL
21313     terminated strings.
21315     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21317 commit ecb1dc892297d5d99876907328fed732feefeab2
21318 Author: Mike Frysinger <vapier@gentoo.org>
21319 Date:   Wed May 20 04:35:14 2009 -0400
21321     Add support for Linux-like kallsysms
21323     The kernel stores address<->symbol names in it so things can be decoded at
21324     runtime.  Do it in U-Boot, and we get nice symbol decoding when crashing.
21326     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21328 commit 36c9169aa6f79ddf604a3bca64e145654f94888b
21329 Author: Wolfgang Denk <wd@denx.de>
21330 Date:   Sun May 17 16:01:54 2009 +0200
21332     cmd_mtdparts.c: allow to omit definitions for default settings
21334     There is actually no good reason to enforce that all board
21335     configuations must define default settings for "mtdids" and
21336     "mtdparts".  Actually this may be difficult to handle, especially on
21337     boards where different sizes of flash chips can be fit, so there is no
21338     real "default" partition map for all boards.
21340     Lift this arbitrary limitation.
21342     Signed-off-by: Wolfgang Denk <wd@denx.de>
21344 commit 864aa034f3a0e10ce710e8bbda171df3cab59414
21345 Author: Stefan Roese <sr@denx.de>
21346 Date:   Tue May 12 14:31:56 2009 +0200
21348     cmd_mtdparts: Move to common handling of FLASH devices via MTD layer
21350     This patch removes all references to the direct CFI FLASH interface
21351     (via flash_info[]). Now that all FLASH types currently handled in
21352     mtdparts are available (if selected, see below) via the MTD infrastructure.
21353     This is NOR, NAND and OneNAND right now. This can be achieved by defining
21354     the following options:
21356     CONFIG_MTD_DEVICE (for all FLASH types)
21358     plus
21360     CONFIG_FLASH_CFI_MTD (for NOR FLASH)
21362     So we need to add those defines to the board config headers currently
21363     using the mtdparts commands. This is done via another patch, so
21364     we shouldn't break mtdparts compatibility.
21366     One big advantage from this solution is that the cmd_mtdparts.c is
21367     *much* cleaner now. Lot's of #ifdef's are removed and the code itself
21368     is smaller. Additionally the newly added MDT concatenation feature
21369     can new be used via the mtdparts infrastructure and therefor via
21370     UBI etc.
21372     Signed-off-by: Stefan Roese <sr@denx.de>
21373     Cc: Ladislav Michl <ladis@linux-mips.org>
21374     Cc: Scott Wood <scottwood@freescale.com>
21376 commit d558107c18708050f05b6639b2192efb67c905dc
21377 Author: Stefan Roese <sr@denx.de>
21378 Date:   Tue May 12 14:31:18 2009 +0200
21380     mtd: Introduce CONFIG_MTD_DEVICE to select compilation of mtdcore.o
21382     This new define enables mtdcore.c compilation and with this we can
21383     select the MTD device infrastructure needed for the reworked mtdparts
21384     command.
21386     We now have the 2 MTD infrastructure defines, CONFIG_MTD_DEVICE and
21387     CONFIG_MTD_PARTITIONS. CONFIG_MTD_DEVICE is needed (as explained above)
21388     for the "mtdparts" command and CONFIG_MTD_PARTITIONS is needed for UBI.
21390     Signed-off-by: Stefan Roese <sr@denx.de>
21391     Cc: Scott Wood <scottwood@freescale.com>
21393 commit 942556a92a8c1eb1bd76584a5143f6f57dcb25ad
21394 Author: Stefan Roese <sr@denx.de>
21395 Date:   Tue May 12 14:32:58 2009 +0200
21397     mtd: MTD related config header changes (mtdparts command)
21399     By changing the cmd_mtdparts to only use the MTD infrastructure and
21400     not the direct interface to the CFI NOR FLASH driver we now need
21401     to add the MTD infrastructure to all boards using those mtdparts
21402     commands. This patch adds those components:
21404     CONFIG_MTD_DEVICE (for all FLASH types)
21406     plus
21408     CONFIG_FLASH_CFI_MTD (for NOR FLASH)
21410     To all board maintainers: Please test this on your platforms and
21411     report any problems/issues found. Thanks.
21413     Signed-off-by: Stefan Roese <sr@denx.de>
21414     Cc: Wolfgang Denk <wd@denx.de>
21415     Cc: Ron Madrid <info@sheldoninst.com>
21416     Cc: Georg Schardt <schardt@team-ctech.de>
21417     Cc: Michal Simek <monstr@monstr.eu>
21418     Cc: Ladislav Michl <ladis@linux-mips.org>
21419     Cc: Martin Krause <martin.krause@tqs.de>
21420     Cc: Gary Jennejohn <garyj@denx.de>
21421     Cc: Ricardo Ribalda <ricardo.ribalda@uam.es>
21423 commit 8d2effea23e938631126a7888008a0637e13b389
21424 Author: Stefan Roese <sr@denx.de>
21425 Date:   Mon May 11 16:03:55 2009 +0200
21427     mtd: Update MTD infrastructure to support 64bit device size
21429     This patch brings the U-Boot MTD infrastructure in sync with the current
21430     Linux MTD version (2.6.30-rc3). Biggest change is the 64bit device size
21431     support and a resync of the mtdpart.c file which has seen multiple fixes
21432     meanwhile.
21434     Signed-off-by: Stefan Roese <sr@denx.de>
21435     Cc: Scott Wood <scottwood@freescale.com>
21436     Cc: Kyungmin Park <kmpark@infradead.org>
21438 commit 0a57265533c412adf6024f4b4955141f4346b2b9
21439 Author: Stefan Roese <sr@denx.de>
21440 Date:   Tue May 12 14:29:39 2009 +0200
21442     mtd: Add MTD concat support to concatenate multiple MTD NOR devices
21444     This patch adds concatenation support to the U-Boot MTD infrastructure.
21445     By enabling CONFIG_MTD_CONCAT this MTD CFI wrapper will concatenate
21446     all found NOR devices into one single MTD device. This can be used by
21447     e.g by UBI to access a partition that spans over multiple NOR chips.
21449     Signed-off-by: Stefan Roese <sr@denx.de>
21451 commit 55e0ed6078b10b0d425b6a0677f38a015c277df6
21452 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21453 Date:   Sat Apr 25 14:57:52 2009 +0200
21455     make MODEM SUPPORT generic instead of duplicate it
21457     and fix comment
21459     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21461     Adjusted Copyright message.
21463     Signed-off-by: Wolfgang Denk <wd@denx.de>
21465 commit a30f519bd0cde78ba46b424314de94fdab863726
21466 Author: Tom Rix <Tom.Rix@windriver.com>
21467 Date:   Tue Jun 2 20:53:56 2009 -0500
21469     ZOOM2 detect the version of the zoom2 board at runtime.
21471     There are currently 3 versions of the zoom2 board.
21472     The production board, that is currently being released.
21473     The beta board, similar in form to the production board but not released.
21474     The alpha board, a set of PCBs with a very limited circulation.
21476     GPIO 94 is used to determine the version of the board. If GPIO 94 is clear,
21477     the board is a production board, otherwise it is a beta board.
21479     The alpha board will likely be mistaken for a beta board.  An alpha board
21480     was unavailible for testing.
21482     This has been tested on the beta and production boards.
21484     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21485     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21487 commit 718763c4745fd3d987a5576d2a67325e9444f9d4
21488 Author: Tom Rix <Tom.Rix@windriver.com>
21489 Date:   Wed Jun 3 01:53:57 2009 -0500
21491     Beagle Convert the board version detection to use the OMAP3 GPIO interface.
21493     There is no new functionality in the change.
21495     This change is a conversion from the using raw register access to using
21496     the OMAP3 GPIO API described in doc/README.omap3.
21498     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21499     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
21501 commit 7caa13fdd2d3dc957b4e0a228810a3a4a8ba499b
21502 Author: Tom Rix <Tom.Rix@windriver.com>
21503 Date:   Wed Jun 3 01:53:55 2009 -0500
21505     Fix a typo in the instructions on using omap3's gpio interface.
21507     Using the example for reading a gpio, shows the problem.
21508     NULL should be the gpio number.
21510     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21511     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
21513 commit 0c9520efd651ce13451654a35307ec87d4a13a69
21514 Author: Tom Rix <Tom.Rix@windriver.com>
21515 Date:   Fri May 29 18:57:32 2009 -0500
21517     ZOOM2 Define GPIO banks used.
21519     Enable the function and interface clocks for banks 2,3,5 and 6.
21521     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21522     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
21524 commit 708cfb74b7c6df9c37d3c48988a154be79daefeb
21525 Author: Tom Rix <Tom.Rix@windriver.com>
21526 Date:   Fri May 29 18:57:31 2009 -0500
21528     OMAP3 Turn on the GPIO bank clocks
21530     The function and interface clocks for each GPIO bank, except the first, must
21531     be explicitly turned on.  These are controlled by the config level defines
21532     CONFIG_OMAP3_GPIO_n where n is from 2 to 6.
21534     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21535     Acked-by: Dirk Behme <dirk.behme@googlemail.com>
21537 commit 59272620c24549b5bcd03c94ba12ec302c1476a2
21538 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21539 Date:   Thu Mar 26 15:26:01 2009 -0400
21541     Coldfire M5271: Activate u-boot system timer interrupt.
21543     This patch assigns the u-boot system timer interrupt to
21544     interrupt level 3, priority 6. Without this patch the interrupt
21545     will be a level 0, priority 0, which disables it and cause
21546     u-boot functions that relies on the timer (e.g. sleep command)
21547     to never return.
21549     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21551 commit dc26965ad3acdfb18780361d77a276b2843a90af
21552 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21553 Date:   Mon Mar 23 13:35:48 2009 -0400
21555     Compier warning cleanup
21557     Follow up to git commit: 19b5b533ccd522abeb501d510750693c35e20456
21559     Cleanup on compiler warnings on unused variables now that
21560     bd->bi_enetaddr is no longer used.
21562     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21564 commit 42a83765d54f042b4079e05a3438789542429981
21565 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21566 Date:   Fri Mar 20 15:30:10 2009 -0400
21568     Adds WATCHDOG_RESET() function call to lib_m68k dtimer_interrupt.
21570     Ported from lib_ppc/interrupts.c, this adds the ability for
21571     the coldfire system timer to auto-reset the watchdog when
21572     dtimer_interrupts is called.
21574     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21576 commit a24d96e40e1ca66dde6e6c158e7ecffafc5a2199
21577 Author: Prafulla Wadaskar <prafulla@marvell.com>
21578 Date:   Sun May 31 14:53:20 2009 +0200
21580     arch_misc_init support for ARM architectures
21582     This patch is required for Kirkwood support
21583     may be used by other ARM architectures
21585     Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
21587 commit b2403589b4d9996394bafc73eca3623f43ac2c31
21588 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21589 Date:   Sun May 31 14:53:18 2009 +0200
21591     at91: move cpu info print to cpu
21593     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21595 commit b32e189079fa16e1b647ac6b949fd4e0a9435343
21596 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21597 Date:   Sun May 31 12:44:46 2009 +0200
21599     at91: move cpu name define to arm/arch/ cpu header
21601     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21603 commit 5bb59b3c906ee01adfaac9565443e5236a793079
21604 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21605 Date:   Sun May 31 12:44:45 2009 +0200
21607     at91: extract reset from timer
21609     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21611 commit 61cf851b09cf8b67009ec11fc47c16add6b142a5
21612 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21613 Date:   Sun May 31 12:44:43 2009 +0200
21615     omap24xx: rename reset file
21617     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21619 commit 9d4fc99dbdbfda1260aad478e83fca7cdf0e1a32
21620 Author: Dirk Behme <dirk.behme@googlemail.com>
21621 Date:   Sun May 31 12:44:42 2009 +0200
21623     OMAP3: Fix CKE1 MUX setting to allow self-refresh
21625     The Beagle rev Cx and Overo boards are using both SDRC CSes. The MUX
21626     setting is needed for the second CS clock signal to allow the 2 RAM
21627     parts to be put in self-refresh correctly. This also works on rev B
21628     Beagle boards with 128M of RAM.
21630     From: Steve Sakoman <steve@sakoman.com>
21631     From: Jean Pihet <jpihet@mvista.com>
21632     Signed-off-by: Jean Pihet <jpihet@mvista.com>
21633     Signed-off-by: Steve Sakoman <steve@sakoman.com>
21634     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
21636 commit 3962c4f9fc4482a6547f3c3d3d5e986e625abb8a
21637 Author: Dirk Behme <dirk.behme@googlemail.com>
21638 Date:   Sun May 31 12:44:41 2009 +0200
21640     OMAP3: Zoom2: Enable Board and CPU info
21642     With other OMAP3 boards we recently switched to CPU and Board
21643     info API. From parallel merge, this is missing for Zoom2.
21644     Enable it for Zoom2, too.
21646     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
21647     Acked-by: Tom Rix <Tom.Rix@windriver.com>
21649 commit 83ae698ff26b81b569ca32f7f2b008ad0da15e66
21650 Author: Tom Rix <Tom.Rix@windriver.com>
21651 Date:   Sun May 31 12:44:39 2009 +0200
21653     ZOOM2 Add led support.
21655     This patch controls the large LED on the top left of the zoom2.
21657     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21659 commit 660888b7fb8840ce169dcd2589e49ab44c46b87b
21660 Author: Tom Rix <Tom.Rix@windriver.com>
21661 Date:   Sun May 31 12:44:37 2009 +0200
21663     ZOOM2 Add serial support.
21665     Zoom2 serial is in general supplied by one of the 4 UARTS on the debug board.
21666     The default serial is from the USB connector on left side of the debug board.
21667     The USB connector will produce 2 of the 4 UARTS.  On your host pick the first
21668     enumeration.
21670     The details of the setting of the serial gpmc setup are not available.
21671     The values were provided by another party.
21673     The serial port set up is the same with Zoom1.
21674     Baud rate 115200, 8 bit data, no parity, 1 stop bit, no flow.
21676     The kernel bootargs are
21677     console=ttyS3,115200n8
21679     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21681 commit 3ea201b016ab259a5ac8824af767569522768c47
21682 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21683 Date:   Sun May 31 12:44:27 2009 +0200
21685     lh7a40x: move serial driver to drivers/serial
21687     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21689 commit 379be585eb2343d8814a5cee5fb3da930d846bee
21690 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21691 Date:   Sat May 16 22:48:46 2009 +0200
21693     pxa: move serial driver to drivers/serial
21695     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21697 commit ad7e8aac6920f8b8a85b3cc2e93bca7458e99aa1
21698 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21699 Date:   Sat May 9 13:21:19 2009 +0200
21701     arm: remove cpu_init
21703     move s3c44b0 to arch_cpu_init and as noone use cpu_init remove it
21705     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21707 commit c358d9c3f16571e8f825e81b75eaf32e228cb669
21708 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21709 Date:   Sat May 9 13:21:18 2009 +0200
21711     arm: unify interrupt init
21713     all arm init the IRQ stack the same way
21714     so unify it in lib_arm/interrupts.c and then call arch specific interrupt init
21716     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21718 commit 10a451cd57cffbca875c97bbd8929059c5627ec6
21719 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21720 Date:   Fri May 8 20:24:12 2009 +0200
21722     arm: unify linker script
21724     all arm boards except a few use the same cpu linker script
21725     so move it to cpu/$(CPU)
21727     that could be overwrite in following order
21728     SOC
21729     BOARD
21730     via the corresponding config.mk
21732     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21734 commit 9475c63c7855edd863c93a9bb0f4b8e240d9d212
21735 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21736 Date:   Sat May 16 10:02:05 2009 +0200
21738     afeb9260: fix macb device init
21740     uses PA10, PA11 for ETX2 and ETX3.
21742     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21744 commit 1bbae2b816d4ed38db2ebf42166a973b1ffc0df7
21745 Author: Stefan Roese <sr@denx.de>
21746 Date:   Wed May 27 10:34:32 2009 +0200
21748     ppc4xx: Remove PCI async bootup message if PCI is not used
21750     Signed-off-by: Stefan Roese <sr@denx.de>
21752 commit a3455c00510c5abf1e91743c4a02d8393b6df18d
21753 Author: Wolfgang Denk <wd@denx.de>
21754 Date:   Fri May 15 09:19:52 2009 +0200
21756     TQM834x: use buffered writes to accelerate writing to flash
21758     Also enable display of 'E'mpty sectors in "flinfo" output.
21760     Signed-off-by: Wolfgang Denk <wd@denx.de>
21761     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21763 commit 4681e673a51c48f4c096aa3c8fae5e6217ffd58d
21764 Author: Wolfgang Denk <wd@denx.de>
21765 Date:   Thu May 14 23:18:34 2009 +0200
21767     TQM834x: add FDT support
21769     Signed-off-by: Wolfgang Denk <wd@denx.de>
21770     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21772 commit 929b79a0b5e48303ab04aae9d0abceb0c707f111
21773 Author: Wolfgang Denk <wd@denx.de>
21774 Date:   Thu May 14 23:18:33 2009 +0200
21776     TQM834x: fix environment size; add redundant env.
21778     Also reserve more space for U-Boot as it will probably grow soon.
21780     Signed-off-by: Wolfgang Denk <wd@denx.de>
21781     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21783 commit 2ae0f35fd60c7345446835b95a4daff356e1f031
21784 Author: Thomas Lange <thomas@corelatus.se>
21785 Date:   Sun May 3 20:07:33 2009 +0200
21787     ARM DaVinci: Reset with watchdog enabled
21789     Once the Davinci watchdog has been enabled, the timeout
21790     value cannot be changed. If the timeout in use is long,
21791     it can take a long time for card to reset. By writing
21792     an invalid service key, we can trigger an immediate reset.
21794     Signed-off-by: Thomas Lange <thomas@corelatus.se>
21796 commit 6cc7ba9ed43106946aa9aa868302aa2faf1d17be
21797 Author: Wolfgang Denk <wd@denx.de>
21798 Date:   Fri May 15 10:07:43 2009 +0200
21800     video: Add an option to skip video initialization
21802     This patch adds an option to skip the video initialization on for all
21803     video drivers. This is needed for the CPCI750 which can be built as
21804     CPCI host and adapter/target board. And the adapter board can't
21805     access the video cards located on the CompactPCI bus.
21807     Signed-off-by: Stefan Roese <sr@denx.de>
21808     Cc: Anatolij Gustschin <agust@denx.de>
21810     Rebased against simplifying patch.
21811     Signed-off-by: Wolfgang Denk <wd@denx.de>
21813 commit f62f64692ff7f6226ad221d5df6487ea5ef39bdd
21814 Author: Wolfgang Denk <wd@denx.de>
21815 Date:   Fri May 15 10:07:42 2009 +0200
21817     drv_video_init(): simplify logic
21819     Simplify nesting of drv_video_init() and use a consistent way of
21820     indicating failure / success. Before, it took me some time to realize
21821     which of the returns was due to an error condition and which of them
21822     indicated success.
21824     Signed-off-by: Wolfgang Denk <wd@denx.de>
21825     Cc: Anatolij Gustschin <agust@denx.de>
21827 commit 1699da6297b8c22da16cf85b3c79192f1a6d70ca
21828 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21829 Date:   Wed May 13 21:01:13 2009 +0200
21831     at91: regroup IP hw init in one file per soc
21833     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21835 commit 28b00324becf3552134ae1e086509dc9c3d6e932
21836 Author: David Brownell <dbrownell@users.sourceforge.net>
21837 Date:   Fri May 15 23:48:37 2009 +0200
21839     dm355 evm support
21841     Initial U-Boot support for the DaVinci DM355 EVM.  This is a board
21842     from Spectrum Digital.  Board docs include schematic and firmware
21843     for its microcontroller:
21845       http://c6000.spectrumdigital.com/evmdm355/revd/
21847     Most of the DM355 chip is fully documented by TI, the most notable
21848     exception being the MPEG/JPEG coprocessor (programmable using codecs
21849     available at no cost from TI), which is omitted from its DM335 sibling:
21851       http://focus.ti.com/docs/prod/folders/print/tms320dm355.html
21853     This version can boot from the on-board DM9000 Ethernet chip, after
21854     being loaded (from NAND, MMC/SD, or UART).  In the near future, NAND
21855     and USB support could be added ... NAND support is being held back
21856     until the support for the 4-bit ECC hardware is ready.
21858     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
21860 commit 136cf92dc9e84c9a1bf567f1fe741092bf765495
21861 Author: Sanjeev Premi <premi@ti.com>
21862 Date:   Fri May 15 23:48:37 2009 +0200
21864     OMAP3EVM: Set default bootfile
21866     The current configuration doesn't define default
21867     bootfile; leading to this warning at execution:
21869     OMAP3_EVM # dhcp
21870     ...
21871     ...
21872     DHCP client bound to address 192.168.1.11
21873     *** Warning: no boot file name; using 'AC18BE16.img'
21874     TFTP from server 0.0.0.0; our IP address is 192.168.1.11;
21875     sending through gateway 192.168.1.1
21876     Filename 'AC18BE16.img'.
21877     Load address: 0x82000000
21878     Loading: *
21879     TFTP error: 'File not found' (1)
21881     Signed-off-by: Sanjeev Premi <premi@ti.com>
21883 commit 1a09d05abfc6d4d4f1fce9f6bd0275bd1c08d4f5
21884 Author: s-paulraj@ti.com <s-paulraj@ti.com>
21885 Date:   Fri May 15 23:48:36 2009 +0200
21887     ARM DaVinci: Minor Updates to base addresses
21889     Patch adds base addresses for DaVinci DM365. Updated patches for DM365
21890     will be posted soon.
21892     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
21894 commit de193e8e369f5f029ed3b6e2fc60341098eea766
21895 Author: Tom Rix <Tom.Rix@windriver.com>
21896 Date:   Fri May 15 23:48:36 2009 +0200
21898     ZOOM2 Add support for debug board detection.
21900     The logicpd web site is a good source for general information on this board.
21901     Please start looking here if the below links are broken.
21902     http://www.logicpd.com
21904     This is a pdf of the product
21905     http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
21907     This is a pdf of the product quick start guide.
21908     The debug board is described here.
21909     http://support.logicpd.com/downloads/1165/
21911     This is a wiki showing the debug board in use
21912     https://omapzoom.org/gf/project/omapzoom/wiki/?pagename=GettingStartedWithZoomII_AKA_OMAP34XII_MDP
21914     The zoom2 has an auxillary board that contains the serial, net, jtag and
21915     battery simulator.  This change supports a runtime check if the debug board is
21916     connected.
21918     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21920 commit 0c872ecd01d6782ae9d37b6eb721404a4a48f356
21921 Author: Tom Rix <Tom.Rix@windriver.com>
21922 Date:   Fri May 15 23:48:36 2009 +0200
21924     OMAP3 Port kernel omap gpio interface.
21926     Port version 2.6.27 of the linux kernel's omap gpio interface to u-boot.
21927     The orignal source is in linux/arch/arm/plat-omap/gpio.c
21929     See doc/README.omap3 for instructions on use.
21931     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21933 commit 376aee78dd66ae0dc4ce496cbe93ecc80aaad48e
21934 Author: Tom Rix <Tom.Rix@windriver.com>
21935 Date:   Fri May 15 23:48:36 2009 +0200
21937     ZOOM2 Add initial support for Zoom2
21939     Zoom2 is a new board from Texas Instruments and LogicPD
21941     The logicpd web site is a good source for general information on this board.
21942     Please start looking here if the below links are broken.
21943     http://www.logicpd.com
21945     This is a pdf of the product
21946     http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
21947     This is the product description web page
21948     http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap34x-ii-mdp
21950     This patch provides a zoom2 base target by copying zoom1 and by making some
21951     obvious changes.
21953     To configure, run
21954     make omap3_zoom2_config
21956     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21958 commit 53925acf1b5c1a1e6230cda2697640cd05bd1104
21959 Author: Sandeep Paulraj <s-paulraj@ti.com>
21960 Date:   Fri May 15 23:48:33 2009 +0200
21962     ARM DaVinci:Consolidate common u-boot.lds
21964     The u-boot.lds is common for all DaVinci boards. The patch removes
21965     multiple instances and moves the u-boot.lds to /cpu/arm926ejs/davinci
21966     folder. This addresses one of the comments i received while submitting
21967     patches for DM3xx
21969     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
21971 commit 68a531fd465f5c0b3d373e0010afed32e88d37c4
21972 Author: Tom Rix <Tom.Rix@windriver.com>
21973 Date:   Fri May 15 23:47:52 2009 +0200
21975     OMAP Consolidate common u-boot.lds to cpu layer.
21977     The u-boot.lds file is common for all omap boards.
21978     Move a cleaned up version to the cpu layer and add makefile logic to use it.
21980     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
21982 commit 65a76d4f947a193e57bb8f8093c481f27e059f8f
21983 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21984 Date:   Fri May 15 23:47:14 2009 +0200
21986     arm/dcc: add xscale support
21988     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21990 commit 66e8f9da6879fe37f3159b3997bff874842dc51d
21991 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21992 Date:   Fri May 15 23:47:14 2009 +0200
21994     arm/dcc: use static support to allow to use it at anytime
21996     the dcc can be used at the start of the cpu
21998     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22000 commit 7893aa1eb6f52c3957efc301b436f1fa11e91a00
22001 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22002 Date:   Fri May 15 23:47:13 2009 +0200
22004     ARM: Update mach-types
22006     update against linux v2.6.29
22008     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22010 commit 2907798926ee932f453ac8538e7a6c05c18428a5
22011 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22012 Date:   Fri May 15 23:47:13 2009 +0200
22014     arm920/926/926: remove non needed header
22016     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22018 commit 269dfea017b09c5a999d3053d00505c19789c350
22019 Author: David Brownell <david-b@pacbell.net>
22020 Date:   Fri May 15 23:47:13 2009 +0200
22022     davinci dm6446evm NAND update
22024     This updates the optional (non-default!) NAND support for the
22025     DaVinci DM6446 EVM:
22027      - include MTD partitioning, defaulting to what Linux uses
22029      - use a flash-based BBT, which among other things speeds bootup
22031     This matches code that's now queued for mainline Linux, and might
22032     even merge in an upcoming 2.6.30-rc; and the MTIDS are set up so
22033     that the U-Boot $mtdparts environment variable can be passed as-is
22034     on the kernel command line as a cmdlinepart override.
22036     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
22038 commit 7a4f511b59f08f51dde4ceacbd45f49b8bf2a5cc
22039 Author: David Brownell <dbrownell@users.sourceforge.net>
22040 Date:   Fri May 15 23:47:12 2009 +0200
22042     davinci: display correct clock info
22044     Move the clock-rate dumping code into the cpu/.../davinci area
22045     where it should have been, enabled by CONFIG_DISPLAY_CPUINFO,
22046     updating the format and showing the DSP clock (where relevant).
22048     Switch boards to use the cpuinfo() hook for this stuff.
22050     Remove a few now-obsolete PLL #defines.
22052     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
22054 commit daea928829098cae3c9ec6b801e52ba616725034
22055 Author: Tom Rix <Tom.Rix@windriver.com>
22056 Date:   Fri May 15 23:47:12 2009 +0200
22058     ZOOM1 Remove more legacy NAND defines.
22060     These legacy NAND defines are no longer needed by this target.
22062     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
22064 commit 65fd21c80fcaca2bbfe3ab06ab6ac68207408078
22065 Author: Tom Rix <Tom.Rix@windriver.com>
22066 Date:   Fri May 15 23:47:12 2009 +0200
22068     LED Add documentation describing the status_led and colour led API.
22070     This document describes the u-boot status LED API.
22071     This allows common u-boot commands to use a board's leds to
22072     provide status for activities like booting and downloading files.
22074     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
22076 commit 7cdf804f34378b910b4c4edd2dac7e3ca61c0825
22077 Author: Tom Rix <Tom.Rix@windriver.com>
22078 Date:   Fri May 15 23:47:12 2009 +0200
22080     ARM Add blue colour LED to status_led.
22082     There is exiting support for red,yellow,green but no blue.
22083     The main LED on the zoom2 is a blue LED.
22085     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
22087 commit b54384e3ba6b5535751f317fcd3940a53eed0d3a
22088 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22089 Date:   Fri May 15 23:47:02 2009 +0200
22091     arm: timer and interrupt init rework
22093     actually the timer init use the interrupt_init as init callback
22094     which make the interrupt and timer implementation difficult to follow
22096     so now rename it as int timer_init(void) and use interrupt_init for interrupt
22098     btw also remane the corresponding file to the functionnality implemented
22100     as ixp arch implement two timer - one based on interrupt - so all the timer
22101     related code is moved to timer.c
22103     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22105 commit 5b4bebe1d20c4f2b70d48b06aed1016785efcc25
22106 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22107 Date:   Fri May 15 23:45:22 2009 +0200
22109     OMAP3: Reorganize Makefile style
22111     Reformat COBJS handling.
22113     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22114     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
22116 commit b1966982718347f67317b3fb356439743ca68a37
22117 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22118 Date:   Fri May 15 23:45:22 2009 +0200
22120     OMAP3: Remove dublicated interrupt code
22122     Remove duplicated interrupt code. Original, identical code can be found
22123     in lib_arm/interrupts.c
22125     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22126     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
22128 commit ac7260a4190315eba4a6e526c764f6cad0bbf8c5
22129 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22130 Date:   Fri May 15 23:45:22 2009 +0200
22132     at91rm9200: move reset code to reset.c
22134     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22136 commit 2c75c78d94574ee996db2aa9b511258519471dd6
22137 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22138 Date:   Fri May 15 23:45:22 2009 +0200
22140     ixp/interrupts: Move conditional compilation to Makefile
22142     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22144 commit 8fc3bb4b0603516ad641e2de252a400b85fd869b
22145 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22146 Date:   Fri May 15 23:45:20 2009 +0200
22148     arm: cleanup remaining CONFIG_INIT_CRITICAL
22150     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22152 commit c20e28f49aaf38c7dede46d8f8fe8234fe90822c
22153 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22154 Date:   Fri May 15 23:45:12 2009 +0200
22156     arm946es: remove non used timer
22158     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22160 commit f1d944e30eb8ff89080fa03fb98d8fb5c82388d2
22161 Author: David Brownell <dbrownell@users.sourceforge.net>
22162 Date:   Fri May 15 23:44:09 2009 +0200
22164     davinci: add basic dm355/dm350/dm335 support
22166     Add some basic declarations for DaVinci DM355/DM350/DM335 support,
22167     keyed on CONFIG_SOC_DM355.  (DM35X isn't quite right because the
22168     DM357 is very different; while the DM355 is like a DM355 without
22169     the MPEG/JPEG coprocessor).
22171     These have different peripherals than the DM6446, and some of
22172     the peripherals are at different addresses.  Notably for U-Boot,
22173     there's no EMAC, and the NAND controller address is different
22175     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
22177 commit bd36fdc146654f9de4e2ad346126e6bd2990fb19
22178 Author: David Brownell <dbrownell@users.sourceforge.net>
22179 Date:   Fri May 15 23:44:09 2009 +0200
22181     davinci: fix dm644x buglets
22183     Fix two buglets in the dm644x support:  don't set two must-be-zero
22184     bits in the UART management register; and only include the I2C hooks
22185     if the I2C driver is being included.
22187     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
22189 commit f79043681ff44bae435c06f830e51e1546db7e19
22190 Author: David Brownell <dbrownell@users.sourceforge.net>
22191 Date:   Fri May 15 23:44:08 2009 +0200
22193     davinci: split out some dm644x-specific bits from psc
22195     Split out DaVinci DM6446-specific bits from more generic bits:
22197      - Add a CONFIG_SOC_DM644X.  All current boards use DM6446 chips;
22198        DM6443 and DM6441 chips differ in available peripherals.
22200      - Move most DM644X-specific bits from psc.c to a new dm644x.c file,
22201        which is conditionally built.  It provides device-specific setup.
22203     Plus minor coding style and comment updates with respect to the PSC.
22205     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
22207 commit 48ef5729555f41f51618b6a3016ac5c53c7c75dc
22208 Author: David Brownell <dbrownell@users.sourceforge.net>
22209 Date:   Fri May 15 23:44:08 2009 +0200
22211     davinci: cpu-specific build uses conditional make syntax
22213     Update cpu/arm926ejs/davinci/Makefile to use COBJ-y type syntax.
22214     Add the first conditional: for EMAC driver support.  Not all
22215     chips have an EMAC; and boards might not use it, anyway.
22217     This doesn't touch PHY configuration; that should eventually
22218     become conditional too.
22220     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
22222 commit 7b7808ae6dace59287f565e9323cda7b098a5612
22223 Author: David Brownell <dbrownell@users.sourceforge.net>
22224 Date:   Fri May 15 23:44:06 2009 +0200
22226     davinci: move psc support board-->cpu
22228     Move DaVinci PSC support from board/* to cpu/* where it belongs.
22229     The PSC module manages clocks and resets for all DaVinci-family
22230     SoCs, and isn't at all board-specific.
22232     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
22234 commit 84f7411cb901b8df2391cf7e967ad0737f6194aa
22235 Author: David Brownell <david-b@pacbell.net>
22236 Date:   Tue Apr 14 08:52:58 2009 -0700
22238     DaVinci now respects SKIP_LOWLEVEL_INIT
22240     Don't needlessly include lowlevel init code; that's only really
22241     needed with boot-from NOR (not boot-from-NAND).  The 2nd stage
22242     loader (UBL) handles that before it loads U-Boot.
22244     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
22246 commit 641e0925e4bf7adf8e2e04e3ad81b840fd71cadd
22247 Author: David Brownell <dbrownell@users.sourceforge.net>
22248 Date:   Sun Apr 12 22:49:26 2009 -0700
22250     DaVinci Ethernet cleanup
22252     Chips without the EMAC controller won't need the utilities
22253     it uses to read an Ethernet address from EEPROM; so don't
22254     include them needlessly.
22256     Use is_valid_ether() to validate the address from EEPROM.
22257     All-zero addresses aren't the only invalid addresses.
22258     A fully erased EEPROM returns all-ones, also invalid...
22260     Switch those Ethernet utilities to use "%pM" for printing
22261     MAC addresses; and not say ROM when they mean EEPROM.
22263     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
22264     Acked-by: Ben Warren <biggerbadderben@gmail.com>
22266 commit c790b04d230363d03939dc008bcc80f3ba4de1ae
22267 Author: Stefan Roese <sr@denx.de>
22268 Date:   Mon May 11 15:50:12 2009 +0200
22270     lib_arch/board.c: Move malloc initialization before flash_init()
22272     This patch moves the malloc initialization before calling flash_init().
22273     Upcoming changes to the NOR FLASH common CFI driver with optional
22274     MTD infrastructure and MTD concatenation support will call malloc().
22275     And nothing really speaks against enabling malloc just a little earlier
22276     in the boot stage. Some architectures already enable malloc before
22277     calling flash_init() so they don't need any changes here.
22279     Signed-off-by: Stefan Roese <sr@denx.de>
22280     Cc: Wolfgang Denk <wd@denx.de>
22281     Cc: Mike Frysinger <vapier@gentoo.org>
22282     Cc: Scott McNutt <smcnutt@psyent.com>
22283     Cc: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
22284     Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22285     Cc: Daniel Hellstrom <daniel@gaisler.com>
22286     Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22287     Cc: John Rigby <jcrigby@gmail.com>
22289 commit d873133f2ba9bd613d5f6552c31cc70fb13f15d3
22290 Author: Stefan Roese <sr@denx.de>
22291 Date:   Mon May 11 13:46:14 2009 +0200
22293     ppc4xx: Add Sequoia RAM-booting target
22295     This patch adds another build target for the AMCC Sequoia PPC440EPx
22296     eval board. This RAM-booting version is targeted for boards without
22297     NOR FLASH (NAND booting) which need a possibility to initially
22298     program their NAND FLASH. Using a JTAG debugger (e.g. BDI2000/3000)
22299     configured to setup the SDRAM, this debugger can load this RAM-
22300     booting image to the target address in SDRAM (in this case 0x1000000)
22301     and start it there. Then U-Boot's standard NAND commands can be
22302     used to program the NAND FLASH (e.g. "nand write ...").
22304     Here the commands to load and start this image from the BDI2000:
22306     440EPX>reset halt
22307     440EPX>load 0x1000000 /tftpboot/sequoia/u-boot.bin
22308     440EPX>go 0x1000000
22310     Please note that this image automatically scans for an already
22311     initialized SDRAM TLB (detected by EPN=0). This TLB will not be
22312     cleared. This TLB doesn't need to be TLB #0, this RAM-booting
22313     version will detect it and preserve it. So booting via BDI2000
22314     will work and booting with a complete different TLB init via
22315     U-Boot works as well.
22317     Signed-off-by: Stefan Roese <sr@denx.de>
22319 commit 837db3d87f4bfe9261629fb4a1bb433506a3056a
22320 Author: Mike Frysinger <vapier@gentoo.org>
22321 Date:   Wed May 6 08:41:45 2009 -0400
22323     tools/envcrc: add --binary option to export embedded env
22325     The --binary option to envcrc can be used to export the embedded env as a
22326     binary blob so that it can be manipulated/examined/whatever externally.
22328     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22330 commit 18cc7afd9a153a66854af862d14ba01c5496cf07
22331 Author: Ben Warren <biggerbadderben@gmail.com>
22332 Date:   Tue Apr 28 16:50:53 2009 -0700
22334     Enable CONFIG_NET_MULTI on all remaining PPC4xx boards
22336     All in-tree PPC4xx boards now use CONFIG_NET_MULTI
22338     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22339     Signed-off-by: Stefan Roese <sr@denx.de>
22341 commit 70be6c2d40076f14062b892152649f9a62832fc9
22342 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22343 Date:   Wed Apr 29 09:51:01 2009 +0200
22345     4xx: Add support for DP405 hardware variants
22347     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
22348     Signed-off-by: Stefan Roese <sr@denx.de>
22350 commit de47a34d4de1d007a8951efd072283516d580ffa
22351 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22352 Date:   Wed Apr 29 09:51:00 2009 +0200
22354     4xx: Remove binary cpld bitstream from DP405 board
22356     This patch removes the cpld binary bitstream that is
22357     used by esd's cpld command on DP405 boards.
22359     Because u-boot with an external cpld bitstream may not
22360     take more space in flash than before the u-boot binary is
22361     shrinked a little bit. Some unused featues have been
22362     removed therefore.
22364     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
22365     Signed-off-by: Stefan Roese <sr@denx.de>
22367 commit 700d553fd3afe804086de8f73d95153315eb0c32
22368 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22369 Date:   Wed Apr 29 09:50:59 2009 +0200
22371     4xx: Remove binary cpld bitstream from VOM405 board
22373     This patch removes the cpld binary bitstream that is
22374     used by esd's cpld command on VOM405 boards.
22376     Because u-boot with an external cpld bitstream may not
22377     take more space in flash than before the u-boot binary is
22378     shrinked a little bit.
22380     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
22381     Signed-off-by: Stefan Roese <sr@denx.de>
22383 commit 0bb10630364c48d9857cbf5353da609fc4dd6751
22384 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22385 Date:   Wed Apr 29 09:50:58 2009 +0200
22387     4xx: Remove binary cpld bitstream from PMC405 board
22389     This patch removes the cpld binary bitstream that is
22390     used by esd's cpld command on PMC405 boards.
22392     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
22393     Signed-off-by: Stefan Roese <sr@denx.de>
22395 commit 7cc635fb35f5b94e304fa2243d56758f57f6416b
22396 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22397 Date:   Wed Apr 29 09:50:57 2009 +0200
22399     4xx: Remove binary cpld bitstream from CMS700 board
22401     This patch removes the cpld binary bitstream that is
22402     used by esd's cpld command on CMS700 boards.
22404     Because u-boot with an external cpld bitstream may not
22405     take more space in flash than before the u-boot binary is
22406     shrinked a little bit. Some unused featues have been
22407     removed therefore.
22409     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
22410     Signed-off-by: Stefan Roese <sr@denx.de>
22412 commit c1b2f79788deec75773b1d944d8aaf4a6d5baf9e
22413 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22414 Date:   Wed Apr 29 09:50:56 2009 +0200
22416     esd/common: extend cpld command with address parameter
22418     This patch adds support for an address parameter to esd's
22419     cpld command. This is in preparation to remove compiled-in
22420     binary cpld (xsvf) bitstreams.
22422     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
22423     Signed-off-by: Stefan Roese <sr@denx.de>
22425 commit 9166b776350d16460c7330bfb0a50154ea0a1903
22426 Author: Peter Tyser <ptyser@xes-inc.com>
22427 Date:   Sat Apr 18 22:34:06 2009 -0500
22429     cmd_i2c: Fix i2c help command output when CONFIG_I2C_MUX
22431     When CONFIG_I2C_MUX was defined the output of 'help i2c' was not
22432     correct, eg:
22434     => help i2c
22435     i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes.
22436     speed [speed] - show or set I2C bus speed
22437     i2c dev [dev] - show or set current I2C bus
22438     ...
22440     It has been changed to:
22441     i2c speed [speed] - show or set I2C bus speed
22442     i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes
22443     i2c dev [dev] - show or set current I2C bus
22444     ...
22446     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22448 commit 0a45a6357b02e5ce5bf899a60db09def6a129fee
22449 Author: Peter Tyser <ptyser@xes-inc.com>
22450 Date:   Sat Apr 18 22:34:05 2009 -0500
22452     cmd_i2c: Clean up trivial helper functions
22454     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22456 commit e96ad5d3aba42f8ffe99f7cc5ec1bb9f21810035
22457 Author: Peter Tyser <ptyser@xes-inc.com>
22458 Date:   Sat Apr 18 22:34:04 2009 -0500
22460     cmd_i2c: Clean up i2c command argument parsing
22462     argc and argv should only be modified once instead of once for
22463     every i2c sub-command
22465     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22467 commit 0f89c54be92773b23d66ac401ba6acb6144100c3
22468 Author: Peter Tyser <ptyser@xes-inc.com>
22469 Date:   Sat Apr 18 22:34:03 2009 -0500
22471     i2c: Update references to individual i2c commands
22473     The individual i2c commands imd, imm, inm, imw, icrc32, iprobe, iloop,
22474     and isdram are no longer available so all references to them have been
22475     updated to the new form of "i2c <cmd>".
22477     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22479 commit d48eb5131d287f52bb85b4c58c8680a2e8e3b641
22480 Author: Peter Tyser <ptyser@xes-inc.com>
22481 Date:   Sat Apr 18 22:34:02 2009 -0500
22483     i2c: Remove deprecated individual i2c commands
22485     The following individual I2C commands have been removed: imd, imm, inm,
22486     imw, icrc32, iprobe, iloop, isdram.
22488     The functionality of the individual commands is still available via
22489     the 'i2c' command.
22491     This change only has an impact on those boards which did not have
22492     CONFIG_I2C_CMD_TREE defined.
22494     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22496 commit 655b34a78adf60ef260981688837904208883ae9
22497 Author: Peter Tyser <ptyser@xes-inc.com>
22498 Date:   Sat Apr 18 22:34:01 2009 -0500
22500     i2c: Create common default i2c_[set|get]_bus_speed() functions
22502     New default, weak i2c_get_bus_speed() and i2c_set_bus_speed() functions
22503     replace a number of architecture-specific implementations.
22505     Also, providing default functions will allow all boards to enable
22506     CONFIG_I2C_CMD_TREE.  This was previously not possible since the
22507     tree-form of the i2c command provides the ability to display and modify
22508     the i2c bus speed which requires i2c_[set|get]_bus_speed() to be
22509     present.
22511     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22513 commit 8229e9c04f7019ddd76aea05d4dca044cbc9a34a
22514 Author: Peter Tyser <ptyser@xes-inc.com>
22515 Date:   Sat Apr 18 22:34:00 2009 -0500
22517     cm5200: Make function test command names more unique
22519     Add "_test" to cm5200's function test command names to prevent
22520     overlap with common, global function names.  Originally, the
22521     "do_i2c" function test command interfered with
22522     common/cmd_i2c.c's "do_i2c" when CONFIG_I2C_CMD_TREE was defined.
22524     The functions were also made static as they are not globally accessed.
22526     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22528 commit f0722ee762e8dada9d7f74ac2745e043f83aae85
22529 Author: Peter Tyser <ptyser@xes-inc.com>
22530 Date:   Fri Apr 24 15:34:09 2009 -0500
22532     tsi108_i2c: Add i2c_init() stub function
22534     Add the i2c_init() function so that the tsi108_i2c.c driver fits
22535     U-Boot's standard I2C API which is utilized by cmd_i2c.c
22537     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22539 commit 8d907e79bc9babb27396e34be54cfdc36ff62fb9
22540 Author: Peter Tyser <ptyser@xes-inc.com>
22541 Date:   Fri Apr 24 15:34:08 2009 -0500
22543     mpc7448hpc2: Add CONFIG_SYS_I2C_SPEED define
22545     Add standard CONFIG_SYS_I2C_SPEED define for the mpc7448hpc2 so that
22546     it can use the common 'i2c speed' command.  Note that the I2C controller
22547     utilized by the mpc7448hpc2 has a fixed speed and cannot be changed
22548     dynamically.
22550     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22552 commit a056b1ce9e19b4d4ab3dd01c3f897dcd832cd37f
22553 Author: Peter Tyser <ptyser@xes-inc.com>
22554 Date:   Fri Apr 24 15:34:07 2009 -0500
22556     Marvell: i2c cleanup
22558     The following changes were made, primarily to bring the Marvell i2c
22559     driver in line with U-Boot's current I2C API:
22560     - Made i2c_init() globally accessible
22561     - Made i2c_read() and i2c_write() return an integer
22562     - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
22563       offhand chance someone adds slave support in the future
22565     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22567 commit 54afc6ee10c8cd09598d814d49e601359b005e49
22568 Author: Peter Tyser <ptyser@xes-inc.com>
22569 Date:   Fri Apr 24 15:34:06 2009 -0500
22571     cpci750: i2c cleanup
22573     The following changes were made, primarily to bring the cpci750 i2c
22574     driver in line with U-Boot's current I2C API:
22575     - Made i2c_init() globally accessible
22576     - Made i2c_read() and i2c_write() return an integer
22577     - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
22578       offhand chance someone adds slave support in the future
22580     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22582 commit 9c90a2c8e87414007a016b7cd099ac1e32fd301b
22583 Author: Peter Tyser <ptyser@xes-inc.com>
22584 Date:   Fri Apr 24 15:34:05 2009 -0500
22586     i2c.h: Provide a default CONFIG_SYS_I2C_SLAVE value
22588     Many boards/controllers/drivers don't support an I2C slave interface,
22589     however CONFIG_SYS_I2C_SLAVE is used in common code so provide a
22590     default
22592     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22594 commit e7563aff174f77aa61dab1ef5d9b47bebaa43702
22595 Author: Kumar Gala <galak@kernel.crashing.org>
22596 Date:   Thu Jun 11 23:42:35 2009 -0500
22598     fsl-ddr: Fix handling of >4G of memory when !CONFIG_PHYS_64BIT
22600     The ddr code computes most things as 64-bit quantities and had some places
22601     in the middle that it was using phy_addr_t and phys_size_t.
22603     Instead we use unsigned long long through out and only at the last stage of
22604     setting the LAWs and reporting the amount of memory to the board code do we
22605     truncate down to what we can cover via phys_size_t.
22607     This has the added benefit that the DDR controller itself is always setup
22608     the same way regardless of how much memory we have.  Its only the LAW
22609     setup that limits what is visible to the system.
22611     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22613 commit d4b130dc80761b430dc5b410159cd158fca1a348
22614 Author: Kumar Gala <galak@kernel.crashing.org>
22615 Date:   Thu Jun 11 23:40:34 2009 -0500
22617     85xx: Use print_size to report amount of memory not mapped by TLBs
22619     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22621 commit 6e2aebc33fa740c068fe28d40eaf0319b7c7287e
22622 Author: Haiying Wang <Haiying.Wang@freescale.com>
22623 Date:   Wed May 20 12:30:42 2009 -0400
22625     85xx: Add README for MPC8569MDS
22627     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22628     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22630 commit b2aab386e957ba684d4f2a466bfaa91770e5058a
22631 Author: Haiying Wang <Haiying.Wang@freescale.com>
22632 Date:   Wed May 20 12:30:33 2009 -0400
22634     85xx: Add UART1 support for MPC8569MDS
22636     MPC8569 UART1 signals are muxed with PortF bit[9-12], we need to define
22637     those pins before using UART1.
22639     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22640     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22642 commit 399b53cbab0b377ac4c5c16c19c6e41b68a9c719
22643 Author: Haiying Wang <Haiying.Wang@freescale.com>
22644 Date:   Wed May 20 12:30:32 2009 -0400
22646     85xx: Add PIB support at CS4/CS5 for MPC8569MDS
22648     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22649     Signed-off-by: Yu Liu <Yu.Liu@freescale.com>
22650     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22652 commit fb27949059f1bc84381a6216a819090f0cdbaa70
22653 Author: Haiying Wang <Haiying.Wang@freescale.com>
22654 Date:   Thu Jun 4 16:12:39 2009 -0400
22656     85xx: Fix some settings for MPC8569MDS board
22658     - Increase the size of malloc to 512KB because MPC8569MDS needs more memory for
22659     malloc to support up to eight Ethernet interfaces.
22660     - Move Environment address out of uboot thus the saved environment variables
22661     will not be erased after u-boot is re-programmed.
22663     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22664     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22666 commit c7f60fd29f2d638d080cdf1a49ad985b85f9429d
22667 Author: Haiying Wang <Haiying.Wang@freescale.com>
22668 Date:   Wed May 20 12:30:30 2009 -0400
22670     85xx: Fix MURAM size for MPC8569
22672     MPC8569 has 128K bytes MURAM.
22674     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
22675     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22677 commit a53c997dd7fc858f2a27f5a47b200567b9343ae5
22678 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22679 Date:   Fri May 22 20:23:51 2009 +0200
22681     at91/cpu.c: add missing Copyright & GPL header
22683     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22685 commit aa446a591aca46ef2b53cc6598ea8091feb45444
22686 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22687 Date:   Sun Jun 7 21:45:16 2009 +0900
22689     apollon: Fix a OBJCFLAGS typo
22691     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
22693 commit 580611cb0932143fc2d7a735cfa9ce1ef34d6002
22694 Author: Wolfgang Denk <wd@denx.de>
22695 Date:   Wed Jun 10 00:19:28 2009 +0200
22697     Prepare 2009.06-rc3
22699     Update CHANGELOG
22701     Signed-off-by: Wolfgang Denk <wd@denx.de>
22703 commit 3a76ab5c166d5956885f803ce975e7151cc0ca0e
22704 Author: Wolfgang Denk <wd@denx.de>
22705 Date:   Wed Jun 10 00:15:11 2009 +0200
22707     rmu board: fix error: 'CONFIG_ENV_SECT_SIZE' undeclared
22709     Signed-off-by: Wolfgang Denk <wd@denx.de>
22711 commit 165f9859b64ff59f0cfae3cc70a7e7ded7aaa4a7
22712 Author: Daniel Mack <daniel@caiaq.de>
22713 Date:   Thu Jun 4 19:44:12 2009 +0200
22715     ubifs: fix small error path mismatch
22717     In do_readpage(), don't free 'dn' if its allocation failed.
22719     Signed-off-by: Daniel Mack <daniel@caiaq.de>
22721 commit de7cf709ebd3c01fbd094e8853dabb410c0370a1
22722 Author: Wolfgang Denk <wd@denx.de>
22723 Date:   Thu Jun 4 00:31:07 2009 +0200
22725     EP88x: fix broken linker script
22727     Signed-off-by: Wolfgang Denk <wd@denx.de>
22728     Tested-by: Mikhail Zaturenskiy <mzaturenskiy@shoppertrak.com>
22730 commit 7a2063bd80d3b58b2dd5d5e58f4411f8d250576c
22731 Author: Wolfgang Denk <wd@denx.de>
22732 Date:   Fri May 15 00:16:02 2009 +0200
22734     TQM85xx: minor config file cleanup
22736     Remove "saveenv" from "update" definition: the environment is outside
22737     the U-Boot image on TQM85xx and therefor not affected by updates.
22739     Also "beautify" code a bit (vertical alignment).
22741     Signed-off-by: Wolfgang Denk <wd@denx.de>
22743 commit c0296b1801fc9426d772fa75fe58458db605dfee
22744 Author: Wolfgang Denk <wd@denx.de>
22745 Date:   Fri May 15 00:16:01 2009 +0200
22747     TQM85xx: adapt for new flash types
22749     Old TQM85xx boards had 'M' type Spansion Flashes from the S29GLxxxM
22750     series while new boards have 'N' type Flashes from the S29GLxxxN
22751     series, which have bigger sectors: 2 x 128 instead of 2 x 64 KB.
22753     We now change the configuration to the new flash types for all
22754     boards; this also works on old boards - we just waste two flash
22755     sectors for the environment which could be smaller there.
22757     Signed-off-by: Wolfgang Denk <wd@denx.de>
22759 commit 6735104924f06340071a6914a9ee3345607fc102
22760 Author: Dave Liu <daveliu@freescale.com>
22761 Date:   Mon May 18 17:49:23 2009 +0800
22763     85xx: Fix the wrong SYS_CLK_IN for 8569MDS
22765     The SYS_CLK_IN of MPC8569MDS is 66.66MHz,
22766     The DDR_CLK_IN is same with SYS_CLK_IN in 8569 processor.
22767     so, change the SYS_CLK_IN from 66MHz to 66.66MHz.
22769     Signed-off-by: Dave Liu <daveliu@freescale.com>
22771 commit 16e7559c08b6f29db4596d795b92914c01e6a1b3
22772 Author: Dave Liu <daveliu@freescale.com>
22773 Date:   Fri May 15 10:27:44 2009 +0800
22775     85xx: Fix the wrong BCSR address of 8569MDS
22777     The BCSR17[7] = 1 will unlock the write protect of FLASH.
22778     The WP# pin only controls the write protect of top/bottom sector,
22779     That is why we can save env, but we can't write the first sector
22780     before the patch.
22782     Signed-off-by: Dave Liu <daveliu@freescale.com>
22784 commit 90d13b8ac3d515349626d7c8a3dc34ef38c43fa6
22785 Author: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
22786 Date:   Tue Jun 2 16:27:10 2009 -0500
22788     85xx: bugfix for reading maximum TLB size on mpc85xx
22790     The MAXSIZE field in the TLB1CFG register is 4 bits, not 8 bits.
22791     This made setup_ddr_tlbs() try to set up a TLB larger than the e500 maximum
22792     (256 MB)
22793     which made u-boot hang in board_init_f() when trying to create a new stack
22794     in RAM.
22795     I have an mpc8540 with one 1GB dimm.
22797     Signed-off-by: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
22798     Signed-off-by: Andy Fleming <afleming@freescale.com>
22799     Acked-by: Kumar Gala <galak@kernel.crashing.org>
22801 commit 1b5291dddf5f16c7ae10e3cb165882fa96038b26
22802 Author: Dave Liu <daveliu@freescale.com>
22803 Date:   Fri Mar 27 14:32:43 2009 +0800
22805     85xx: Fix the clock adjust of mpc8569mds board
22807     Currently the clk_adj is 6 (3/4 cycle), The settings will cause
22808     the DDR controller hang at the data init. Change the clk_adj
22809     from 6 to 4 (1/2 cycle), make the memory system stable.
22811     Signed-off-by: Dave Liu <daveliu@freescale.com>
22813 commit faa14babd7466dfade358f9cac128ae246b9bf1b
22814 Author: RONETIX - Ilko Iliev <iliev@ronetix.at>
22815 Date:   Fri Jun 5 16:54:31 2009 +0200
22817     at91: fix a USB problem for AT91SAM9261
22819     This patch corrects the missing PLLB initialization in usb_cpu_init()
22820     for AT91SAM9261.
22821     Because of the missing PLLB initialization, the USB support for all
22822     AT91SAM9261 based boards will work only if the PLLB is configured by a
22823     precedent bootloader.
22825     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
22826     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22827     Signed-off-by: Remy Bohmer <linux@bohmer.net>
22829 commit 0c24dec550ddb7d86b8bfdd8645b18479f73e6e2
22830 Author: Felix Radensky <felix@embedded-sol.com>
22831 Date:   Sun May 31 20:44:15 2009 +0300
22833     ppc4xx/net: Fix MDIO clock setup
22835     This patch fixes MDIO clock setup in case when OPB frequency is 100MHz.
22836     Current code assumes that the value of sysinfo.freqOPB is 100000000
22837     when OPB frequency is 100MHz. In reality it is 100000001. As a result
22838     MDIO clock is set to incorrect value, larger than 2.5MHz, thus violating
22839     the standard. This in not a problem on boards equipped with Marvell PHYs
22840     (e.g. Canyonlands), since those PHYs support MDIO clocks up to 8.3MHz,
22841     but can be a problem for other PHYs (e.g. Realtek ones).
22843     Signed-off-by: Felix Radensky <felix@embedded-sol.com>
22844     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22846 commit d65e34d12514de2bbe3b8f519761d641c081bad0
22847 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22848 Date:   Wed Feb 25 14:27:29 2009 +0900
22850     rtl8169: fix PCI system memory address
22852     When PCI device use system memory, some PCI host controller should be
22853     set physical memory address.
22855     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22856     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22858 commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43
22859 Author: Manikandan Pillai <mani.pillai@ti.com>
22860 Date:   Wed Apr 8 09:14:35 2009 +0530
22862     SMC911x driver fixed for NFS boot
22864     eth_halt() function in the smc911x drivers used to call the
22865     smc911x_reset() function. eth_halt() used to be called after
22866     tftp transfers. This used to put the ethernet chip in reset
22867     while the linux boots up resulting in the ethernet driver
22868     not coming up. NFS boot used to fail as a result.
22870     This patch calls smc911x_shutdown() instead of smc911x_reset().
22871     Some comments received has also been fixed.
22873     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
22874     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22876 commit e5a3bc2401a23f1890611f020f57f94824a534db
22877 Author: Remy Bohmer <linux@bohmer.net>
22878 Date:   Sun May 3 12:11:40 2009 +0200
22880     Add config option for disabling DM9000-SROM support.
22882     Some boards do not have SROM support for the DM9000 network adapter.
22883     Instead of listing these board names in the driver code, make this
22884     option configurable from the board config file.
22886     It also removes a build warning for the at91sam9261ek board:
22887     'dm9000x.c:545: warning: 'read_srom_word' defined but not used'
22889     And it repaires the trizepsiv board build which was broken around the
22890     same routines
22892     Signed-off-by: Remy Bohmer <linux@bohmer.net>
22893     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22895 commit 3c9b1ee17e19bd6d80344678d41a85e52b0be713
22896 Author: Kim Phillips <kim.phillips@freescale.com>
22897 Date:   Fri Jun 5 14:11:33 2009 -0500
22899     mpc83xx: don't set SICRH_TSOBI1 to RMII/RTBI operation
22901     In GMII mode (which operates at 3.3V) both SICRH TSEC1/2 output buffer
22902     impedance bits should be clear, i.e., SICRH[TSIOB1] = 0 and SICRH[TSIOB2] = 0.
22903     SICRH[TSIOB1] was erroneously being set high.
22905     U-Boot always operated this PHY interface in GMII mode.  It is assumed this
22906     was missed in the clean up by the original board porters, and copied along
22907     to the TQM and sbc boards.
22909     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22910     Acked-by: Ira Snyder <iws@ovro.caltech.edu>
22911     Reviewed-by: David Hawkins <dwh@ovro.caltech.edu>
22912     Tested-by: Paul Gortmaker <paul.gortmaker@windriver.com>
22913     CC: Dave Liu <DaveLiu@freescale.com>
22915 commit 2c0234fa79122a5aa77c4e17c33eb2fe184b61a7
22916 Author: Daniel Mack <daniel@caiaq.de>
22917 Date:   Wed Apr 8 13:23:37 2009 +0200
22919     smc911x: write back the manually set MAC address
22921     If the MAX address is given by the environment, write it back to the
22922     hardware.
22924     Signed-off-by: Daniel Mack <daniel@caiaq.de>
22925     Cc: Sascha Hauer <s.hauer@pengutronix.de>
22926     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22928 commit dfcd7f21607fd847236b04bb1a8d59a7c10ab99c
22929 Author: Wolfgang Denk <wd@denx.de>
22930 Date:   Fri May 15 00:16:03 2009 +0200
22932     Redundant Environment: protect full sector size
22934     Several boards used different ways to specify the size of the
22935     protected area when enabling flash write protection for the sectors
22936     holding the environment variables: some used CONFIG_ENV_SIZE and
22937     CONFIG_ENV_SIZE_REDUND, some used CONFIG_ENV_SECT_SIZE, and some even
22938     a mix of both for the "normal" and the "redundant" areas.
22940     Normally, this makes no difference at all. However, things are
22941     different when you have to deal with boards that can come with
22942     different types of flash chips, which may have different sector
22943     sizes.
22945     Here we may have to chose CONFIG_ENV_SECT_SIZE such that it fits the
22946     biggest sector size, which may include several sectors on boards using
22947     the smaller sector flash types. In such a case, using CONFIG_ENV_SIZE
22948     or CONFIG_ENV_SIZE_REDUND to enable the protection may lead to the
22949     case that only the first of these sectors get protected, while the
22950     following ones aren't.
22952     This is no real problem, but it can be confusing for the user -
22953     especially on boards that use CONFIG_ENV_SECT_SIZE to protect the
22954     "normal" areas, while using CONFIG_ENV_SIZE_REDUND for the
22955     "redundant" area.
22957     To avoid such inconsistencies, I changed all sucn boards that I found
22958     to consistently use CONFIG_ENV_SECT_SIZE for protection. This should
22959     not cause any functional changes to the code.
22961     Signed-off-by: Wolfgang Denk <wd@denx.de>
22962     Cc: Paul Ruhland
22963     Cc: Pantelis Antoniou <panto@intracom.gr>
22964     Cc: Stefan Roese <sr@denx.de>
22965     Cc: Gary Jennejohn <garyj@denx.de>
22966     Cc: Dave Ellis <DGE@sixnetio.com>
22967     Acked-by: Stefan Roese <sr@denx.de>
22969 commit b81830f6e3b3e6ed114d071eb107965e49fa9b5a
22970 Author: Ilya Yanok <yanok@emcraft.com>
22971 Date:   Thu May 14 14:03:09 2009 +0400
22973     mmc: it's safe to ignore mmc_send_if_cond() return value
22975     Return value of mmc_send_if_cond() can be safely ignored (as it is
22976     done in Linux). This makes older cards work with MXC MCI controller.
22978     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
22980 commit dba6fcf6517faa5dda7df8109febe03c9c72a6f5
22981 Author: Stefan Roese <sr@denx.de>
22982 Date:   Mon May 11 15:54:13 2009 +0200
22984     cfi_mtd: Fix bug in last sector detection
22986     This patch now enabled this cfi-mtd wrapper to correctly detect and
22987     erase the last sector in an NOR FLASH device.
22989     Signed-off-by: Stefan Roese <sr@denx.de>
22991 commit 4e3d89ba948eef801ffd46ef862cdede5b3f8320
22992 Author: Yauhen Kharuzhy <jekhor@gmail.com>
22993 Date:   Thu May 7 00:43:30 2009 +0300
22995     mmc: Fix decoding of SCR & function switch data on little-endian machines
22997     SCR & switch data are read from card as big-endian words and should be
22998     converted to CPU byte order.
23000     Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
23001     Signed-off-by: Andy Fleming <afleming@freescale.com>
23003 commit f33cb34b3971dabe3720d577b0e1b8601c09fe17
23004 Author: Yauhen Kharuzhy <jekhor@gmail.com>
23005 Date:   Thu May 7 13:08:53 2009 +0300
23007     mmc: Remove return from mmc_init for non SD 2.0 compatible cards.
23009     Cards which are not compatible with SD 2.0 standard, may return response
23010     for CMD8 command, but it will be invalid in terms of SD 2.0. We should
23011     accept this case as admissible, just like Linux does.
23013     Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
23014     Signed-off-by: Andy Fleming <afleming@freescale.com>
23016 commit 998be3dd59ed0af4bec38324047fecfa88ac45db
23017 Author: Rabin Vincent <rabin@rab.in>
23018 Date:   Sun Apr 5 13:30:56 2009 +0530
23020     mmc: drop unnecessary casts
23022     Now that response is a uint, we can drop all the casts.
23024     Signed-off-by: Rabin Vincent <rabin@rab.in>
23026 commit 0b453ffe28bb9227d86ddbe0893bd19c93f04ed7
23027 Author: Rabin Vincent <rabin@rab.in>
23028 Date:   Sun Apr 5 13:30:55 2009 +0530
23030     mmc: fix response decoding on little endian
23032     The mmc code defines the response as an array of chars.  However, it
23033     access the response bytes both as (i) an array of four uints (with
23034     casts) and (ii) as individual chars.  The former case is used more
23035     often, including by the driver when it assigns the response.
23037     The char-wise accesses are broken on little endian systems because they
23038     assume that the bytes in the uints are in big endian byte order.
23040     This patch fixes this by changing the response to be an array of four
23041     uints and replacing the char-wise accesses with equivalent uint-wise
23042     accesses.
23044     Signed-off-by: Rabin Vincent <rabin@rab.in>
23046 commit 9b1f942c09dd942e6de3185caa81c111b14de567
23047 Author: Rabin Vincent <rabin@rab.in>
23048 Date:   Sun Apr 5 13:30:54 2009 +0530
23050     mmc: use lldiv to fix arm eabi build
23052     The generic MMC core uses direct long long divisions, which do not build
23053     with ARM EABI toolchains.  Use lldiv() instead, which works everywhere.
23055     Signed-off-by: Rabin Vincent <rabin@rab.in>
23057 commit e85649c7e683faea1ccfddc9fa9abc62f38e4201
23058 Author: Rabin Vincent <rabin@rab.in>
23059 Date:   Sun Apr 5 13:30:53 2009 +0530
23061     mmc: check find_mmc_device return value
23063     find_mmc_device returns NULL if an invalid device number is specified.
23064     Check for this to avoid dereferencing NULL pointers.
23066     Signed-off-by: Rabin Vincent <rabin@rab.in>
23068 commit ac0865ff33870cdf2cd480165045e1bc311e9fa2
23069 Author: Rabin Vincent <rabin@rab.in>
23070 Date:   Sun Apr 5 13:30:52 2009 +0530
23072     mmc: clean up help texts
23074     Remove some repeated words and superfluous newlines in the mmc command
23075     help entries.
23077     Signed-off-by: Rabin Vincent <rabin@rab.in>
23079 commit 7d6900ebe16d679c0e03f8d1584b64057a64ce39
23080 Author: Mike Frysinger <vapier@gentoo.org>
23081 Date:   Fri May 29 17:01:48 2009 -0400
23083     Blackfin: spi: fix pin handling of SPI0 SSEL4
23085     CS4 on SPI0 has a dedicated PH8 pin which needs to be enabled as a
23086     peripheral in order to work.
23088     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23090 commit 2157359dad2533987f5eb0181ef543693fad6a33
23091 Author: Mike Frysinger <vapier@gentoo.org>
23092 Date:   Tue May 26 02:51:57 2009 -0400
23094     Blackfin: fix if() logic in bootrom evt1 check
23096     A missing set of parenthesis caused the silicon revision to apply only to
23097     the BF533 and not the BF531/BF532 variants.
23099     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23101 commit 76b5883da2cf049cd410901c04ea450e5f5c27c3
23102 Author: Stefan Roese <sr@denx.de>
23103 Date:   Sat May 16 12:04:22 2009 +0200
23105     jffs2/mtdparts: Fix problem with usage from JFFS2 and MTDPARTS together
23107     Currently using JFFS2 with MTDPARTS enabled doesn't work. This is because
23108     mtdparts_init() is available in both files, cmd_mtdparts.c and
23109     cmd_jffs2.c. Please note that in the original cmd_jffs2.c file (before
23110     the jffs2/mtdparts command/file split those 2 different versions
23111     already existed. So this is nothing new. The main problem is that the
23112     variables "current_dev" and "current_partnum" are declared in both
23113     files now. This doesn't work.
23115     This patch now changes the names of those variable to more specific
23116     names: "current_mtd_dev" and "current_mtd_partnum". This is because
23117     this patch also changes the declaration from static to global, so
23118     that they can be used from both files.
23120     Please note that my first tests were not successful. The MTD devices
23121     selected via mtdparts are now accessed but I'm failing to see the
23122     directory listed via the "ls" command. Nothing is displayed. Perhaps
23123     I didn't generate the JFFS2 image correctly (I never used JFFS2 in
23124     U-Boot before). Not sure. Perhaps somebody else could take a look at
23125     this as well. I'll continue looking into this on Monday.
23127     Signed-off-by: Stefan Roese <sr@denx.de>
23128     Cc: Wolfgang Denk <wd@denx.de>
23129     Cc: Detlev Zundel <dzu@denx.de>
23130     Cc: Ilya Yanok <yanok@emcraft.com>
23131     Cc: Renaud barbier <renaud.barbier@ge.com>
23133 commit ab687907980fa28940a1a992d3f1c5d17cdbbf5d
23134 Author: Graf Yang <graf.yang@analog.com>
23135 Date:   Sun May 24 02:34:34 2009 -0400
23137     Blackfin: bf518f-ezbrd: setup portmux for async flash
23139     The pins for async memory where parallel flash lives are not enabled by
23140     default, so make sure we mux them as needed.
23142     Signed-off-by: Graf Yang <graf.yang@analog.com>
23143     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23145 commit f40f6db278f602b55820693634a7256b0b4e4b80
23146 Author: Stefan Roese <sr@denx.de>
23147 Date:   Wed May 20 10:58:03 2009 +0200
23149     nand: Fix problem with ECC ordering for PPC4xx NDFC platforms
23151     This patch enables Smart Media (SMC) ECC byte ordering which is used
23152     on the PPC4xx NAND FLASH controller (NDFC). Without this patch we have
23153     incompatible ECC byte ordering to the Linux kernel NDFC driver.
23155     Signed-off-by: Stefan Roese <sr@denx.de>
23156     Acked-by: Scott Wood <scottwood@freescale.com>
23158 commit 399aab7748bef053d59612211e1bd7a3fabfce18
23159 Author: Stefan Roese <sr@denx.de>
23160 Date:   Wed May 20 10:58:02 2009 +0200
23162     ppc4xx: Fix problem with ECC ordering for PPC4xx NDFC platforms
23164     This patch now uses the correct ECC byte order (Smart Media - SMC)
23165     to be used on the 4xx NAND FLASH driver. Without this patch we have
23166     incompatible ECC byte ordering to the Linux kernel NDFC driver.
23168     Please note that we also have to enable CONFIG_MTD_NAND_ECC_SMC in
23169     drivers/mtd/nand/nand_ecc.c for correct operation. This is done with
23170     a seperate patch.
23172     Signed-off-by: Stefan Roese <sr@denx.de>
23173     Acked-by: Scott Wood <scottwood@freescale.com>
23175 commit 5d841fac8249a2b3f9a814da2140132be0a9f60d
23176 Author: Stefan Roese <sr@denx.de>
23177 Date:   Wed May 20 10:58:01 2009 +0200
23179     ppc4xx: Move definition for PPC4xx NAND FLASH controller to header
23181     This patch moves the definition for the PPC4xx NAND FLASH controller
23182     (NDFC) CONFIG_NAND_NDFC into include/ppc4xx.h. This is needed for the
23183     upcoming fix for the ECC byte ordering of the NDFC driver.
23185     Signed-off-by: Stefan Roese <sr@denx.de>
23186     Acked-by: Scott Wood <scottwood@freescale.com>
23188 commit 2df72b82bc9e17b88dc82735a067749220beb025
23189 Author: Kim Phillips <kim.phillips@freescale.com>
23190 Date:   Tue May 19 12:53:36 2009 -0500
23192     common: fix inline--weak error spotted by gcc 4.4
23194     cmd_ide.c:547: error: inline function 'ide_inb' cannot be declared weak
23196     removing the inline attribute fixes it.
23198     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23200 commit 9fd9abedcc3c10cf89353265cbe05f58609d51f3
23201 Author: Kim Phillips <kim.phillips@freescale.com>
23202 Date:   Tue May 19 12:53:32 2009 -0500
23204     TQM834x: remove defines causing gcc4.4 warnings
23206     Configuring for TQM834x board...
23207     cpu_init.c: In function 'cpu_init_f':
23208     cpu_init.c:262: warning: array subscript is above array bounds
23209     cpu_init.c:263: warning: array subscript is above array bounds
23210     cpu_init.c:270: warning: array subscript is above array bounds
23211     ...
23213     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23215 commit 0850301747228a3327f2815a85284d26ade3de95
23216 Author: Andreas Huber <andreas.huber@keymile.com>
23217 Date:   Tue May 19 11:06:30 2009 +0200
23219     UBI: fix return code in ubi_volume_read
23221     Return -ENODEV instead of 0 when trying to read from a non existing volume.
23223     Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
23224     Signed-off-by: Stefan Roese <sr@denx.de>
23226 commit ec01481ddc4cf302c7f6d760b776ca94819ec21e
23227 Author: Graf Yang <graf.yang@analog.com>
23228 Date:   Tue May 19 04:40:08 2009 -0400
23230     Blackfin: fix timer_init()/timer_reset()
23232     The timer_init() function was not using the right csync instruction, nor
23233     was it doing it right after disabling the core timer.
23235     The timer_reset() function would reset the timestamp, but not the actual
23236     timer, so there was a common edge case where get_timer() return a jump of
23237     one timestamp (couple milliseconds) right after resetting.  This caused
23238     many functions to improperly timeout right away.
23240     Signed-off-by: Graf Yang <graf.yang@analog.com>
23241     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23243 commit c06326c73bf90e48a8e1cf8893ad31c575423f50
23244 Author: Shinya Kuribayashi <skuribay@pobox.com>
23245 Date:   Sat May 16 09:12:09 2009 +0900
23247     MIPS: lib_mips/board.c: Remove unused variables
23249     This fixes the following build warnings:
23251     board.c: In function 'board_init_r':
23252     board.c:328: warning: unused variable 'i'
23253     board.c:326: warning: unused variable 'e'
23255     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
23257 commit 47f6a36cc3f3427cc8e4f1d0f3e6678be6f33769
23258 Author: Shinya Kuribayashi <skuribay@pobox.com>
23259 Date:   Sat May 16 09:12:09 2009 +0900
23261     MIPS: Make all extern-ed functions in bitops.h static
23263     All these functions are expected to be static inline-ed.
23264     This patch also fixes the following build warnings on MIPS targets:
23266     include/asm/bitops.h: In function 'ext2_find_next_zero_bit':
23267     include/asm/bitops.h:862: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
23268     include/asm/bitops.h:885: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
23269     include/asm/bitops.h:887: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
23271     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
23273 commit 87423d740b91329b8d1d0b73cafd6930993b558a
23274 Author: Thomas Lange <thomas@corelatus.se>
23275 Date:   Fri Apr 24 16:22:16 2009 +0200
23277     MIPS: Implement ethernet halt for au1x00
23279     Implement ethernet halt() by putting MAC0 in reset.
23280     If we do not do this, we will get memory corruption
23281     when ethernet frames are received during early OS boot.
23283     Signed-off-by: Thomas Lange <thomas@corelatus.se>
23284     Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
23286 commit a2e0ffcf2d9a22c582a93e84a4bef20fd3877f47
23287 Author: Wolfgang Denk <wd@denx.de>
23288 Date:   Fri May 15 23:29:23 2009 +0200
23290     Prepare v2009.06-rc2
23292     Update CHANGELOG.
23294     Signed-off-by: Wolfgang Denk <wd@denx.de>
23296 commit f4317ea91942f44cc1c433277927b61618e9b0a5
23297 Author: Daniel Mack <daniel@caiaq.de>
23298 Date:   Tue May 5 12:48:29 2009 +0200
23300     ARM: fix PXA build by defining UP2OCR
23302     U-Boot does not currently build for PXA platforms with USB support
23303     enabled:
23305     usb.c:46: error: 'UP2OCR' undeclared (first use in this function)
23307     Signed-off-by: Daniel Mack <daniel@caiaq.de>
23308     Cc: Markus Klotzbuecher <mk@denx.de>
23310     Edited commit message.
23311     Signed-off-by: Wolfgang Denk <wd@denx.de>
23313 commit e26ad0eabd10a8cda51920fbcfe4da5b4ccf0c98
23314 Author: Wolfgang Denk <wd@denx.de>
23315 Date:   Fri May 15 22:32:57 2009 +0200
23317     Minor Coding Style fix; update CHANGELOG.
23319     Signed-off-by: Wolfgang Denk <wd@denx.de>
23321 commit af75a45d23b72a59ac5cc0427696c7f634fdc94b
23322 Author: Wolfgang Denk <wd@denx.de>
23323 Date:   Fri May 15 09:27:58 2009 +0200
23325     IDE: bail out of dev_print() for unknown device types
23327     Commit 574b319512 introduced a subtle bug by mixing a list of tests
23328     for "dev_desc->type" and "dev_desc->if_type" into one switch(), which
23329     then mostly did not work because "dev_desc->type" cannot take any
23330     "IF_*" type values. A later fix in commit 8ec6e332ea changed the
23331     switch() into testing "dev_desc->if_type", but at this point the
23332     initial test for unknown device types was completely lost, which
23333     resulted in output like that for IDE ports without device attached:
23335       Device 1: Model:  Firm:  Ser#:
23336                 Type: # 1F #
23337                 Capacity: not available
23339     This patch re-introduces the missing test for unknown device types.
23341     Signed-off-by: Wolfgang Denk <wd@denx.de>
23342     Cc: Stefan Roese <sr@denx.de>
23343     Cc: Detlev Zundel <dzu@denx.de>
23344     Tested-by: Stefan Roese <sr@denx.de>
23346 commit c21f62d8483fbab44cd98d93ff2e9355a330d225
23347 Author: Stefan Roese <sr@denx.de>
23348 Date:   Thu May 14 07:25:13 2009 +0200
23350     74xx_7xx: Fix rounding problem in CPU frequency calculation
23352     This patch fixes a problem in the CPU frequency calculation. Without it
23353     a 798MHz CPU is displayed as 368.503 MHz. And with it it's 798 MHz.
23355     Signed-off-by: Stefan Roese <sr@denx.de>
23357 commit 3ad8a0517b724782ab36f2b554a94de4c00c1adb
23358 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23359 Date:   Wed May 13 22:24:12 2009 +0200
23361     console.h: remove unused prototype 'console_realloc'
23363     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23365 commit 84bf7ca522e94ec402a1264b01971b924b7e268f
23366 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23367 Date:   Wed May 13 22:16:31 2009 +0200
23369     api: remove un-needed ifdef CONFIG_API already handle by the Makefile
23371     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23373 commit 792a09eb9d5d8c4f74b7e9f2e887316d511a4e80
23374 Author: Detlev Zundel <dzu@denx.de>
23375 Date:   Wed May 13 10:54:10 2009 +0200
23377     Fix e-mail address of Gary Jennejohn.
23379     Signed-off-by: Detlev Zundel <dzu@denx.de>
23381 commit 5e2c08c3ac90808e9be64856916bfd6df984823c
23382 Author: Emil Medve <Emilian.Medve@Freescale.com>
23383 Date:   Tue May 12 13:48:32 2009 -0500
23385     Remove inline qualifier from show_boot_progress()
23387     The 'inline' is conflicting with the semantic of 'weak' attribute and with the
23388     way the show_boot_progress() function is used.
23390     Also gcc 4.4 is complaining about it:
23392     main.c:51: error: inline function 'show_boot_progress' cannot be declared weak
23394     Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
23396 commit fe6da4837308aa33d537ac3e7f36c2d66e3d9a36
23397 Author: Wolfgang Denk <wd@denx.de>
23398 Date:   Tue May 12 15:17:35 2009 +0200
23400     MPC8260: fixup device tree by property instead of path
23402     cpu/mpc8260/cpu.c used to use do_fixup_by_path_u32() to update the
23403     clock frequencies in the device tree, using a CPU path
23404     "/cpus/OF_CPU", with OF_CPU beind defined in the board config file.
23406     However, this does not work when one board config file (here:
23407     MPC8260ADS.h) is intended to be used for several diffrent CPUs and
23408     therefor contains a generic definition like "cpu@0", as the device
23409     trees that will then be loaded will contain specific names like
23410     "PowerPC,8272@0".
23412     We switch to using do_fixup_by_prop_u32() instead, so we can search
23413     for device_type="cpu", as it is done in other architectures, too.
23415     Signed-off-by: Wolfgang Denk <wd@denx.de>
23416     Cc: Heiko Schocher <hs@denx.de>
23417     Acked-by: Heiko Schocher <hs@denx.de>
23418     Tested-by: Heiko Schocher <hs@denx.de>
23420 commit 12a6753155716e5c3c181a8f40e8b2d3d669aefd
23421 Author: Rohit Hagargundgi <h.rohit@samsung.com>
23422 Date:   Mon Mar 9 19:45:46 2009 +0530
23424     Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
23426     Add CONFIG_SYS_MONITOR_LEN macro to apollon board config.
23427     CONFIG_SYS_MONITOR_LEN defines the U-Boot image size.
23428     and is used by OneNAND ipl when reading U-Boot image.
23430     Signed-off-by: Rohit Hagargundgi <h.rohit at samsung.com>
23431     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
23433 commit c404cc5884b0c82fd82d751dbd8e8b3f8919a23a
23434 Author: Ben Warren <biggerbadderben@gmail.com>
23435 Date:   Tue Apr 28 17:04:51 2009 -0700
23437     Schedule removal of non-CONFIG_NET_MULTI net driver API
23439     This will make CONFIG_NET_MULTI the only net driver configuration and
23440     we'll be able to remove this option.
23442     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23444 commit 60bbcf0cc6e55095dd186e59a557d584b9b56eb1
23445 Author: Detlev Zundel <dzu@denx.de>
23446 Date:   Tue May 5 16:04:06 2009 +0200
23448     powerpc/inka4x0: Remove left-over ide reset code.
23450     The pin which was used in preliminary versions of the board for ide
23451     reset is really connected to the rtc clock.
23453     Signed-off-by: Detlev Zundel <dzu@denx.de>
23455 commit f578a2da6770951239ad91ee9a1875fdc71dbe48
23456 Author: Marco Stornelli <marco.stornelli@gmail.com>
23457 Date:   Tue Apr 28 19:04:02 2009 +0200
23459     Add imls utility command
23461     This patch adds, under tools folder, a new command called imls. Its
23462     goal is the same of UBoot's imls but it can be used as Linux shell
23463     command. It reads from raw mtd partition and prints the list of the
23464     stored images.
23466     Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com>
23468 commit da95427ce431908714ae5e9f663ee6e2bc3bcc33
23469 Author: Heiko Schocher <hs@denx.de>
23470 Date:   Tue Apr 28 08:36:11 2009 +0200
23472     netloop: updates for NetLoop
23474     Fix some issues introduced from commit:
23475     2f70c49e5b9813635ad73666aa30f304c7fdeda9
23476     suggested by Mike Frysinger.
23478     - added some comment for the env_id variable in common_cmd_nvedit.c
23479     - moved some variables in fn scope instead of file scope
23480     - NetInitLoop now static void
23482     Signed-off-by: Heiko Schocher <hs@denx.de>
23483     Acked-by: Ben Warren <biggerbadderben@gmail.com>
23485 commit 3c1d89545de11822f8b5afb5646a57757620bd95
23486 Author: Heiko Schocher <hs@denx.de>
23487 Date:   Tue Apr 28 07:48:39 2009 +0200
23489     82xx, ids8247: added ids8247 board to MAKEALL script
23491     Signed-off-by: Heiko Schocher <hs@denx.de>
23493 commit 890a017a8a995c921d1e889d360e8d6538ceecfe
23494 Author: Detlev Zundel <dzu@denx.de>
23495 Date:   Thu May 7 13:08:55 2009 +0200
23497     arm/imx31_phycore: Fix bi_arch_number
23499     Signed-off-by: Detlev Zundel <dzu@denx.de>
23500     Cc: Sascha Hauer <s.hauer@pengutronix.de>
23502 commit ee47bfabefeb25bdfc83f49ef3bae0f325d3e69e
23503 Author: Sascha Hauer <s.hauer@pengutronix.de>
23504 Date:   Fri May 15 10:21:33 2009 +0200
23506     remove myself as phycore/litekit Maintainer
23508     I never acked a patch that adds me as phycore i.MX31 maintainer nor was
23509     it me who pushed the patches, so remove myself from the maintainer list
23510     so that other people do not longer wait for my ack.
23512     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
23514 commit c63254ef5628efe1c77cb2fdba20753f9666f55d
23515 Author: Sergey Lapin <slapin@ossfans.org>
23516 Date:   Tue May 12 12:25:14 2009 +0400
23518     AFEB9260 network fix
23520     AFEB9260 uses PA10, PA11 for ETX2 and ETX3.
23521     Also, due to extarnal pull-up on IRQ line, Micrel PHY ID is 1 after reset sequence,
23522     not 0.
23524     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
23526 commit f8ddcd58221cab63dd25c2324dd2032487f748b1
23527 Author: Graf Yang <graf.yang@analog.com>
23528 Date:   Tue May 5 02:26:27 2009 -0400
23530     Blackfin: bf518f-ezbrd: reset ethernet PHY during init
23532     We don't know what state the ethernet PHY is in when starting up, so make
23533     sure we set it to a sane state.  This fixes troubles seen when Linux boots
23534     up, configures the PHY is a non-default state, and then the system reboots
23535     into U-Boot which previously expected a reset state only.
23537     Signed-off-by: Graf Yang <graf.yang@analog.com>
23538     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23540 commit 53310b88eaa27fb5cb83144d0b22389190ad87a1
23541 Author: Mike Frysinger <vapier@gentoo.org>
23542 Date:   Tue May 5 01:35:41 2009 -0400
23544     Blackfin: bf527-ezkit: fix SPI flash env params
23546     The BF527-EZKIT settings for storing the environment in SPI flash wasn't
23547     using the correct sector settings for the SPI flash part that is actually
23548     on the board.
23550     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23552 commit f58bf804a14324c6c9186a7a664fa23281780e8b
23553 Author: Mike Frysinger <vapier@gentoo.org>
23554 Date:   Fri Apr 24 23:54:19 2009 -0400
23556     Blackfin: avoid get_sclk() with early serial debug
23558     When the clock functions were changed to use cached values (and thereby
23559     avoiding expensive math functions), early serial debug broke because the
23560     baud programming is called before external memory is available.
23562     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23564 commit 02778f2f1b4b1a28b492367477db27c58d45ae35
23565 Author: Mike Frysinger <vapier@gentoo.org>
23566 Date:   Fri Apr 24 23:39:41 2009 -0400
23568     Blackfin: fix booting with older bootroms (no EVT1)
23570     When dropping jump block support, the assumption was that all bootroms
23571     supported entry point redirection via the EVT1 register.  Unfortunately,
23572     this turned out to be incorrect for the oldest Blackfin parts (BF533-0.2
23573     and older and BF561).  No one really noticed earlier because these parts
23574     usually are booted by bypassing the bootrom entirely, and older BF533
23575     parts are not supported at all (too many anomalies).
23577     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23579 commit af2c37378f203857d5e6c957e77a14c2da5b59d2
23580 Author: Mike Frysinger <vapier@gentoo.org>
23581 Date:   Fri Apr 24 23:22:48 2009 -0400
23583     Blackfin: recurse with early serial initcode
23585     Make sure we recurse through serial_putc() rather than bang on the UART
23586     transmit register directly to avoid hardware overflows when using \n.
23588     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23590 commit 6b8edfde22acc574b5532e9f086e6a7287a9bc78
23591 Author: Wolfgang Denk <wd@denx.de>
23592 Date:   Fri May 1 21:59:12 2009 +0200
23594     Prepare v2009.06-rc1
23596     Update CHANGELOG.
23598     Signed-off-by: Wolfgang Denk <wd@denx.de>
23600 commit 6b2beb5626a143ca5347e7d2c6005be9936c1fbb
23601 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23602 Date:   Fri May 1 15:38:06 2009 +0200
23604     at91: remove lowlevel_init.S
23606     lowlevel_init.S is not used any more so remove it.
23607     As consequence, we also don't have to generate u-boot.lds
23608     but can use a static version as before.
23610     This also fixes the out-of-tree build problem introduced
23611     with commit f0a2c7b4 "at91: add support for the PM9263 board"
23613     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23614     Signed-off-by: Wolfgang Denk <wd@denx.de>
23616 commit 0ee7a310479640ef17ce2fc0f6c13cf7961d2330
23617 Author: Wolfgang Denk <wd@denx.de>
23618 Date:   Fri May 1 00:16:11 2009 +0200
23620     Update CHANGELOG; minor coding style cleanup.
23622     Signed-off-by: Wolfgang Denk <wd@denx.de>
23624 commit d3a513c23ba4100d6983161cdc1f747dfd087bbd
23625 Author: Manikandan Pillai <mani.pillai@ti.com>
23626 Date:   Tue Apr 21 17:29:05 2009 +0200
23628     OMAP3: Fix timer handling to 1ms and CONFIG_SYS_HZ to 1000
23630     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
23631     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
23633 commit ac9140037a84629c5583066ff1a177396c47d89d
23634 Author: Dirk Behme <dirk.behme@googlemail.com>
23635 Date:   Fri Apr 17 14:27:56 2009 +0200
23637     OMAP3: Beagle: Set pinmux conditionally for Rev C boards
23639     The Beagle Rev C boards pull UART2 from an alternate set of balls.
23641     Signed-off-by: Steve Sakoman <steve@sakoman.com>
23642     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
23644 commit c1a0fd5f2864e9d381f4a3dc948942cac974e89a
23645 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23646 Date:   Mon Apr 27 18:33:33 2009 +0200
23648     ubifs: BUG: Blocks commpressed with zlib
23650     Blocks compressed with zlib dont have the full gzip header.
23652     Without this patch, block compressed with zlib cannot be readed!
23654     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23656 commit 35f6a943f7d92145d607c1d55f5c2e2eae5be630
23657 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23658 Date:   Mon Apr 27 18:33:32 2009 +0200
23660     lib_generic: gunzip: New function zunzip
23662     Separate gunzip in
23664     gunzip: Find the end of the header and call zunzip.
23665     zunzip: Inflate gunzip block without header.
23667     UBI fs blocks can be compresed in lzo, zlib or no-compression. The
23668     current implementation of u-boot supported all the compressions but
23669     there was a bug in the implementation of the zlib blocks.
23671     UBIFS's Zlib blocks do not have header but they were compressed using
23672     gunzip, a function used to decompress gunzip files/sectors with a
23673     header.
23675     This patch adds a new function zunzip that uncompress a zlib block with
23676     no header.
23678     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23680 commit a1e5f93185d0d85a4b3fad3b6c743cddcd373b0c
23681 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
23682 Date:   Thu Apr 23 15:37:16 2009 +0200
23684     at91: fixed plla calc when no USB support is active
23686     Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
23687     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23689 commit 3791a1187c1401c33c9512595e6e89dbb46230c5
23690 Author: Ladislav Michl <ladis@linux-mips.org>
23691 Date:   Wed Apr 22 01:12:04 2009 +0200
23693     arm925t: Fix CONFIG_SYS_HZ to 1000
23695     Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of
23696     get_timer.
23698     Changes since original version:
23699     * Set PTV=2 (divisor 8) for boards using 12MHz timer clock source to
23700       improve timer resolution.
23702     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
23704 commit 42bf4b2248146abdc592bde0009c6ea42067f437
23705 Author: Dirk Behme <dirk.behme@googlemail.com>
23706 Date:   Tue Apr 14 20:15:17 2009 +0200
23708     OMAP3: Remove legacy NAND defines
23710     Remove remaining legacy NAND defines for Beagle, EVM, Overo and Pandora.
23712     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
23714 commit cba0b778dd5f1ea32959b6825c7f0a31501a99d5
23715 Author: Sanjeev Premi <premi@ti.com>
23716 Date:   Mon Apr 27 21:27:54 2009 +0530
23718     OMAP3: Print correct silicon revision
23720     The function display_board_info() displays incorrect
23721     silicon revision - based on the return value from
23722     function get_cpu_rev().
23724     This patch fixes the problem.
23726     Signed-off-by: Sanjeev Premi <premi@ti.com>
23728 commit 90006e9b33bcdbf241b0295d186e3634137907a9
23729 Author: Sanjeev Premi <premi@ti.com>
23730 Date:   Mon Apr 27 21:27:44 2009 +0530
23732     OMAP3: Remove unused board-types
23734     The board-types defined in struct omap3_sysinfo seem to be
23735     unused. The function display_board_info() is passed
23736     board type as an argument; which is ignored.
23738     This patch removes all uses of board-type, related definitions
23739     and functions.
23741     Signed-off-by: Sanjeev Premi <premi@ti.com>
23743 commit 6a6b62e3aa4b340c4f8fc67b1487ddb5436c684d
23744 Author: Sanjeev Premi <premi@ti.com>
23745 Date:   Mon Apr 27 21:27:27 2009 +0530
23747     OMAP3: Use functions print_cpuinfo() and checkboard()
23749     Use the functions print_cpuinfo() and checkboard() to
23750     display the cpu and board specific information.
23752     These functions reuse content from the existing function
23753     display_board_info() - which has been removed.
23755     Also, updated the existig OMAP3 configurations to
23756     define:
23757      - CONFIG_DISPLAY_CPUINFO
23758      - CONFIG_DISPLAY_BOARDINFO
23760     Signed-off-by: Sanjeev Premi <premi@ti.com>
23762 commit f8e2b3107ee00f2782f8ebf47e3f09cda4e2353a
23763 Author: Stefan Roese <sr@denx.de>
23764 Date:   Wed Mar 18 11:17:37 2009 +0100
23766     MTD: Change cfi-mtd to accept non-uniform sector sizes
23768     With this patch non-uniform NOR FLASH chips (chips with multiple erase
23769     regions) can be exported via the cfi-mtd layer and therefor used by UBI.
23770     We select the largest sector size as erasesize. The cfi driver will make
23771     sure that the smaller sectors are handled correctly.
23773     Signed-off-by: Stefan Roese <sr@denx.de>
23775 commit 3dcbe628d66b648e954bc8147d4faff2983206d9
23776 Author: Anatolij Gustschin <agust@denx.de>
23777 Date:   Thu Apr 23 12:35:22 2009 +0200
23779     video: fix bug in cfb_console.c code
23781     Fix bug in drawing long version/info strings:
23782     U-Boot version string like
23783     "U-Boot 2009.03-05647-g7c51e06 (Apr 23 2009 - 12:40:00) MPC83XX"
23784     is long and doesn't wrap around correctly while drawing
23785     beside the logo. Such long strings partially overwrite
23786     the logo. This patch is an attempt to fix it.
23788     Signed-off-by: Anatolij Gustschin <agust@denx.de>
23790 commit 4d9eab89b3b2c2ed432b14d355a56f274d8aac75
23791 Author: Wolfgang Denk <wd@denx.de>
23792 Date:   Tue Apr 28 08:50:31 2009 +0200
23794     cmd_ext2.c: fix compile warnings
23796     Get rid of these warnings:
23798     cmd_ext2.c:247: warning: format '%ld' expects type 'long int', but argument 2 has type 'int'
23799     cmd_ext2.c:248: warning: format '%lX' expects type 'long unsigned int', but argument 3 has type 'int'
23801     Signed-off-by: Wolfgang Denk <wd@denx.de>
23803 commit 28afe0160f87ff74574150d703055a965f91422a
23804 Author: Heiko Schocher <hs@denx.de>
23805 Date:   Mon Apr 27 10:48:20 2009 +0200
23807     ids8247: Remove legacy NAND defines
23809     because legacy NAND support is deprecated converting to current
23810     NAND interface. !This just compile, because I have no more the
23811     hardware to test it.
23813     Signed-off-by: Heiko Schocher <hs@denx.de>
23815 commit dbd33614404b65aa441c5620c3dbd560c4460c09
23816 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23817 Date:   Mon Apr 27 09:13:31 2009 +0200
23819     ubifs: BUG realpath string must be ended with NULL
23821     If the memory used to copy the link_make is "dirty" the string wont
23822     be ended with NULL, throwing out multiple memory bugs.
23824     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
23825     Acked-by: Stefan Roese <sr@denx.de>
23827 commit 65351a8793c51f3787efbbcf3aa1df0ad543c127
23828 Author: Peter Tyser <ptyser@xes-inc.com>
23829 Date:   Fri Apr 24 15:59:56 2009 -0500
23831     bmp_logo: Check return value of fread()
23833     Add basic error handling to fread() function calls.  This prevents
23834     compililation warnings such as:
23836     bmp_logo.c: In function â€˜main’:
23837     bmp_logo.c:71: warning: ignoring return value of â€˜fread’, declared with
23838     attribute warn_unused_result
23839     ...
23841     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23843 commit eea8be86d1c2b570660d1f6c553845e13164231a
23844 Author: Peter Tyser <ptyser@xes-inc.com>
23845 Date:   Fri Apr 24 15:59:46 2009 -0500
23847     ncb: Check return value of write()
23849     This prevents the compilation warning:
23851     ncb.c: In function 'main':
23852     ncb.c:32: warning: ignoring return value of â€˜write’, declared with
23853     attribute warn_unused_result
23855     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23857 commit dbe29e36a4c2775b69b5a63b0ce2bac89c08e691
23858 Author: Stefan Roese <sr@denx.de>
23859 Date:   Fri Apr 24 15:59:35 2009 +0200
23861     mtd: nand/onenand: Register mtd device upon device scanning
23863     With this patch the NAND and OneNAND devices are registered in the MTD
23864     subsystem and can then be referenced by the mtdcore code (e.g.
23865     get_mtd_device_nm()). This is needed for the new "ubi part" command
23866     syntax without the flash type parameter (nor|nand|onenand).
23868     Signed-off-by: Stefan Roese <sr@denx.de>
23870 commit 10bb62d85a0850dbad1fdd34123378686373f166
23871 Author: Stefan Roese <sr@denx.de>
23872 Date:   Fri Apr 24 15:58:33 2009 +0200
23874     mtd: nand: Include linux/mtd/partitions.h in nand_base.h
23876     This patch removes this compilation warning when CONFIG_MTD_PARTITIONS is
23877     defined:
23879     nand_base.c: In function 'nand_release':
23880     nand_base.c:2922: warning: implicit declaration of function 'del_mtd_partitions'
23882     Signed-off-by: Stefan Roese <sr@denx.de>
23884 commit 2d579e5060413af5a740cb396dc87e1ff31bf5a9
23885 Author: Stefan Roese <sr@denx.de>
23886 Date:   Fri Apr 24 20:24:19 2009 +0200
23888     ubi: Remove flash selection parameter (nor|nand|onenand) from "ubi part"
23890     This patch removes the now unnecessary flash type parameter from the
23891     "ubi part" command. Currently the user has to define the type of flash
23892     he will be using UBI on. Example:
23894     => ubi part nor partition1
23896     With this patch this type parameter is not needed anymore. The user can
23897     now select the partition directly without the flash type paramter.
23898     Example:
23900     => ubi part partition1
23902     This breaks backward compatibility right now because of the change in the
23903     command syntax. But UBI support is still quite fresh and the advantage of
23904     this new command is syntax big enough for this change. Additionally the
23905     code is much cleaner now.
23907     Signed-off-by: Stefan Roese <sr@denx.de>
23908     CC: Kyungmin Park <kyungmin.park@samsung.com>
23910 commit 294f10ca9ea82a15e135dcb0fc658382ab206940
23911 Author: Detlev Zundel <dzu@denx.de>
23912 Date:   Thu Apr 23 13:14:20 2009 +0200
23914     mips/vcth: Use generic 16550 uart driver
23916     As the common code also handles baudrate switching, which the board
23917     specific vct.c driver did not support, this is one of the rare
23918     occassions where deleting code actually adds a feature :)
23920     Signed-off-by: Detlev Zundel <dzu@denx.de>
23921     Acked-by: Stefan Roese <sr@denx.de>
23922     Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23924 commit 0c8a84916c5dacccdc5b27b63fc463e9f3b04f07
23925 Author: Ladislav Michl <ladis@linux-mips.org>
23926 Date:   Tue Apr 21 02:26:31 2009 +0200
23928     Separate mtdparts command from jffs2
23930     On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
23931     > Currently the mtdparts commands are included in the jffs2 command support.
23932     > This doesn't make sense anymore since other commands (e.g. UBI) use this
23933     > infrastructure as well now. This patch separates the mtdparts commands from
23934     > the jffs2 commands making it possible to only select mtdparts when no JFFS2
23935     > support is needed.
23937     One more leftover... Let nboot command know about partitions even if JFFS2
23938     support is not enabled.
23940     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
23941     Acked-by: Stefan Roese <sr@denx.de>
23943 commit 67c2e57c0875139dbfcd6f41c43e6ad0cb2e40c9
23944 Author: Peter Tyser <ptyser@xes-inc.com>
23945 Date:   Mon Apr 20 11:22:13 2009 -0500
23947     cmd_ide: Remove unused AmigaOneG3SE code
23949     The output_data_short() and input_data_short() functions for the
23950     AmigaOneG3SE are unused and result in compiler warnings.
23952     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23954 commit c93c102ace00764a56dbdf78bac134a23906721e
23955 Author: Peter Tyser <ptyser@xes-inc.com>
23956 Date:   Mon Apr 20 11:21:40 2009 -0500
23958     AmigaOneG3SE: Fix CONFIG_CMD_CONSOLE definition
23960     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23962 commit 54e822f9590cc6c70411bd8cabd42236e07a2aa7
23963 Author: Peter Tyser <ptyser@xes-inc.com>
23964 Date:   Mon Apr 20 11:09:05 2009 -0500
23966     Replace __asm references with __asm__
23968     __asm__ follows gcc's documented syntax and is generally more common
23969     than __asm.  This change is only asthetic and should not affect
23970     functionality.
23972     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23974 commit f9a109b3adc5e8647535357500e2a38f0558b5c2
23975 Author: Peter Tyser <ptyser@xes-inc.com>
23976 Date:   Mon Apr 20 11:08:46 2009 -0500
23978     Replace __attribute references with __attribute__
23980     __attribute__ follows gcc's documented syntax and is generally more
23981     common than __attribute.  This change is only asthetic and should not
23982     affect functionality.
23984     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23986 commit 08f077da9298ff65cc6f85f90d2770000a1beee9
23987 Author: David Brownell <dbrownell@users.sourceforge.net>
23988 Date:   Thu Apr 16 19:55:48 2009 -0700
23990     mtdpart command: align output columns
23992     Make the headers in the "mtdparts" command output line up
23993     with their columns ... strike the extra TAB character.
23995     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
23997 commit 06f41f825c23344d889d5419bb5eaeceb3ed2a02
23998 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23999 Date:   Thu Apr 16 10:51:03 2009 +0900
24001     Remove sa1100.h
24003     sa1100.h is not used anywhere, then remove it.
24005     $ find . -name '*.h' -empty -print
24006     ./include/sa1100.h
24007     $ git grep 'sa1100.h' .
24008     $
24010     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
24011     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24013 commit 7d3d30b1b3fbd0a07db254ead99fa6fff4f4d992
24014 Author: Stefan Roese <sr@denx.de>
24015 Date:   Tue Apr 14 17:51:21 2009 +0200
24017     UBIFS: Remove tnc_commit.c which is not used in the read-only version
24019     I missed removing this file while implementing the UBIFS support. It's
24020     not referenced at all, so let's remove it. Thanks to Artem Bityutskiy
24021     for spotting.
24023     Signed-off-by: Stefan Roese <sr@denx.de>
24025 commit 6356daff70867822bdb23cea49f98e65421a25b8
24026 Author: Adrian Hunter <adrian.hunter@nokia.com>
24027 Date:   Tue Apr 14 17:50:38 2009 +0200
24029     UBIFS: fix recovery bug
24031     UBIFS did not recovery in a situation in which it could
24032     have. The relevant function assumed there could not be
24033     more nodes in an eraseblock after a corrupted node, but
24034     in fact the last (NAND) page written might contain anything.
24035     The correct approach is to check for empty space (0xFF bytes)
24036     from then on.
24038     Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com>
24039     Signed-off-by: Stefan Roese <sr@denx.de>
24041 commit 351f40caf2f7806b2cefb93e077ea619b9f684e8
24042 Author: Gao Guanhua <B22826@freescale.com>
24043 Date:   Tue Apr 14 14:37:35 2009 +0800
24045     fs: Fix the wrong type of var
24047     The filelen should be signed type, not unsigned type.
24048     otherwise, The condition as below never take.
24049         if (filelen < 0)
24051     Signed-off-by: Gao Guanhua <B22826@freescale.com>
24052     Signed-off-by: Dave Liu <daveliu@freescale.com>
24054 commit 05f474c4d0469bebc0bb05df60a39dc7fdf28e62
24055 Author: Wolfgang Denk <wd@denx.de>
24056 Date:   Tue Apr 28 00:29:34 2009 +0200
24058     Update CHANGELOG
24060     Signed-off-by: Wolfgang Denk <wd@denx.de>
24062 commit ad74cae9ff8790727bc81ee91c6bca7d50dca446
24063 Author: David Brownell <dbrownell@users.sourceforge.net>
24064 Date:   Thu Apr 16 23:15:15 2009 -0700
24066     dm9000 EEPROM reading bugfix
24068     Make the U-Boot dm9000 driver read addresses from EEPROM just
24069     like Linux does ... read six bytes, instead of reading twelve
24070     bytes and then discarding every other one.
24072     Using the right Ethernet address is a big win.
24074     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
24075     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24076     Acked-by: Ben Warren <biggerbadderben@gmail.com>
24078 commit d4c02e6f5d49880123e7f584b88f857ffd874381
24079 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
24080 Date:   Wed Feb 25 14:27:24 2009 +0900
24082     rtl8169: fix cache coherency problem
24084     Fix the problem that cannot access actual data when CPU data cache enabled.
24086     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
24087     Tested-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
24088     Acked-by: Ben Warren <biggerbadderben@gmail.com>
24090 commit a85693b3bd4431b05b7df608b6f7733c0f80c53e
24091 Author: Dirk Behme <dirk.behme@googlemail.com>
24092 Date:   Tue Apr 21 17:30:51 2009 +0200
24094     OMAP3: Fix changed mmc init command
24096     In recent U-Boot mmcinit changed to mmc init.
24098     Signed-off-by: Steve Sakoman <steve@sakoman.com>
24099     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
24101 commit 34b76a14f676bc6501c27a96564e4dfb4793f033
24102 Author: Wolfgang Denk <wd@denx.de>
24103 Date:   Sun Apr 26 20:39:26 2009 +0200
24105     lib_arm/board.c: remove misleading "test-only" comment.
24107     For a long time, the print_cpuinfo() declaration in lib_arm/board.c
24108     had been marked as "test-only", which is plain wrong considering
24109     current usage.  Delete this misleading comment.
24111     Signed-off-by: Wolfgang Denk <wd@denx.de>
24113 commit 7239c5da5e9197accb3dfe395be4502c3b9bca8e
24114 Author: David Brownell <dbrownell@users.sourceforge.net>
24115 Date:   Sun Apr 12 15:40:16 2009 -0700
24117     minor DaVinci clock cleanup
24119     Minor cleanup to clock-related defines for DaVinci DM6446 boards:
24121      - CONFIG_SYS_CLK_FREQ is unused; remove it.
24123      - CONFIG_SYS_NS16550_CLK must be the same as CONFIG_SYS_HZ_CLOCK
24125     On DM6446 both of those peripheral clocks actually come from the
24126     same source, the primary oscillator.  Having them use the same
24127     symbol avoids bugs in the clone'n'modify development cycle.
24129     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
24131 commit ffd8c7170d55c34bbfcfd2c84093dcaff796cbf3
24132 Author: Minkyu Kang <mk7.kang@samsung.com>
24133 Date:   Mon Apr 6 19:59:29 2009 +0900
24135     s3c64xx: remove unnecessary definition
24137     CONFIG_S3C6400 is must defined at config header file
24138     That definition is unnecessary at this file
24140     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
24142 commit 14b9308d511b53042ef478936e367a67282df66a
24143 Author: Heiko Schocher <hs@denx.de>
24144 Date:   Fri Apr 24 06:50:45 2009 +0200
24146     83xx: searching "muram-data" by compatible property
24148     if using CONFIG_BOOTCOUNT_LIMIT feature on a MPC8360 CPU
24149     in the muram-data node, the reg entry needs to be updated.
24150     This is done in fdt_fixup_muram(), but we should use
24151     the compatible "fsl,qe-muram-data" for searching the
24152     node instead of searching the muram-data node with
24153     an absolute path.
24155     Signed-off-by: Heiko Schocher <hs@denx.de>
24156     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24158 commit 8e15088794807944b221c11609d36789efc7f767
24159 Author: Anatolij Gustschin <agust@denx.de>
24160 Date:   Thu Apr 23 21:29:34 2009 +0200
24162     mpc83xx: MPC8360ERDK: fix environment offset configuration bug
24164     The size of U-Boot binary for MPC8360ERDK increased
24165     (> 2 flash sectors now), so 'saveenv' will partially
24166     overwrite U-Boot in flash and will brick the board.
24167     This patch moves environment offset to fourth flash
24168     sector and also fixes CONFIG_SYS_MONITOR_LEN.
24170     Signed-off-by: Anatolij Gustschin <agust@denx.de>
24171     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24173 commit 3c172c4fdbbb5858fae38478d6399be4a16be3fc
24174 Author: Michael Zaidman <michael.zaidman@gmail.com>
24175 Date:   Sat Apr 4 01:43:00 2009 +0300
24177     NetLoop initialization bug
24179     The patch fixes the bug of partial initialization of global network
24180     parameters.
24182     Upon u-boot's start up the first ping command causes a failure of the
24183     consequent TFTP command. It happens in the recently added mechanism of
24184     the NetLoop initialization where initialization of global network
24185     parameters is separated in the NetInitLoop routine which is called per
24186     env_id change. Thus, ping request will initialize the network parameters
24187     necessary for ping operation only, afterwards the env_changed_id will be
24188     set to the env_id that will prevent all following initialization requests
24189     from other protocols.
24190     The problem is that the initialized by ping subset of network parameters
24191     is not sufficient for other protocols and particularly for TFTP which
24192     requires the NetServerIp also.
24194     Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
24195     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24197 commit b11f664f52c2855990107c18f242223377183575
24198 Author: Timur Tabi <timur@freescale.com>
24199 Date:   Thu Apr 9 10:27:05 2009 -0500
24201     net: fix ULI 526x macro usage in netdev.h
24203     Change netdev.h to use CONFIG_ULI526X instead of CONFIG_ULI526.  CONFIG_ULI526X
24204     is used everywhere else, so that's the correct macro name.  Without this fix,
24205     Ethernet will not work on the Freescale MPC8610 HPCD.
24207     Signed-off-by: Timur Tabi <timur@freescale.com>
24208     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24210 commit 7ee38c044ca5041d3378d6507580ea4ec344af96
24211 Author: David Brownell <dbrownell@users.sourceforge.net>
24212 Date:   Sun Apr 12 15:38:06 2009 -0700
24214     fix DaVinci NS16550_REG_SIZE regression
24216     Update the DaVinci DM6446 boards to use the new convention
24217     for CONFIG_SYS_NS16550_REG_SIZE ... the size hasn't changed
24218     from the original 4 bytes, but these chips are little-endian.
24220     (Resolves a regression added recently by the include/ns16550.h
24221     patch to "Unify structure declaration for registers".  The code
24222     previously worked just fine because the registers were accessed
24223     as host-endian words, not as bytes.)
24225     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
24227 commit dfc99e143fca44a492918ac6cf3f76ee9c2473a9
24228 Author: Mike Frysinger <vapier@gentoo.org>
24229 Date:   Sun Apr 12 22:29:20 2009 -0400
24231     cmd_nand: drop duplicate NULL ptr check
24233     The first if statement checks for NULL ptrs, so there is no need to check
24234     it again in later else cases (such as .oob).
24236     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24237     CC: Scott Wood <scottwood@freescale.com>
24239 commit 7732cef2eeb4e339cfcd8553fab773af73a20805
24240 Author: David Brownell <dbrownell@users.sourceforge.net>
24241 Date:   Mon Apr 13 08:03:38 2009 -0700
24243     CMD_UBI != MTD_PARTITIONS
24245     Fix dependency goofage:  it should certainly be possible to have the
24246     partition support without bringing in UBI commands.
24248     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
24249     Acked-by: Stefan Roese <sr@denx.de>
24251 commit 6ebff365eb63093ca35b687316002535c6a18820
24252 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24253 Date:   Thu Apr 16 21:30:48 2009 +0200
24255     at91sam9/at91cap: fix CONFIG_SYS_HZ to 1000
24257     The timer has been rewrote with a precision at ~0,18%
24259     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24260     Tested-by: Sergey Lapin <slapin@ossfans.org>
24261     Tested-by: Eric BENARD <ebenard@free.fr>
24263 commit f0a2c7b4b64eacd06bb272856bcc056be8719f5a
24264 Author: Ilko Iliev <iliev@ronetix.at>
24265 Date:   Thu Apr 16 21:30:48 2009 +0200
24267     at91: add support for the PM9263 board of Ronetix GmbH
24269     The PM9263 board is based on the AT91SAM9263-EK board.
24271     Here is the page on Ronetix website:
24272     http://www.ronetix.at/starter_kit_9263.html
24274     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
24275     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24277 commit dc39ae9513c32dfeb9e018dc0d22c6484514fefb
24278 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24279 Date:   Thu Apr 16 21:30:44 2009 +0200
24281     at91sam9/at91cap: improve clock framework
24283     calculate dynamically the clock rate and pllb setting for usb
24285     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24287 commit dd7c302099ef5590069bdbf292aaa8230cd59de7
24288 Author: Stefan Roese <sr@denx.de>
24289 Date:   Wed Apr 15 14:08:48 2009 +0200
24291     ppc4xx: Disable POST memory test on NAND-booting Kilauea
24293     Don't run the memory POST on the NAND-booting version. It will
24294     overwrite part of the U-Boot image which is already loaded from NAND
24295     to SDRAM. We were just lucky that it booted at all with this SDRAM
24296     test enabled.
24298     Signed-off-by: Stefan Roese <sr@denx.de>
24300 commit 9a929170be89b27bce677504da27e88600c06c49
24301 Author: Stefan Roese <sr@denx.de>
24302 Date:   Wed Apr 15 14:06:26 2009 +0200
24304     ppc4xx: Disable POST memory test on NAND-booting Sequoia
24306     Don't run the memory POST on the NAND-booting version. It will
24307     overwrite part of the U-Boot image which is already loaded from NAND
24308     to SDRAM. We were just lucky that it booted at all with this SDRAM
24309     test enabled.
24311     Signed-off-by: Stefan Roese <sr@denx.de>
24313 commit 17c1b0e89b8be7d90f605eb19af9218c6275bfb3
24314 Author: Stefan Roese <sr@denx.de>
24315 Date:   Wed Apr 15 11:32:53 2009 +0200
24317     ppc4xx: Remove unused code for Sequoia NAND booting version
24319     The current define of get_bus_freq() in the CONFIG_NAND_SPL #ifdef is not
24320     used at all. This patch changes it's define to the currently used value of
24321     133333333 and removes the unnecessary code.
24323     Signed-off-by: Stefan Roese <sr@denx.de>
24325 commit cf9409885cbe01405bad76790e99f8adf3351f4d
24326 Author: Stefan Roese <sr@denx.de>
24327 Date:   Wed Apr 15 10:50:48 2009 +0200
24329     ppc4xx: Add "booting from NAND" to 4xx NAND-booting targets
24331     This additional text in the bootup log helps to see if the board is
24332     configured for NAND-booting. Especially helpful for boards that can
24333     boot from NOR and NAND (e.g. most of the AMCC eval boards).
24335     Signed-off-by: Stefan Roese <sr@denx.de>
24337 commit 5132106a27b8fb302677852b26ffd319b40d17e2
24338 Author: Stefan Roese <sr@denx.de>
24339 Date:   Wed Apr 8 10:36:22 2009 +0200
24341     ppc4xx: Fixup chip-selects in dtb for NAND-booting Sequoia
24343     Currently the NOR & NAND support in Linux only works for the "standard"
24344     Sequoia, the version booting for NOR flash. The NAND-booting version
24345     has the chip-selects swapped. Here the chip-select mappings:
24347     "Standard" NOR-booting version:
24348     CS0 NOR
24349     CS3 NAND
24351     NAND-booting version:
24352     CS0 NAND
24353     CS3 NOR
24355     With this path the dtb gets fixed-up, so that the correct chip-select
24356     numbers are patched in the dtb enabling correct NOR & NAND support
24357     in Linux on the NAND-booting Sequoia version.
24359     Signed-off-by: Stefan Roese <sr@denx.de>
24361 commit aad4eca4ba8d597747199d8af723426681557dda
24362 Author: Mike Frysinger <vapier@gentoo.org>
24363 Date:   Sat Apr 4 09:10:27 2009 -0400
24365     Blackfin: audit UART for all known anomalies
24367     There is no code change here, just new comments, but this keeps me from
24368     having to do another audit from scratch in the future.
24370     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24372 commit 8ef929afa43c77c9573caa57c6e17a97a33775c0
24373 Author: Mike Frysinger <vapier@gentoo.org>
24374 Date:   Sat Apr 4 08:40:13 2009 -0400
24376     Blackfin: add check for anomaly 05000362
24378     DESCRIPTION:
24379     The column address width settings for banks 2 and 3 are misconnected in
24380     the SDRAM controller.  Accesses to bank 2 will result in an error if the
24381     Column Address Width for bank 3 (EB3CAW ) is not set to be the same as
24382     that of bank 2.
24384     WORKAROUND:
24385     If using bank 2, make sure that banks 2 and 3 have the same column address
24386     width settings in the EBIU_SDBCTL register.  This must be the case
24387     regardless of whether or not bank 3 is enabled.
24389     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24391 commit c2e07449f546fb375289cdac1a608fdc20357873
24392 Author: Mike Frysinger <vapier@gentoo.org>
24393 Date:   Sat Apr 4 08:29:55 2009 -0400
24395     Blackfin: add comment about anomaly 05000430 avoidance
24397     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24399 commit 48ab1509254a4c175e4f65c478a978928ffe09ec
24400 Author: Mike Frysinger <vapier@gentoo.org>
24401 Date:   Sat Apr 4 08:10:22 2009 -0400
24403     Blackfin: add workaround for anomaly 05000242
24405     DESCRIPTION:
24406     If the DF bit is set prior to a hardware reset, the PLL will continue to
24407     divide CLKIN by 2 after the hardware reset, but the DF bit itself will be
24408     cleared in the PLL_CTL register.
24410     WORKAROUND:
24411     Reprogram the PLL with DF cleared if the desire is to not divide CLKIN by
24412     2 after reset.
24414     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24416 commit ce1fe4ba6bb9df7c57351436fa17d1af8bbe7916
24417 Author: Mike Frysinger <vapier@gentoo.org>
24418 Date:   Sat Apr 4 08:09:24 2009 -0400
24420     Blackfin: add workaround for anomaly 05000171
24422     DESCRIPTION:
24423     The Boot ROM is executed at power up/reset and changes the value of the
24424     SICA_IWR registers from their default reset value of 0xFFFF, but does not
24425     restore them.
24427     WORKAROUND:
24428     User code should not rely on the default value of these registers.  Set
24429     the desired values explicitly.
24431     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24433 commit 51ee6e057f7a920e2a125cd9f985d10f625e355f
24434 Author: Mike Frysinger <vapier@gentoo.org>
24435 Date:   Sat Apr 4 08:22:36 2009 -0400
24437     Blackfin: update anomaly sheets
24439     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24441 commit a343ba87ea0320ca0a4ecfa2c42cd9d4f18883df
24442 Author: Graf Yang <graf.yang@analog.com>
24443 Date:   Sat Apr 4 07:45:57 2009 -0400
24445     Blackfin: nand: flush peripheral before polling it
24447     We need to make sure the data written to the nand flash controller makes
24448     it there before we start polling its status register.  Otherwise, we may
24449     get stale data and return before the controller is actually ready.
24451     Signed-off-by: Graf Yang <graf.yang@analog.com>
24452     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24453     Acked-by: Scott Wood <scottwood@freescale.com>
24455 commit 3ccbfb25f48af78e7092ac75f3115e924e76c748
24456 Author: Remy Bohmer <linux@bohmer.net>
24457 Date:   Sun Apr 5 11:43:28 2009 +0200
24459     Support for PXA27X UDC.
24461         This Patch adds Support for PXA27X UDC.
24462         (Rebased to drivers/usb reorganisation)
24464     Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
24465     Signed-off-by: Remy Bohmer <linux@bohmer.net>
24467 commit 2731b9a86685190d26b1883f27afda5ac8e1a313
24468 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24469 Date:   Fri Apr 3 12:46:58 2009 +0200
24471     drivers/usb: regorganisation
24473     move to linux usb driver organisation
24475     as following
24477     drivers/usb/gadget
24478     drivers/usb/host
24479     drivers/usb/musb
24481     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24482     Signed-off-by: Remy Bohmer <linux@bohmer.net>
24484 commit d04371a116d102e587ba7aa4c329b441cdbea3f4
24485 Author: Todor I Mollov <tmollov@ucsd.edu>
24486 Date:   Sat Apr 4 06:53:06 2009 -0400
24488     Blackfin: spi: make cs deassert function deterministic
24490     Blackfin SPI driver was not driving the SPI chip-select high before
24491     putting the chip-select signals into tri-state mode.  This is probably
24492     something that slipped by unnoticed in most designs.  If the signals are
24493     put directly into a tri-state mode, then the board is relying on the
24494     pull-up resistors to pull up the chip-select before the next transaction.
24495     Most of the time this is fine, except when you have two transactions that
24496     follow each other very closely, such as the flash erase and read status
24497     register commands.  In this case I was seeing a 500ns separation between
24498     the transactions.  In my setup, with a 10kOhm pull-up, it would meet
24499     timing spec about half the time and resulted in intermittent errors.  (A
24500     stronger pull up would fix this, but our design is targeted for low power
24501     consumption and a 3.3kOhm @ 3.3v is 3.3mW of needless power consumption.)
24502     I modified the spi_cs_deactivate() function in bfin_spi.c to drive the
24503     chip-selects high before putting them into tri-state.  For me, this
24504     resulted in a rise time of 5ns instead of the previous rise time of about
24505     1us, and fully satisfied the timing spec of the chip.
24507     Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
24508     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24510 commit c6fadb9c73a6a3e0c7f20696e978304a593a8d2d
24511 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24512 Date:   Sat Dec 13 21:08:05 2008 +0100
24514     integratorap: fix PCI support
24516     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24518 commit 1c397508c836dfcb01fb2471c71de0727051f117
24519 Author: Dirk Behme <dirk.behme@googlemail.com>
24520 Date:   Mon Mar 30 21:15:23 2009 +0200
24522     OMAP3: Update Overo pin mux for new expansion board
24524     A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and
24525     switches. This patch changes the pinmux configuration for those pins.
24526     They were previously set up for unused MMC3_DAT4-7.
24528     Signed-off-by: Steve Sakoman <steve@sakoman.com>
24529     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
24531 commit ab298231518675b3784aea88ee9b978438f99e63
24532 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24533 Date:   Sun Apr 5 13:08:03 2009 +0200
24535     arm: unify reset command
24537     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24539 commit b3acb6cd4059dfb29a5e99095d802717f53ff784
24540 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24541 Date:   Sun Apr 5 13:06:31 2009 +0200
24543     arm: clean cache management
24545     unify arm cache management except for non standard cache as ARM7TDMI
24547     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24549 commit 677e62f43235de9a1701204d7bcea0fb3d233fa1
24550 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24551 Date:   Sun Apr 5 13:02:43 2009 +0200
24553     arm: update co-processor 15 access
24555     import system.h from linux
24557     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24559 commit 23e4af49e066a53cd3e3659b68ef90572d88de84
24560 Author: Guennadi Liakhovetski <lg@denx.de>
24561 Date:   Sun Apr 5 00:42:02 2009 +0200
24563     ARM: add the imx31_phycore_eet target to MAINTAINERS
24565     imx31_phycore_eet is a variant of the imx31_phycore board with a few
24566     extensions, which justifies a separate entry in the MAINTAINERS list,
24567     whereas normally all entries sharing a single configuration file and a
24568     board/ directory have only one entry in MAINTAINERS.
24570     Reported-by: Wolfgang Denk <wd@denx.de>
24571     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24573 commit 69c5bf29908b3a7f8e23bd9891b7ecc5b21f23e5
24574 Author: Guennadi Liakhovetski <lg@denx.de>
24575 Date:   Sun Apr 5 00:37:07 2009 +0200
24577     ARM: fix out-of-tree build of imx31_phycore_eet
24579     Fix out-of-tree build of the imx31_phycore_eet target.
24581     Reported-by: Wolfgang Denk <wd@denx.de>
24582     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24584 commit 3c853f31d6a8e4407f73a2ca2c63d383a245f237
24585 Author: Jon Smirl <jonsmirl@gmail.com>
24586 Date:   Sat Apr 4 17:44:51 2009 -0400
24588     mpc5200: reduce delays in i2c
24590     The previous code waited 1000us before checking i2c
24591     status. Measurement shows i2c is usually ready in
24592     under 50us. Change the polling interval to 15us,
24593     loop 6,667 times to keep the polling timeout constant
24594     at 100ms.
24596 commit 36003268968949110ef145d9f2eaf8439c96d25b
24597 Author: Sanjeev Premi <premi@ti.com>
24598 Date:   Fri Apr 3 14:00:07 2009 +0530
24600     OMAP: Fix compile issue
24602     Fixes this compile error:
24603     board.c: In function 'do_switch_ecc':
24604     board.c:339: error: 'cmd_tbl_t' has no member named 'help'
24605     make[1]: *** [board.o] Error 1
24606     make[1]: Leaving directory `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3'
24607     make: *** [cpu/arm_cortexa8/omap3/libomap3.a] Error 2
24609     This is due to the fact that current command uses long
24610     help for the usage print even if the CONFIG_SYS_LONGHELP
24611     is not enabled. (Thanks Jean-Christophe for explanation).
24613     Signed-off-by: Sanjeev Premi <premi@ti.com>
24615 commit 342c1a5d9ab74febf3226a86216dc5aa05295d46
24616 Author: Minkyu Kang <mk7.kang@samsung.com>
24617 Date:   Fri Apr 3 09:56:16 2009 +0900
24619     s3c64xx: fix the wrong gpio offset
24621     This patch fix the wrong gpio offset
24623     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
24625 commit ab0689c316c9b2ee33f4de1c50263b64e539f12a
24626 Author: Kyungmin Park <kmpark@infradead.org>
24627 Date:   Wed Nov 26 10:18:13 2008 +0900
24629     Move machine specific code to board at s3c64xx (v2)
24631     Move machine specific code to smdk6400.
24632     Some board use OneNAND instead of NAND.
24634     Some register MP0_CS_CFG[5:0] are controled by both h/w and s/w.
24635     So it's better to use macro instead of hard-coded value.
24637     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
24639 commit 767f3acd9f6e1dcb8ada926c333945382eddc7e8
24640 Author: Tom Rix <Tom.Rix@windriver.com>
24641 Date:   Wed Apr 1 22:02:19 2009 -0500
24643     ZOOM1 Remove legacy NAND defines
24645     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
24647 commit 5891151707ee5902fe62d554c247f42865815757
24648 Author: Tom Rix <Tom.Rix@windriver.com>
24649 Date:   Wed Apr 1 22:02:20 2009 -0500
24651     OMAP3 Fix multiline formatting in board init files.
24653     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
24655 commit c0a14aedc3440d6591b8c86d45861a0a8b46e11d
24656 Author: Wolfgang Denk <wd@denx.de>
24657 Date:   Sun Apr 5 00:27:57 2009 +0200
24659     Update CHANGELOG, coding style cleanup.
24661 commit f63728c804ab7413a67d70f6774cd30c3f7b40fb
24662 Author: Wolfgang Denk <wd@denx.de>
24663 Date:   Sun Apr 5 00:18:44 2009 +0200
24665     One more fix for building env_embedded.o
24667     In addition to the changes for CONFIG_ENV_IS_IN_FLASH as done in
24668     commit afcbce07, we also need to do the same for
24669     CONFIG_ENV_IS_IN_EEPROM and CONFIG_ENV_IS_IN_NVRAM.
24671     Signed-off-by: Wolfgang Denk <wd@denx.de>
24673 commit e3d1ac7bb1955d36980d267cb4cec40b0f7d30b5
24674 Author: Scott Wood <scottwood@freescale.com>
24675 Date:   Thu Apr 2 16:15:10 2009 -0500
24677     common/image.c: Relocate strings in tables.
24679     Without this, u-boot can crash or print garbage if the original link
24680     address no longer points to a valid string.
24682     Signed-off-by: Scott Wood <scottwood@freescale.com>
24684 commit 3a671fc06ae1d9e8eba76600372317c75ae0eb3e
24685 Author: Scott Wood <scottwood@freescale.com>
24686 Date:   Thu Apr 2 16:10:36 2009 -0500
24688     mpc8260: Fill in brg's clock-frequency in device tree.
24690     Signed-off-by: Scott Wood <scottwood@freescale.com>
24692 commit c73ed274a211699739d83c2cef92853dc6716e15
24693 Author: Scott Wood <scottwood@freescale.com>
24694 Date:   Thu Apr 2 18:20:43 2009 -0500
24696     MPC8260ADS: Add nfsboot/ramboot to default environment.
24698     This brings it in line with other Freescale boards.
24700     Signed-off-by: Scott Wood <scottwood@freescale.com>
24702 commit c203ef5db0476a8c4f6dd86b2e9e9db0ea973f84
24703 Author: Andreas Huber <andreas.huber@keymile.com>
24704 Date:   Thu Apr 2 17:15:34 2009 +0200
24706     UBI/cfi-mtd: Fix mtd name for multiple chips
24708     On platforms with multiple NOR chips, currently only the first one
24709     can be selected using the "ubi part" command. This patch fixes this
24710     problem by using different names for the NOR "mtd devices".
24712     It also changes the name of the NOR MTD device from "cfi-mtd" to
24713     "norX" (X indexing the device numer) to better match the mtdparts
24714     defaults.
24716     Signed-off-by: Stefan Roese <sr@denx.de>
24717     Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
24719 commit 6b6bb02f27fcabfb37ea717fb7e243248e1e2acf
24720 Author: Peter Korsgaard <jacmet@sunsite.dk>
24721 Date:   Tue Mar 31 17:52:16 2009 +0200
24723     tools/setlocalversion: use git svn instead of git-svn
24725     Use the new "git <subcmd>" syntax instead of the deprecated
24726     "git-<subcmd>".
24728     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
24730 commit 7fa96a9a54eb0d87d73888ec2565cda790ba0dff
24731 Author: Mingkai Hu <Mingkai.hu@freescale.com>
24732 Date:   Tue Mar 31 14:09:40 2009 +0800
24734     eSPI: add the eSPI register support
24736     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
24738 commit 869f6bf4def5a053fbd1aecd8b2fc36f05196c0b
24739 Author: Minkyu Kang <mk7.kang@samsung.com>
24740 Date:   Mon Mar 30 14:55:51 2009 +0900
24742     cmd_mmc: add support for device command for selecting mmc device
24744     This patch improves device command for selecting mmc device
24746     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
24748 commit 9abc9ef8fbe079bf75a634ce64b7dcdb7b0d8bdc
24749 Author: Alan Carvalho de Assis <acassis@gmail.com>
24750 Date:   Sat Mar 28 19:50:16 2009 -0300
24752     Small fix to m5282evb
24754     This is just a small fix to get u-boot on m5282evb.
24756     Signed-off-by: Alan Carvalho de Assis <acassis@gmail.com>
24758 commit febd7e4174e54579c9aa165c85c519fe5288f9d2
24759 Author: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
24760 Date:   Fri Mar 27 10:21:14 2009 +0100
24762     UBIFS: add R/O compatibility
24764     Now UBIFS is supported by u-boot. If we ever decide to change the
24765     media format, then people will have to upgrade their u-boots to
24766     mount new format images. However, very often it is possible to
24767     preserve R/O forward-compatibility, even though the write
24768     forward-compatibility is not preserved.
24770     This patch introduces a new super-block field which stores the
24771     R/O compatibility version.
24773     Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
24774     Acked-by: Adrian Hunter <Adrian.Hunter@nokia.com>
24775     Signed-off-by: Stefan Roese <sr@denx.de>
24777 commit 852dbfdd56f68eb67d138b306a64e4de58dabb91
24778 Author: Mike Frysinger <vapier@gentoo.org>
24779 Date:   Mon Mar 23 22:27:34 2009 -0400
24781     more command usage cleanup
24783     Fix up a few dangling commands like in "Command usage cleanup" commit.
24785     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24787 commit b93b24bf76f8a8220b236df3a5f30b2204eb4edc
24788 Author: Ladislav Michl <ladis@linux-mips.org>
24789 Date:   Mon Mar 23 12:06:07 2009 +0100
24791     Separate mtdparts command from jffs2
24793     On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
24794     > Currently the mtdparts commands are included in the jffs2 command support.
24795     > This doesn't make sense anymore since other commands (e.g. UBI) use this
24796     > infrastructure as well now. This patch separates the mtdparts commands from
24797     > the jffs2 commands making it possible to only select mtdparts when no JFFS2
24798     > support is needed.
24800     ... and to make it useful for NAND chips as well, we should also remove now
24801     unrelated CONFIG_JFFS2_NAND. Note that struct part_info etc is in
24802     jffs2/load_kernel.h which is a bit misleading filename for that purpose,
24803     but that can be fixed later (tm).
24805     Signed-off-by:  Ladislav Michl <ladis@linux-mips.org>
24807 commit b196ca75503ce307c535b87bf47d51f05e7530df
24808 Author: Mike Frysinger <vapier@gentoo.org>
24809 Date:   Sun Mar 22 22:18:01 2009 -0400
24811     smc91111_eeprom: move board-specific init into SMC91111_EEPROM_INIT()
24813     Rather than sticking Blackfin-specific stuff into the eeprom example, use
24814     an indirect macro so that any board can override it with their own magic
24815     sauce in their board config file.
24817     Also fix some spurious semi-colons in defines while I'm at it ...
24819     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24820     CC: Ben Warren <biggerbadderben@gmail.com>
24822 commit f5cf2ef2ad2a8bf321712ab460ed846120163d74
24823 Author: Sascha Hauer <s.hauer@pengutronix.de>
24824 Date:   Sat Mar 21 09:38:46 2009 -0400
24826     mpc52xx phy: initialize only when needed
24828     Do not initialize phy on startup, instead initialize it
24829     when we actually need it.
24831     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
24833 commit 03bab0091948196b9558248684c04f60943ca4b5
24834 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24835 Date:   Mon Mar 30 16:51:40 2009 +0200
24837     at91sam9263ek: enable hush and auto complete support
24839     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24840     Acked-by: Stelian Pop <stelian@popies.net>
24842 commit 4758ebdd53571d4d183be5c2db8f0ee4ef368915
24843 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24844 Date:   Fri Mar 27 23:26:44 2009 +0100
24846     at91: move dataflash spi driver to drivers/spi
24848     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24850 commit 2b7178afce59f71e95da657273f4132012098c1f
24851 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24852 Date:   Fri Mar 27 23:26:44 2009 +0100
24854     at91: move usb driver to drivers/usb
24856     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24858 commit f82518d7f443ebac5f8821103a3c521c963aa6ee
24859 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24860 Date:   Fri Mar 27 23:26:43 2009 +0100
24862     at91rm9200: Reset update
24864     Update the rm9200 reset sequence to try executing a board-specific reset
24865     function and move specific board reset to board.
24867     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24869 commit 3524049cd053746298e4cfab2449882e75c146fc
24870 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24871 Date:   Fri Mar 27 23:26:43 2009 +0100
24873     at91rm9200: move serial shutdown code to serial drivers
24875     introduce serial_exit for this purpose. Use it only when the rm9200
24876     serial driver is active
24878     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24880 commit beebd851cdbc9dd070bcdfec1fd8f17e3cc91bc0
24881 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24882 Date:   Fri Mar 27 23:26:43 2009 +0100
24884     at91rm9200: move serial driver to drivers/serial
24886     add CONFIG_AT91RM9200_USART to activate the driver
24888     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24890 commit cb82a532669f6b02225ec3429ea4d49ff2b97d0a
24891 Author: Ulf Samuelsson <ulf@atmel.com>
24892 Date:   Fri Mar 27 23:26:43 2009 +0100
24894     Add support for the AT91RM9200EK Board.
24896     The AT91RM9200-EK Evaluation Board supports the AT91RM9200
24897     ARM9-based 32-bit RISC microcontroller and enables real-time code development
24898     and evaluation.
24900     Here is the chip page on Atmel website:
24901     http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507
24903     with
24904         - NOR (cfi driver)
24905         - DataFlash
24906         - USB OHCI
24907         - Net
24908         - I2C (hard)
24910     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
24911     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24913 commit b9c0e4c29e3ec12668ac50e954e7c9ba8f7aa10a
24914 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24915 Date:   Fri Mar 27 23:26:42 2009 +0100
24917     add dataflash mmc mux missing support
24919     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24921 commit 2a325ce3c705ab2d82760afc541c511328472df8
24922 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24923 Date:   Fri Mar 27 23:26:42 2009 +0100
24925     at91rm9200dk: Move conditional compilation to Makefile
24927     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24929 commit 90a92a708d5180a20d600ba0fc2352ec76dc3829
24930 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24931 Date:   Fri Mar 27 23:26:42 2009 +0100
24933     at91: rename DATAFLASH_MMC_SELECT to CONFIG_DATAFLASH_MMC_SELECT
24935     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24937 commit 843a2654bce74192de2b5a43474fdc27a572ab40
24938 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24939 Date:   Fri Mar 27 23:26:42 2009 +0100
24941     at91sam9: add watchdog support
24943     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
24944     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24946 commit a47492ac60657dd9d59c713aa049319ea6eabd52
24947 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24948 Date:   Fri Mar 27 13:14:52 2009 +0100
24950     at91sam9/at91cap: spi init add hardware chip select support
24952     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24954 commit 66932ac3929c7a145a6ef6574a96fd7535154951
24955 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24956 Date:   Sat Apr 4 19:15:40 2009 +0200
24958     netstar: fix crc32.c dependancy location
24960     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24962 commit 42f9ebff2f758bef524780a00c712eb63a72d99b
24963 Author: Scott Wood <scottwood@freescale.com>
24964 Date:   Fri Apr 3 15:24:40 2009 -0500
24966     MPC8260ADS: Define CONFIG_HAS_ETH0.
24968     This is required so that the MAC address will be updated in the device tree.
24970     Signed-off-by: Scott Wood <scottwood@freescale.com>
24972 commit 8701eceffdf77e2908d0b58add0dabc16edf6087
24973 Author: Scott Wood <scottwood@freescale.com>
24974 Date:   Fri Apr 3 15:26:45 2009 -0500
24976     PQ2FADS: Enable PCI.
24978     PCI on PQ2FADS is very similar to PCI on MPC8272ADS.
24980     Signed-off-by: Scott Wood <scottwood@freescale.com>
24982 commit 83863df04bd30bfe2430b0c43ca9f78596d3f0bc
24983 Author: Wolfgang Denk <wd@denx.de>
24984 Date:   Sat Apr 4 16:57:50 2009 +0200
24986     Fix quoting bug introduced by commit 74de7aef
24988     Signed-off-by: Wolfgang Denk <wd@denx.de>
24990 commit ecf3fb223a56e3c6aa696d94d694eeaca0f44d33
24991 Author: Wolfgang Denk <wd@denx.de>
24992 Date:   Sat Apr 4 16:14:51 2009 +0200
24994     Fix implicit declaration of function 'htons'
24996     Include <netinet/in.h> instead of <linux/in.h> to get htons()
24997     prototpye.
24999     Signed-off-by: Wolfgang Denk <wd@denx.de>
25001 commit e6a6789f41f0560ce280089fbd3f1bd0f0f64306
25002 Author: Kumar Gala <galak@kernel.crashing.org>
25003 Date:   Sat Apr 4 10:21:02 2009 -0500
25005     fsl_law: Fix bug in calculation of LAW sizing
25007     In set_ddr_laws() when we determined how much of the size requested
25008     to be mapped was covered by the the first LAW we needed to recalculate
25009     the size based on what was actually mapped.
25011     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25013 commit 32049b4048ff8e59bd5ba6160d6d5206d283b2a2
25014 Author: Kumar Gala <galak@kernel.crashing.org>
25015 Date:   Thu Apr 2 13:57:05 2009 -0500
25017     fsl_pci: Move prototypes into fsl_pci.h and remove explicit externs
25019     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25021 commit c8514622e2713d9c47919acfe23fce386782afe7
25022 Author: Kumar Gala <galak@kernel.crashing.org>
25023 Date:   Thu Apr 2 13:22:48 2009 -0500
25025     fsl_pci: Renamed immap_fsl_pci.h to fsl_pci.h
25027     Rename the pci header for FSL HW so we can move some prototypes
25028     in there and stop doing explicit externs
25030     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25032 commit afcbce07e9323c0e8aeb783ba7ce6104860fd7a7
25033 Author: Wolfgang Denk <wd@denx.de>
25034 Date:   Sat Apr 4 16:10:40 2009 +0200
25036     Fix building of env_embedded.o
25038     Since commit a706bfc7 common/env_embedded.o and tools/envcrc were
25039     only built when CONFIG_ENV_IS_EMBEDDED was set, but this breaks
25040     building for many boards.
25042     We always have to build these files when CONFIG_ENV_IS_IN_FLASH is
25043     set.
25045     Signed-off-by: Wolfgang Denk <wd@denx.de>
25047 commit a31e091ad70915278fb15b79d6ae53ea2d44b251
25048 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25049 Date:   Sat Apr 4 12:49:11 2009 +0200
25051     rename include/zlib.h to include/u-boot/zlib.h
25053     Some systems have zlib.h installed in /usr/include/. This isn't the
25054     desired file for u-boot code - we want the one in include/zlib.h.
25055     This rename will avoid the conflict.
25057     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25058     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25060 commit ae644c178f097874a92a6d934f364985fc7e075a
25061 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25062 Date:   Sat Apr 4 12:46:31 2009 +0200
25064     tools/Makefile: fix image.c dependancy location
25066     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25067     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25069 commit b074a7081124d7f05fd1651a3bc0b5579fdfa473
25070 Author: Mike Frysinger <vapier@gentoo.org>
25071 Date:   Sat Apr 4 07:42:25 2009 -0400
25073     tools: add ncb to gitignore
25075     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25077 commit 453c0d7558215cbc8636d94af172886d84e0dbba
25078 Author: Detlev Zundel <dzu@denx.de>
25079 Date:   Fri Apr 3 16:45:46 2009 +0200
25081     include/ns16550.h: Unify structure declaration for registers
25083     Instead of special casing the different access patterns, use common
25084     code with light macros sprinkled in to accomodate for the different
25085     layouts of the register structure.
25087     Note that this also changes the types of the registers for the
25088     "positively packed (>1)" cases.  As the registers truly are unsigned
25089     chars, this is surely the Right Thing, but it is a semantic change.
25090     Note that for this case depending on the endianness on the bus, we may
25091     see a change of behaviour.
25093     Signed-off-by: Detlev Zundel <dzu@denx.de>
25095 commit 0a145ce6e7075aa0f4869d6f6149a5ff205d95df
25096 Author: Peter Tyser <ptyser@xes-inc.com>
25097 Date:   Fri Mar 13 18:54:52 2009 -0500
25099     Delete now unused tools/Makefile.win32
25101     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25103 commit 2f8d396b9302eddcd8d552648e101a46b7a80acd
25104 Author: Peter Tyser <ptyser@xes-inc.com>
25105 Date:   Fri Mar 13 18:54:51 2009 -0500
25107     Add support for building native win32 tools
25109     Add support for compiling the host tools in the tools directory using
25110     the MinGW toolchain.  This produces executables which can be used on
25111     standard Windows computers without requiring cygwin.
25113     One must specify the MinGW compiler and strip utilities as if they
25114     were the host toolchain in order to build win32 executables, eg:
25116     make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools
25118     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25120 commit e50abf662efbf4ce0e731062c8d3c8ec54763ae2
25121 Author: Peter Tyser <ptyser@xes-inc.com>
25122 Date:   Fri Mar 13 18:54:50 2009 -0500
25124     tools/Makefile: Simplify HOST_CFLAGS/HOST_LDFLAGS generation
25126     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25128 commit b0d4d7219a4806e46affc96bd1f65397194a6e72
25129 Author: Peter Tyser <ptyser@xes-inc.com>
25130 Date:   Fri Mar 13 18:54:49 2009 -0500
25132     tools/Makefile: Create generic build rules
25134     Create a few generic build rules to replace the current method which has
25135     1 build target for each file
25137     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25139 commit 273174ddbcce215c42f6c307470cd5580a3f72bf
25140 Author: Peter Tyser <ptyser@xes-inc.com>
25141 Date:   Fri Mar 13 18:54:48 2009 -0500
25143     tools/Makefile: Use auto-generated object file dependencies
25145     Files in the SRCS variable have their dependencies automatically
25146     generated so remove duplicate explicit dependencies
25148     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25150 commit fb8b33c1e6d621ea3347a75ad3a42a386b44e589
25151 Author: Peter Tyser <ptyser@xes-inc.com>
25152 Date:   Fri Mar 13 18:54:47 2009 -0500
25154     tools/Makefile: Remove symlinks for remaining source files
25156     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25158 commit eed073315b6447eceadf7468a4c2b757442c7c6f
25159 Author: Peter Tyser <ptyser@xes-inc.com>
25160 Date:   Fri Mar 13 18:54:46 2009 -0500
25162     tools/Makefile: Dynamically generate libfdt object dependencies
25164     Add the libfdt files to the SRCS variable so that they have their
25165     dependencies automatically generated
25167     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25169 commit c0170175393b94560fa7a5da6dd31377df5f4a72
25170 Author: Peter Tyser <ptyser@xes-inc.com>
25171 Date:   Fri Mar 13 18:54:45 2009 -0500
25173     tools/Makefile: Remove symlinks for fdt targets
25175     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25177 commit 45d6bdff68877ea214ff33cc1c89a29c76e96f51
25178 Author: Peter Tyser <ptyser@xes-inc.com>
25179 Date:   Fri Mar 13 18:54:44 2009 -0500
25181     tools/Makefile: Add libfdt/ to the include search path
25183     This change makes the process of symlinking libfdt_internal.h
25184     unnecessary
25186     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25188 commit fba0e3a0814f9bf48c32a4c8a7987c36ae96651b
25189 Author: Peter Tyser <ptyser@xes-inc.com>
25190 Date:   Fri Mar 13 18:54:43 2009 -0500
25192     tools: Remove unecessary symlinking of zlib.h
25194     crc32.c uses the zlib.h header in include/u-boot/zlib.h.  The symlink
25195     was previously necessary to give U-Boot's version of zlib.h precedence
25196     over the host computer's version of zlib.h.
25198     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25200 commit 40b8d909ace06f6f494dee08ffa64a82493e72e9
25201 Author: Peter Tyser <ptyser@xes-inc.com>
25202 Date:   Fri Mar 13 18:54:42 2009 -0500
25204     tools/Makefile: Add tools/ to the include search path
25206     This change makes the process of symlinking mkimage.h and fdt_host.h
25207     unnecessary
25209     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25211 commit 1cd300de5e19c9e8383ee2eb2b6bd3b8b9378c78
25212 Author: Peter Tyser <ptyser@xes-inc.com>
25213 Date:   Fri Mar 13 18:54:41 2009 -0500
25215     tools/Makefile: Compile ncb when CONFIG_NETCONSOLE
25217     Also conditionally add ncb.o to OBJ_FILES list
25219     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25221 commit 123c48a21ce08b4a33f36e96cc75f92324e761d7
25222 Author: Peter Tyser <ptyser@xes-inc.com>
25223 Date:   Fri Mar 13 18:54:40 2009 -0500
25225     tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET
25227     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25229 commit 4d93a0a807b8ca0289ba5da00c646cd2d54af120
25230 Author: Peter Tyser <ptyser@xes-inc.com>
25231 Date:   Fri Mar 13 18:54:39 2009 -0500
25233     tools/Makefile: Make envcrc dependent upon CONFIG_ENV_IS_EMBEDDED
25235     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25237 commit cd26a31a23f9a58ba52870f8ffb57d77d1baee20
25238 Author: Peter Tyser <ptyser@xes-inc.com>
25239 Date:   Fri Mar 13 18:54:38 2009 -0500
25241     tools/Makefile: Make inca-swap-bytes dependent on CONFIG_INCA_IP
25243     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25245 commit 7cd5cbc34699ccc15d0277f48375cad928d04faf
25246 Author: Peter Tyser <ptyser@xes-inc.com>
25247 Date:   Fri Mar 13 18:54:37 2009 -0500
25249     tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG
25251     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25253 commit eeba8617908e33f7e7db3b1588c04ca65b856793
25254 Author: Peter Tyser <ptyser@xes-inc.com>
25255 Date:   Fri Mar 13 18:54:36 2009 -0500
25257     tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS
25259     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25261 commit 335ffe7e0e0a30e90ce409c3279016a582157d8e
25262 Author: Peter Tyser <ptyser@xes-inc.com>
25263 Date:   Fri Mar 13 18:54:35 2009 -0500
25265     tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled
25267     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25269 commit ee3584a5970230ee96aae19505ad3226734ee4ff
25270 Author: Peter Tyser <ptyser@xes-inc.com>
25271 Date:   Fri Mar 13 18:54:34 2009 -0500
25273     tools/Makefile: Split variable declarations into multiple lines
25275     Split variable declarations into multiple lines and use the standard
25276     VAR-y convention.  Also move object and binary variable declarations to
25277     after config.mk has been included to allow for these lists to utilize
25278     the CONFIG_XXX variables.
25280     These changes lay the groundwork for conditional compilation of files
25281     in the tools directory.
25283     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25285 commit 21d28e95ed874ab1ed9787f939d8a53e99d30ddb
25286 Author: Peter Tyser <ptyser@xes-inc.com>
25287 Date:   Fri Mar 13 18:54:33 2009 -0500
25289     tools/Makefile: Remove inappropriate double-tabs
25291     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25293 commit 652f4ba076689fd0acd447561a777b1c440a4b57
25294 Author: Peter Tyser <ptyser@xes-inc.com>
25295 Date:   Fri Mar 13 18:54:32 2009 -0500
25297     tools/Makefile: Remove HOSTARCH HOSTOS defines
25299     The values of HOSTARCH and HOSTOS which are exported from the top-level
25300     Makefile should be used
25302     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25304 commit 2eeb4e95fbfafe54645fae7ec0b2594101f0573b
25305 Author: Peter Tyser <ptyser@xes-inc.com>
25306 Date:   Fri Mar 13 18:54:31 2009 -0500
25308     gen_eth_addr: Use POSIX rand() and srand()
25310     Replace random()/srandom() use with rand()/srand() to support
25311     compilation with the mingw toolchain.  The rand()/srand() functions are
25312     generally more common and are functionally equivalent to the original
25313     random()/srandom() calls.
25315     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25317 commit 24d2ae5e9debe4b75151a55251031a14477fa875
25318 Author: Peter Tyser <ptyser@xes-inc.com>
25319 Date:   Fri Mar 13 18:54:28 2009 -0500
25321     elf.h: Use stdint.h to provide standard typedefs for WIN32
25323     The original code provided an incomplete set of typedefs for WIN32
25324     compiles and replicated the standard typedefs that are already
25325     provided by stdint.h
25327     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25329 commit a706bfc7d0e2d1935c5670045288e6cd1ffdfabc
25330 Author: Peter Tyser <ptyser@xes-inc.com>
25331 Date:   Fri Mar 13 18:54:27 2009 -0500
25333     common/Makefile: Conditionally compile env_embedded.o
25335     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25337 commit 2b48f7d5f62835f87278efb498397b6ae9e2d117
25338 Author: Peter Tyser <ptyser@xes-inc.com>
25339 Date:   Fri Mar 13 18:54:26 2009 -0500
25341     Makefile: Add removal of *.exe files to clean target
25343     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25345 commit d0d6144e0e4a03a68311b781f3dde38dc9316b82
25346 Author: Peter Tyser <ptyser@xes-inc.com>
25347 Date:   Fri Mar 13 18:54:25 2009 -0500
25349     Makefile: Make autoconf.mk a dependency of the depend target
25351     The original code did not generate autoconf.mk until after some targets
25352     dependencies had already been calculated, for example the directories in
25353     the SUBDIRS variable
25355     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
25357 commit 75eb82ec7cacb18d059d701b35677b93d2bb7596
25358 Author: unsik Kim <donari75@gmail.com>
25359 Date:   Wed Feb 25 11:31:24 2009 +0900
25361     mflash: Initial mflash support
25363     Mflash is fusion memory device mainly targeted consumer eletronic and
25364     mobile phone.
25365     Internally, it have nand flash and other hardware logics and supports
25366     some different operation (ATA, IO, XIP) modes.
25368     IO mode is custom mode for the host that doesn't have IDE interface.
25369     (Many mobile targeted SoC doesn't have IDE bus)
25371     This driver support mflash IO mode.
25373     Followings are brief descriptions about IO mode.
25375     1. IO mode based on ATA protocol and uses some custom command. (read
25376        confirm, write confirm)
25377     2. IO mode uses SRAM bus interface.
25379     Signed-off-by: unsik Kim <donari75@gmail.com>
25381 commit 200779e3e2a9aeda7030b171a8c39d7797019917
25382 Author: Detlev Zundel <dzu@denx.de>
25383 Date:   Fri Apr 3 11:53:01 2009 +0200
25385     Rename common ns16550 constants with UART_ prefix to prevent conflicts
25387     Fix problems introduced in commit
25388     7b5611cdd12ca0cc33f994f0d4a4454788fc3124 [inka4x0: Add hardware
25389     diagnosis functions for inka4x0] which redefined MSR_RI which is
25390     already used on PowerPC systems.
25392     Also eliminate redundant definitions in ps2mult.h.  More cleanup will
25393     be needed for other redundant occurrences though.
25395     Signed-off-by: Detlev Zundel <dzu@denx.de>
25397 commit 99067b08f4a0ce20ff337a35211239f334d8f451
25398 Author: Scott Wood <scottwood@freescale.com>
25399 Date:   Wed Apr 1 15:33:24 2009 -0500
25401     Noisily disable the legacy NAND subsystem.
25403     Legacy NAND is marked for feature removal after April 2009 (i.e. this
25404     upcoming release).  There are still several boards that reference it
25405     (though many do so only for disk-on-chip support which has been silently
25406     disabled for a while now).  These boards will now fail to build
25407     with #error, though the code is still there if the user removes #error.
25409     The plan is to remove the code outright in the next release, along with
25410     any board code that refers to it (such as board/esd/common/auto_update.c).
25412     Also, remove the legacy NAND API description from README.nand.
25414     Signed-off-by: Scott Wood <scottwood@freescale.com>
25416 commit 69bcabb51686fdd133cb1848c0d3b0a4fc6ca5cf
25417 Author: apgmoorthy <moorthy.apg@samsung.com>
25418 Date:   Fri Mar 27 14:45:23 2009 +0530
25420     Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
25422     Currently OneNAND initial program loader (ipl) reads only block 0 ie 128KB.
25423     However, u-boot image for apollon board is 195KB making the board
25424     unbootable with OneNAND.
25426     Fix ipl to read CONFIG_SYS_MONITOR_LEN.
25427     CONFIG_SYS_MONITOR_LEN macro holds the U-Boot image size.
25429     Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
25430     Signed-off-by: Gangheyamoorthy   <moorthy.apg@samsung.com>
25431     Signed-off-by: Scott Wood <scottwood@freescale.com>
25433 commit 74de7aefd79690bae8cf5a5120f5962d444be089
25434 Author: Wolfgang Denk <wd@denx.de>
25435 Date:   Wed Apr 1 23:34:12 2009 +0200
25437     Add "source" command; prepare removal of "autoscr" command
25439     According to the doc/feature-removal-schedule.txt, the "autoscr"
25440     command will be replaced by the "source" command in approximately 6
25441     months from now.
25443     This patch prepares this change and starts a 6 month transition
25444     period as follows:
25446     - The new "source" command has been added, which implements exactly
25447       the same functionlaity as the old "autoscr" command before
25448     - The old "autoscr" command name is kept as an alias for compatibility
25449     - Command sequences, script files atc. have been adapted to use the
25450       new "source" command
25451     - Related environment variables ("autoscript", "autoscript_uname")
25452       have *not* been adapted yet; these will be renamed resp. removed in
25453       a separate patch when the support for the "autoscr" command get's
25454       finally dropped.
25456     Signed-off-by: Wolfgang Denk <wd@denx.de>
25458 commit 78237df55248034a2d7c2daea992b9dbe7ca8e96
25459 Author: Wolfgang Denk <wd@denx.de>
25460 Date:   Thu Apr 2 17:31:09 2009 +0200
25462     Add "GPL cleanup" task to feature-removal-schedule.txt
25464     Announce removal of all non-GPL or GPL-incompatible files
25465     after August 2009.
25467     Signed-off-by: Wolfgang Denk <wd@denx.de>
25469 commit d9596ffbdc79cea285010b67dd20a4618303f624
25470 Author: Mike Frysinger <vapier@gentoo.org>
25471 Date:   Thu Apr 2 12:51:28 2009 -0400
25473     sf: stmicro: dont send 4 bytes when reading status register
25475     I can't find anywhere in the datasheet that says the status register needs
25476     3 dummy bytes sent to it before being able to read back the first real
25477     result.  Tests on a Blackfin board show that after writing the opcode, the
25478     status register starts coming back immediately.  So only write out the
25479     read status register opcode before polling the result.
25481     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25482     CC: Jason McMullan <mcmullan@netapp.com>
25483     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
25485 commit 1abe365ffcfc29c061e8fd8b45551be5ad1428dd
25486 Author: Mike Frysinger <vapier@gentoo.org>
25487 Date:   Thu Apr 2 08:11:31 2009 -0400
25489     sf: set common timeouts in seconds, not milliseconds
25491     Since timeouts are only hit when there is a problem in the system, we
25492     don't want to prematurely timeout on a functioning setup.  Thus having
25493     low timeouts (in milliseconds) doesn't gain us anything in the production
25494     case, but rather increases likely hood of causing problems where none
25495     otherwise exist.
25497     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25498     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25500 commit 2a6ce1115b3cbe746965cfa0058ce645b6c1ada1
25501 Author: Mike Frysinger <vapier@gentoo.org>
25502 Date:   Thu Apr 2 06:51:49 2009 -0400
25504     sf: stmicro: use common page timeout define
25506     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25507     CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25509 commit 0dcdbb172c2fdf60c5c578980308b312fd56496f
25510 Author: Mike Frysinger <vapier@gentoo.org>
25511 Date:   Sat Mar 28 06:41:09 2009 -0400
25513     sf: always read 5 bytes for the idcode
25515     Some SPI flash drivers like to have extended id information available
25516     (like the spansion flash), so rather than making it re-issue the ID cmd
25517     to get at the last 2 bytes, have the common code read 5 bytes rather than
25518     just 3.  This also matches the Linux behavior where it always reads 5 id
25519     bytes from all flashes.
25521     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25522     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25523     CC: Mingkai Hu <Mingkai.hu@freescale.com>
25525 commit 9726ba4abaa16cd6c385ad350d403f98a8eacf52
25526 Author: Mike Frysinger <vapier@gentoo.org>
25527 Date:   Fri Mar 27 16:34:21 2009 -0400
25529     sf: stmicro: drop redundant id read
25531     The common SPI flash code reads the idcode and passes it down to the SPI
25532     flash driver, so there is no need to read it again ourselves.
25534     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25535     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25536     CC: Jason McMullan <mcmullan@netapp.com>
25537     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
25539 commit 1c5874374e091b4bb62917c519861f7682fe066e
25540 Author: Mike Frysinger <vapier@gentoo.org>
25541 Date:   Fri Mar 27 19:27:58 2009 -0400
25543     sf: add driver for SST flashes
25545     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25546     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25548 commit f773a1bbdb8f3bf1ddab2874f36f043c4f8f044d
25549 Author: Mike Frysinger <vapier@gentoo.org>
25550 Date:   Mon Mar 23 23:03:58 2009 -0400
25552     sf: drop DEBUG defines
25554     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25555     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
25557 commit 6b850a9fa8a216f3692da2511cb1a6c16409b1af
25558 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25559 Date:   Sun Jan 4 07:44:07 2009 +0100
25561     mtd: add some at45 spi flash support
25563      - AT45DB321D
25564      - AT45DB161D
25565      - AT45DB081D
25566      - AT45DB041D
25567      - AT45DB021D
25568      - AT45DB011D
25570     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25571     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25573 commit 6805e4bf83e6f444f7411101228766c8a7aec5f7
25574 Author: Mingkai Hu <Mingkai.hu@freescale.com>
25575 Date:   Tue Mar 31 14:09:41 2009 +0800
25577     mtd: SPI Flash: Support the Spansion Flash
25579     Add MTD SPI Flash support for S25FL008A, S25FL016A,
25580     S25FL032A, S25FL064A, S25FL128P.
25582     Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
25583     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25585 commit 40587701924aa0afc86b3840421b4cc6de42c748
25586 Author: Mike Frysinger <vapier@gentoo.org>
25587 Date:   Mon Mar 30 20:56:45 2009 -0400
25589     Blackfin: force all boards to HZ of 1000
25591     Since the Blackfin timer code requires HZ to be 1000, barf on any board
25592     that tries to use a different value.
25594     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25596 commit f4032d2eec9d71a59c6c724671e577f67a76839b
25597 Author: Mike Frysinger <vapier@gentoo.org>
25598 Date:   Fri Mar 27 21:07:45 2009 -0400
25600     Blackfin: bf533-stamp: drop old spi flash driver
25602     Now that the common SPI flash code supports all the flashes, we can stop
25603     using the old driver.
25605     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25607 commit bc72f50a659d0d1b551817e1910b9b2be1c7e496
25608 Author: Mike Frysinger <vapier@gentoo.org>
25609 Date:   Thu Mar 26 15:42:12 2009 -0400
25611     Blackfin: add BF538/BF539 SPI portmux handling
25613     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25615 commit 46ac352f0f9406a5f9aa157ac62867fb4650dfd3
25616 Author: Mike Frysinger <vapier@gentoo.org>
25617 Date:   Mon Mar 23 22:36:10 2009 -0400
25619     Blackfin: do not delay on output bytes
25621     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25623 commit dbc6ab9f75bd0c13d3f42692e9463f8ab65fc382
25624 Author: Mike Frysinger <vapier@gentoo.org>
25625 Date:   Mon Mar 23 22:17:27 2009 -0400
25627     Blackfin: drop newline from OTP help
25629     Looks like I accidentally added a newline to the OTP help when merging and
25630     older change.
25632     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25634 commit d3c38d96b991d641a33f7748130dae008563cdc9
25635 Author: Mike Frysinger <vapier@gentoo.org>
25636 Date:   Sun Mar 22 23:43:31 2009 -0400
25638     Blackfin: convert bfin_sdh to legacy mmc
25640     The Blackfin SDH controller is still using the legacy framework, so update
25641     the driver to use the renamed functions.
25643     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25645 commit d248cfb2d940b742f6bfdba9b832a3df96da3101
25646 Author: Mike Frysinger <vapier@gentoo.org>
25647 Date:   Sun Feb 22 16:30:38 2009 -0500
25649     Blackfin: bf537-stamp: split CF/IDE code out into dedicated cf-ide.c
25651     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25653 commit ad9073211ca9e62162a39851e082b8d07a662fb6
25654 Author: Mike Frysinger <vapier@gentoo.org>
25655 Date:   Fri Feb 13 17:10:58 2009 -0500
25657     Blackfin: fix crash when booting from external memory
25659     When testing a u-boot binary that hasn't been booted from the bootrom, we
25660     have to make sure the bootstruct structure has sane storage space.  If we
25661     don't, the initcode will crash when it tries to dereference an invalid
25662     pointer.
25664     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25666 commit 84a9dda324c3faa56be14449d7519b993d9397a9
25667 Author: Mike Frysinger <vapier@gentoo.org>
25668 Date:   Sun Oct 12 21:32:52 2008 -0400
25670     Blackfin: bf518f-ezbrd: new board port
25672     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25674 commit 0c31ddf7b70f77dede42dc82ecab7753a819acaa
25675 Author: Mike Frysinger <vapier@gentoo.org>
25676 Date:   Sun Oct 12 21:30:48 2008 -0400
25678     Blackfin: bf526-ezbrd: new board port
25680     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25682 commit 5c45f7cac2f74e2c14aa6b028cd969651cc9ac8e
25683 Author: Mike Frysinger <vapier@gentoo.org>
25684 Date:   Sun Oct 12 21:25:33 2008 -0400
25686     Blackfin: bf538f-ezkit: new board port
25688     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25690 commit d9a5d113b93583c984711127ab8503e136ed1e4a
25691 Author: Mike Frysinger <vapier@gentoo.org>
25692 Date:   Sun Oct 12 20:59:12 2008 -0400
25694     Blackfin: bf527-ezkit: new board port
25696     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25698 commit 76d21803ddd7dc4bcb81739ea2d3cd679e052f46
25699 Author: Mike Frysinger <vapier@gentoo.org>
25700 Date:   Sun Oct 12 05:05:42 2008 -0400
25702     Blackfin: bf548-ezkit: new board port
25704     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25706 commit 67b89c79e72fe86b0ea0199425d880630beb95d8
25707 Author: Laurent Gregoire <laurent.gregoire@tomtom.com>
25708 Date:   Tue Mar 3 14:23:59 2009 +0100
25710     libfdt: Fix C++ compile-time cast error on gnu 4.2.1
25712     Allow the inclusion of libfdt.h in C++ source.
25714     Signed-off-by: Laurent Gregoire <laurent.gregoire@tomtom.com>
25715     Acked-by: David Gibson <david@gibson.dropbear.id.au>
25717 commit 13d93f38e86818739317b0206d597265cf9e675e
25718 Author: Emil Medve <Emilian.Medve@Freescale.com>
25719 Date:   Mon Feb 23 10:43:36 2009 -0600
25721     Fix a possible overflow case detected by gcc 4.3.2
25723     .../dtc/libfdt/fdt_sw.c: In function 'fdt_end_node':
25724     .../dtc/libfdt/fdt_sw.c:81: error: assuming signed overflow does not occur when assuming that (X + c) < X is always false
25726     Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
25728 commit a22d9cfbb5bcfb3dc6ffd64d391b568e8a0ce383
25729 Author: David Gibson <david@gibson.dropbear.id.au>
25730 Date:   Fri Feb 6 14:03:24 2009 +1100
25732     libfdt: Rework/cleanup fdt_next_tag()
25734     Currently, callers of fdt_next_tag() must usually follow the call with
25735     some sort of call to fdt_offset_ptr() to verify that the blob isn't
25736     truncated in the middle of the tag data they're going to process.
25737     This is a bit silly, since fdt_next_tag() generally has to call
25738     fdt_offset_ptr() on at least some of the data following the tag for
25739     its own operation.
25741     This patch alters fdt_next_tag() to always use fdt_offset_ptr() to
25742     verify the data between its starting offset and the offset it returns
25743     in nextoffset.  This simplifies fdt_get_property() which no longer has
25744     to verify itself that the property data is all present.
25746     At the same time, I neaten and clarify the error handling for
25747     fdt_next_tag().  Previously, fdt_next_tag() could return -1 instead of
25748     a tag value in some circumstances - which almost none of the callers
25749     checked for.  Also, fdt_next_tag() could return FDT_END either because
25750     it encountered an FDT_END tag, or because it reached the end of the
25751     structure block - no way was provided to tell between these cases.
25753     With this patch, fdt_next_tag() always returns FDT_END with a negative
25754     value in nextoffset for an error.  This means the several places which
25755     loop looking for FDT_END will still work correctly - they only need to
25756     check for errors at the end.  The errors which fdt_next_tag() can
25757     report are:
25758         - -FDT_ERR_TRUNCATED if it reached the end of the structure
25759            block instead of finding a tag.
25761         - -FDT_BADSTRUCTURE if a bad tag was encountered, or if the
25762                tag data couldn't be verified with fdt_offset_ptr().
25764     This patch also updates the callers of fdt_next_tag(), where
25765     appropriate, to make use of the new error reporting.
25767     Finally, the prototype for the long gone _fdt_next_tag() is removed
25768     from libfdt_internal.h.
25770     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
25772 commit 2c0b843e710aa1e2da25c2592e6dbe5d0b0ab7da
25773 Author: David Gibson <david@gibson.dropbear.id.au>
25774 Date:   Fri Feb 6 14:01:56 2009 +1100
25776     libfdt: Rework fdt_next_node()
25778     Currently fdt_next_node() will find the next node in the blob
25779     regardless of whether it is above, below or at the same level in the
25780     tree as the starting node - the depth parameter is updated to indicate
25781     which is the case.  When a depth parameter is supplied, this patch
25782     makes it instead terminate immediately when it finds the END_NODE tag
25783     for a node at depth 0.  In this case it returns the offset immediately
25784     past the END_NODE tag.
25786     This has a couple of advantages.  First, this slightly simplifies
25787     fdt_subnode_offset(), which no longer needs to explicitly check that
25788     fdt_next_node()'s iteration hasn't left the starting node.  Second,
25789     this allows fdt_next_node() to be used to implement
25790     _fdt_node_end_offset() considerably simplifying the latter function.
25792     The other users of fdt_next_node() either don't need to iterate out of
25793     the starting node, or don't pass a depth parameter at all.  Any
25794     callers that really need to iterate out of the starting node, but keep
25795     tracking depth can do so by biasing the initial depth value.
25797     This is a semantic change, but I think it's very unlikely to break any
25798     existing library users.
25800     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
25802 commit c123098035be8bae3859bbfbd06861f197c07631
25803 Author: Scott Wood <scottwood@freescale.com>
25804 Date:   Tue Mar 31 17:49:36 2009 -0500
25806     mpc83xx: Set guarded bit on BAT that covers the end of the address space
25808     The mpc8313erdb board currently sets DBAT6 to cover all of the final 256MiB of
25809     address space; however, not all of this space is covered by a device.  In
25810     particular, flash sits at 0xfe000000-0xfe7fffff, and nothing is mapped
25811     at the far end of the address space.
25813     In zlib, there is a loop that references p[-1] if p is non-NULL.  Under
25814     some circumstances, this leads to the CPU speculatively loading from
25815     0xfffffff8 if p is NULL.  This leads to a machine check.
25817     Signed-off-by: Scott Wood <scottwood@freescale.com>
25819     continuation to the remaining mpc83xx boards that suffer from the same problem.
25821     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25823 commit c2eb8be7f760a2efe30a495bfb10857838dcf3fa
25824 Author: Kim Phillips <kim.phillips@freescale.com>
25825 Date:   Mon Mar 30 14:28:05 2009 -0500
25827     rtc: remove broken rtc_read and rtc_write declarations
25829     commit 04e11cf3 "rtc: add support for 4543 RTC (manufactured by e.g.
25830     EPSON)" introduces the following build error on boards configuring e.g,
25831     the ds1374 rtc:
25833     Configuring for MPC837XEMDS board...
25834     ds1374.c:103: error: static declaration of 'rtc_read' follows non-static declaration
25835     /home/r1aaha/git/u-boot/include/rtc.h:64: error: previous declaration of 'rtc_read' was here
25836     ds1374.c:104: error: conflicting types for 'rtc_write'
25837     /home/r1aaha/git/u-boot/include/rtc.h:65: error: previous declaration of 'rtc_write' was here
25839     this reverts the erroneous chunk.
25841     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25842     Acked-by: Detlev Zundel <dzu@denx.de>
25843     CC: Detlev Zundel <dzu@denx.de>
25844     CC: Andreas Pfefferle <ap@denx.de>
25846 commit fc39c2fd51e64707de4d61ed49479ebea2847e1b
25847 Author: Kumar Gala <galak@kernel.crashing.org>
25848 Date:   Tue Mar 31 17:58:13 2009 -0500
25850     85xx/86xx: Ensure MP boot page is not used
25852     We had a bug on 86xx in which the boot page used to bring up secondary
25853     cores was being overwritten and used for the malloc region in u-boot.
25855     We need to reserve the region of memory that the boot page is going to
25856     be put at so nothing uses it.
25858     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25859     Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
25861 commit c840d26c752141b94bbc24ac748ddd45752a955a
25862 Author: Kumar Gala <galak@kernel.crashing.org>
25863 Date:   Tue Mar 31 23:11:05 2009 -0500
25865     85xx: Introduce determine_mp_bootpg() helper.
25867     Match determine_mp_bootpg() that was added for 86xx.  We need this to
25868     address a bug introduced in v2009.03 with 86xx MP booting.  We have to
25869     make sure to reserve the region of memory used for the MP bootpg() so
25870     other u-boot code doesn't use it.
25872     Also added a comment about how cpu_reset() is dealing w/an errata on
25873     early 85xx MP HW.
25875     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25877 commit 7649a590b53ee548f41428bf20780f74ce9fc099
25878 Author: Kumar Gala <galak@kernel.crashing.org>
25879 Date:   Tue Mar 31 23:02:38 2009 -0500
25881     86xx: Cleanup MP support
25883     * Use CONFIG_MP instead of CONFIG_NUM_CPUS to match 85xx
25884     * Introduce determine_mp_bootpg() helper.  We'll need this to address a
25885       bug introduced in v2009.03 with 86xx MP booting.  We have to make sure
25886       to reserve the region of memory used for the MP bootpg() so other
25887       u-boot code doesn't use it.
25888     * Added dummy versions of cpu_reset(), cpu_status() & cpu_release() to
25889       allow cmd_mp.c to build and work. In the future we should look at
25890       implementing all these functions. This could be common w/85xx if we
25891       use spin tables on 86xx.
25893     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25895 commit f6ef8b7a43ed7f68a4bb524faad5e4f75ea3e3e2
25896 Author: Becky Bruce <beckyb@kernel.crashing.org>
25897 Date:   Tue Mar 31 18:38:37 2009 -0500
25899     mpc8641hpcn/sbc8641d: Add missing board_lmb_reserves
25901     We're missing the board_lmb_reserve definitions that allow
25902     cpu_mp_lmb_reserve to be called; this means that Linux
25903     is free to reallocate reserved pages.  Linux currently boots
25904     because we're getting lucky - the page we've reserved is
25905     high enough in memory that it isn't allocated by Linux
25906     while we still need it to be in existence.
25908     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
25909     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25911 commit 0fc4f64c59873a47d555dd66bad25797d4ecb0ed
25912 Author: Ladislav Michl <ladis@linux-mips.org>
25913 Date:   Tue Mar 31 13:43:10 2009 +0200
25915     NetStar: fix NAND
25917     Fix NAND support broken during new NAND code merge. Move those few lines of
25918     code to board/netstar/netstar.c
25920     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
25922 commit d144f94d590b5190a9963bd0f2026b2a7ce67eda
25923 Author: Jens Scharsig <esw@bus-elektronik.de>
25924 Date:   Tue Mar 31 08:18:29 2009 +0200
25926     soft_i2c.c compiler/linker error
25928     This patch fix the compiler/linker errors
25930     common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed'
25931     common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed'
25933     if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not
25934     uesd/undef (wrong define order)
25936     and
25938     removes additional empty lines
25940     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
25942 commit 765547dc5e0e8cbe6b8f4ea8a5d6ff237935c352
25943 Author: Haiying Wang <Haiying.Wang@freescale.com>
25944 Date:   Fri Mar 27 17:02:45 2009 -0400
25946     MPC85xx: Add MPC8569MDS board support
25948     This patch adds MPC8569MDS board support. The UART, QE UEC1 and UEC2, BRD
25949     EEPROM on I2C2 bus, PCI express and DDR3 SPD are supported in this patch.
25951     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
25952     Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
25953     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25955 commit 22b6dbc1696d927d938dd4e16f65d83c0d4fb3f4
25956 Author: Haiying Wang <Haiying.Wang@freescale.com>
25957 Date:   Fri Mar 27 17:02:44 2009 -0400
25959     MPC85xx: Add MPC8569 CPU support
25961     There is a workaround for MPC8569 CPU Errata, which needs to set Bit 13 of
25962     LBCR in 4K bootpage. We setup a temp TLB for eLBC controller in bootpage,
25963     then invalidate it after LBCR bit 13 is set.
25965     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
25966     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25968 commit 2d4de6ae5be54b367a72a7ef4e0cf36a9cd4881f
25969 Author: Haiying Wang <Haiying.Wang@freescale.com>
25970 Date:   Thu Mar 26 17:01:49 2009 -0400
25972     MPC85xx: Load and enable QE microcode patch in IRAM
25974     For the silicon which doesn't have ROM support in QE, it always needs to load
25975     a pre-built ucode binary to IRAM so that QE can work.
25977     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
25978     Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
25980 commit 1b3e4044a28a3d95b0aad41bdc52482bb2cc9b2b
25981 Author: Kumar Gala <galak@kernel.crashing.org>
25982 Date:   Thu Mar 19 09:16:10 2009 -0500
25984     85xx: Add support for additional e500mc features
25986     * Enable backside L2
25987     * e500mc no longer has timebase enable in HID (moved to CCSR register)
25989     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25991 commit c360ceac0286159f94d9d1a9496fc9858c8d9bec
25992 Author: Dave Liu <daveliu@freescale.com>
25993 Date:   Sat Mar 14 12:48:30 2009 +0800
25995     fsl-ddr: add the DDR3 SPD infrastructure
25997     - support mirrored DIMMs, not support register DIMMs
25998     - test passed on P2020DS board with MT9JSF12872AY-1G1D1
25999     - test passed on MPC8569MDS board with MT8JSF12864HY-1G1D1
26001     Signed-off-by: Dave Liu <daveliu@freescale.com>
26002     Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
26004 commit 6a8197836702991468cead5ead073f589e2623ad
26005 Author: Dave Liu <daveliu@freescale.com>
26006 Date:   Sat Mar 14 12:48:19 2009 +0800
26008     fsl-ddr: Fix two bugs in the ddr infrastructure
26010     1. wr_lat
26011        UM said the total write latency for DDR2 is equal to
26012        WR_LAT + ADD_LAT, the write latency is CL + ADD_LAT - 1.
26013        so, the WR_LAT = CL - 1;
26014     2. rd_to_pre
26015        we missed to add the ADD_LAT for DDR2 case.
26017     Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
26018     Signed-off-by: Dave Liu <daveliu@freescale.com>
26020 commit 540dcf1cb86961e11aa92c47671f27762c581d8c
26021 Author: Kumar Gala <galak@kernel.crashing.org>
26022 Date:   Thu Mar 26 01:34:39 2009 -0500
26024     83xx: Use common LSDMR defines from asm/fsl_lbc.h
26026     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26027     Acked-by: Kim Phillips <kim.phillips@freescale.com>
26029 commit b0fe93eda69721aef1fdef576164b668fad83bbd
26030 Author: Kumar Gala <galak@kernel.crashing.org>
26031 Date:   Thu Mar 26 01:34:38 2009 -0500
26033     85xx: Use common LSDMR defines from asm/fsl_lbc.h
26035     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26037 commit 0088c298f0eeb90ec001f744e9959dea83dd563a
26038 Author: Kumar Gala <galak@kernel.crashing.org>
26039 Date:   Thu Mar 26 01:34:37 2009 -0500
26041     Add LSDMR (SDRAM Mode Register) definition on localbus
26043     The masks for various bit defines of LSDMR are common and thus we can
26044     define them in one place rather than replicating them in each config.h
26046     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26048 commit 89c00fb15859213788f0ad089934c376fb356099
26049 Author: Ladislav Michl <ladis@linux-mips.org>
26050 Date:   Mon Mar 30 18:58:41 2009 +0200
26052     OMAP: use {read,write}l to access timer registers
26054     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
26056 commit 81472d893fa565c9d300928a40e504a689bde131
26057 Author: Ladislav Michl <ladis@linux-mips.org>
26058 Date:   Mon Mar 30 18:58:41 2009 +0200
26060     OMAP: rename timer divisor
26062     Divisor field is called PTV not PVT.
26064     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
26065     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26067 commit fe672d60b2a8c9e803596ba4533fa1776015551d
26068 Author: Ladislav Michl <ladis@linux-mips.org>
26069 Date:   Mon Mar 30 18:58:40 2009 +0200
26071     OMAP: reindent timer code
26073     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
26075 commit b3f66b0ba09949e0796ce7fad6367f75f15ed890
26076 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26077 Date:   Mon Mar 30 18:58:40 2009 +0200
26079     s3c2410: move nand driver to drivers/mtd/nand
26081     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26083 commit d3b635774194404bcd424f6b376419bce22076ad
26084 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26085 Date:   Mon Mar 30 18:58:40 2009 +0200
26087     s3c24x0: move i2c driver to drivers/i2c
26089     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26091 commit 300f99f4539dd5caf7e19af5e4ea5eb259445913
26092 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26093 Date:   Mon Mar 30 18:58:39 2009 +0200
26095     s3c24x0: move serial driver to drivers/serial
26097     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26099 commit 942ba9969b9efa25f816c238861ecb339c54ed73
26100 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26101 Date:   Mon Mar 30 18:58:39 2009 +0200
26103     davinci: move i2c driver to drivers/i2c
26105     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26107 commit ee4f3e2765a1c65c9861c5d2cf2e6feb84b90bd8
26108 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26109 Date:   Mon Mar 30 18:58:39 2009 +0200
26111     davinci: move nand driver to drivers/mtd/nand
26113     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26115 commit d3e55d0774a180c1837bd7ddec464015e883bd86
26116 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26117 Date:   Mon Mar 30 18:58:38 2009 +0200
26119     imx: move serial driver to drivers/serial
26121     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26123 commit 2344bb8de2354101a8264c2123303c9d8d2aed3c
26124 Author: Detlev Zundel <dzu@denx.de>
26125 Date:   Mon Mar 30 00:31:36 2009 +0200
26127     inka4x0: Use proper accessor macros for memory mapped registers.
26129     Signed-off-by: Detlev Zundel <dzu@denx.de>
26131 commit e979e85fd39b06436922bb4d6bb5fafcbc775182
26132 Author: Detlev Zundel <dzu@denx.de>
26133 Date:   Mon Mar 30 00:31:35 2009 +0200
26135     inka4x0: Add hardware diagnosis and RTC in configuration.
26137     This patch adds the board specific communication routines needed by
26138     the external 4543 RTC.
26140     Signed-off-by: Detlev Zundel <dzu@denx.de>
26141     Signed-off-by: Andreas Pfefferle <ap@denx.de>
26143 commit 7b5611cdd12ca0cc33f994f0d4a4454788fc3124
26144 Author: Detlev Zundel <dzu@denx.de>
26145 Date:   Mon Mar 30 00:31:34 2009 +0200
26147     inka4x0: Add hardware diagnosis functions for inka4x0
26149     This patch adds advanced diagnosis functions for the inka4x0 board.
26151     Signed-off-by: Andreas Pfefferle <ap@denx.de>
26152     Signed-off-by: Detlev Zundel <dzu@denx.de>
26154 commit 04e11cf383ff6231535fd981023bb1306b2133d4
26155 Author: Detlev Zundel <dzu@denx.de>
26156 Date:   Mon Mar 30 00:31:33 2009 +0200
26158     rtc: add support for 4543 RTC (manufactured by e.g. EPSON)
26160     Signed-off-by: Detlev Zundel <dzu@denx.de>
26161     Signed-off-by: Andreas Pfefferle <ap@denx.de>
26163 commit 572e6179adb5447ff42ec2aa5cf3a26decf97583
26164 Author: Detlev Zundel <dzu@denx.de>
26165 Date:   Mon Mar 30 00:31:32 2009 +0200
26167     drivers/twserial: Add protocol driver for "three wire serial" interface.
26169     This pretty unintelligent interface is used on some RTC chips.
26171     Signed-off-by: Detlev Zundel <dzu@denx.de>
26173 commit a6ef3ddeafbe8007af3662cc4509b897c53ab395
26174 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26175 Date:   Sun Mar 29 23:01:42 2009 +0200
26177     arm720t/clps7111: move serial driver to drivers/serial
26179     add CONFIG_CLPS7111_SERIAL to activate the driver
26181     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26183 commit 6790c55704531eb98f76b51d50e0f73d19fa2988
26184 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26185 Date:   Sun Mar 29 23:01:42 2009 +0200
26187     lpc2292: move serial driver to drivers/serial
26189     add CONFIG_LPC2292_SERIAL to activate the driver
26191     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26193 commit 176a600d0ecdaccbac483d2ba992d0119f853119
26194 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26195 Date:   Sun Mar 29 23:01:42 2009 +0200
26197     ks8695: move serial driver to drivers/serial
26199     add CONFIG_KS8695_SERIAL to activate the driver
26201     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26203 commit 6d27bca15d445fcf07d6e7e30ced95c945c875ea
26204 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26205 Date:   Sun Mar 29 23:01:42 2009 +0200
26207     s3c64xx: move usb driver to drivers/usb
26209     add CONFIG_USB_S3C64XX to activate the driver
26211     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26213 commit ecfa8dda2f55e1fbe12dee0b5cc16e7d484674c9
26214 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26215 Date:   Sun Mar 29 23:01:41 2009 +0200
26217     imx31: move serial driver to drivers/serial
26219     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26221 commit 9ea91c9fefb3920d735533a7798c1a44a3ed3ffc
26222 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26223 Date:   Sun Mar 29 23:01:41 2009 +0200
26225     netarm: move serial driver to drivers/serial
26227     add CONFIG_NETARM_SERIAL to activate the driver
26229     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26231 commit 412ab705888742add435dd6ffc2e8bda14962235
26232 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26233 Date:   Sun Mar 29 23:01:41 2009 +0200
26235     sa1100: move serial driver to drivers/serial
26237     add CONFIG_SA1100_SERIAL to activate the driver
26239     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26241 commit b2368754a9202225fd072e159fb78da7d2cdb623
26242 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26243 Date:   Sun Mar 29 23:01:41 2009 +0200
26245     s3c44b0: extract cache from cpu.c
26247     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26249 commit 40fd626223eae5363719bcb9a6896f08ceeee90a
26250 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26251 Date:   Sun Mar 29 23:01:41 2009 +0200
26253     s3c44b0: move serial driver to drivers/serial
26255     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26257 commit 5fe1377cc46199fe71c47be4b1aa81440ae96f9f
26258 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26259 Date:   Sun Mar 29 23:01:40 2009 +0200
26261     s3c44b0: move rtc driver to drivers/rtc
26263     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26265 commit 50f601cca8985615f9e3de4c34887448ade8a64b
26266 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26267 Date:   Sun Mar 29 23:01:40 2009 +0200
26269     s3c44b0: move i2c driver to drivers/i2c
26271     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26273 commit 281dfb0c0c531194f99e60d6285cca4e2a9fb1b6
26274 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26275 Date:   Sun Mar 29 23:01:36 2009 +0200
26277     s3c4510b: move specific code to soc directory
26279     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26281 commit 04531f3c11c693dc54924f82c41979d960309c9d
26282 Author: Ladislav Michl <ladis@linux-mips.org>
26283 Date:   Wed Mar 25 23:43:58 2009 +0100
26285     NetStar: add RTC support
26287     Add RTC support.
26289     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
26291 commit 71f7bd305d9768bcb7ddbe4b5823cbf3b3597b11
26292 Author: Ladislav Michl <ladis@linux-mips.org>
26293 Date:   Wed Mar 25 23:43:50 2009 +0100
26295     NetStar: use generic flash driver
26297     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
26299 commit 3f464b0fc009d41d2734c08e472eb6d445f73a5c
26300 Author: Ladislav Michl <ladis@linux-mips.org>
26301 Date:   Mon Mar 16 23:31:20 2009 +0100
26303     NetStar: update crcit utility
26305     Make crc32 function to match its prototype. Use more meaningful identifiers.
26307     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
26309 commit 488f5d8790c451fc527fe5d2ef218f2a5e40ea17
26310 Author: Ladislav Michl <ladis@linux-mips.org>
26311 Date:   Mon Mar 23 17:46:27 2009 +0100
26313     Remove nowhere used symbol CONFIG_SYS_CLKS_IN_HZ
26315     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
26317 commit 88685b5f62274167ad2ba8a58e108d89ff71955b
26318 Author: Wolfgang Denk <wd@denx.de>
26319 Date:   Sun Mar 29 00:58:16 2009 +0100
26321     VCMA9: fix compile errors
26323     Fix these:
26324     cmd_vcma9.c:82: warning: implicit declaration of function 'eth_getenv_enetaddr'
26325     cmd_vcma9.c:89: error: 'enetaddr' undeclared (first use in this function)
26327     Signed-off-by: Wolfgang Denk <wd@denx.de>
26329 commit 26e42cbd786241fec370a0b92ad591f4e9cc423b
26330 Author: Wolfgang Denk <wd@denx.de>
26331 Date:   Sun Mar 29 00:54:21 2009 +0100
26333     ARM: fix warning: 'print_eth' defined but not used
26335     This warning got issued for all ARM systems that don't have
26336     CONFIG_CMD_NET enabled.
26338     Signed-off-by: Wolfgang Denk <wd@denx.de>
26340 commit fd88d91a639ce41b825c8d50dc2182050e98fe53
26341 Author: Ladislav Michl <ladis@linux-mips.org>
26342 Date:   Mon Mar 23 18:16:34 2009 +0100
26344     cs8900 compile fix
26346     cs8900.c: In function 'eth_init':
26347     cs8900.c:164: warning: passing argument 2 of 'eth_getenv_enetaddr' from incompatible pointer type
26348     cs8900.c:165: error: invalid operands to binary <<
26349     cs8900.c:166: error: invalid operands to binary <<
26350     cs8900.c:167: error: invalid operands to binary <<
26352     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
26353     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26355 commit d2567be915036720693f3ddd00c39b5b4d86fb8d
26356 Author: Wolfgang Denk <wd@denx.de>
26357 Date:   Sat Mar 28 20:16:16 2009 +0100
26359     Fix implicit declaration of function 'eth_[gs]etenv_enetaddr'
26361     ...and some other compile warnings.
26363     Signed-off-by: Wolfgang Denk <wd@denx.de>
26365 commit 97b05d7d524a6b4f195f07b8f90e98561a85596c
26366 Author: Wolfgang Denk <wd@denx.de>
26367 Date:   Sat Mar 28 16:17:29 2009 +0100
26369     mpc8xx/ether.c: fix warning: unused variable 'bd'
26371     Also minor coding style cleanup.
26373     Signed-off-by: Wolfgang Denk <wd@denx.de>
26375 commit 2dce551e10728f9e5655279f761f1d3cc0a8fe90
26376 Author: Detlev Zundel <dzu@denx.de>
26377 Date:   Wed Mar 25 17:27:52 2009 +0100
26379     command.c: Expose the core of do_help as _do_help to the rest of u-boot.
26381     Other commands implementing subcommands can reuse this code nicely.
26383     Signed-off-by: Detlev Zundel <dzu@denx.de>
26384     Signed-off-by: Andreas Pfefferle <ap@denx.de>
26386 commit 4e325fbfa4dea04eceb6392e00807c40d214dc6f
26387 Author: Detlev Zundel <dzu@denx.de>
26388 Date:   Tue Mar 24 18:02:33 2009 +0100
26390     mpc5xxx: Add structure definition for several more register blocks.
26392     Signed-off-by: Detlev Zundel <dzu@denx.de>
26394 commit 739b0e594677a0676577bc95db4495a5563fc7f8
26395 Author: Detlev Zundel <dzu@denx.de>
26396 Date:   Fri Mar 27 15:03:55 2009 +0100
26398     MAINTAINERS: Add entry for 'inka4x0' board.
26400     Signed-off-by: Detlev Zundel <dzu@denx.de>
26402 commit e55ecec45340755ef47cbbb13fb35ceed60eb115
26403 Author: Detlev Zundel <dzu@denx.de>
26404 Date:   Fri Mar 27 15:03:54 2009 +0100
26406     MAINTAINERS: Keep list sorted.
26408     Signed-off-by: Detlev Zundel <dzu@denx.de>
26410 commit 0baeca4b09b703728f8e66b52418039fd8f8ce35
26411 Author: Mike Frysinger <vapier@gentoo.org>
26412 Date:   Thu Mar 26 11:17:41 2009 -0400
26414     karef/metrobox/xpedite1k: fix eth_setenv_enetaddr typos
26416     The function is called "eth_setenv_enetaddr", not "eth_putenv_enetaddr".
26418     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26419     CC: Ben Warren <biggerbadderben@gmail.com>
26421 commit 76756e41cde0a617e781a604cc47dfaef63697cd
26422 Author: Heiko Schocher <hs@denx.de>
26423 Date:   Thu Mar 26 07:33:59 2009 +0100
26425     ppc: cleanup compiler errors/warnings
26427     Current u-boot top of tree builds with warnings/errors for
26428     the following boards:
26430     ads5121 cpci5200 mecp5200 v38b IAD210 MBX MBX860T NX823
26431     RPXClassic debris PN62
26433     following patch solves this.
26435     Signed-off-by: Heiko Schocher <hs@denx.de>
26436     Acked-by: Mike Frysinger <vapier@gentoo.org>
26438 commit 3edf68c47fdd52f19c1e840771c19ba90cf5ced1
26439 Author: Stefan Roese <sr@denx.de>
26440 Date:   Thu Mar 26 16:14:13 2009 +0100
26442     ppc4xx: Sequoia: Fix TLB reassignment in NAND booting code
26444     This patch fixes a bug in the Sequoia TLB init code to reconfigure
26445     the correct TLB (boot space) after running from RAM. This bug was
26446     introduced with patch 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
26447     [ppc4xx: Make Sequoia boot vxWorks] which changed the order of the
26448     TLB in the Sequoia init.S file.
26450     Signed-off-by: Stefan Roese <sr@denx.de>
26452 commit e2b66fe453a3679f807b37fc5923d89214302764
26453 Author: Wolfgang Denk <wd@denx.de>
26454 Date:   Thu Mar 26 10:00:57 2009 +0100
26456     ads5121: enable instruction cache
26458     Enabling the instruction cache significantly accelerates U-Boot
26459     operations like CRC checking, image uncompression, etc.
26461     Kudos to Andrea Scian for pointing out.
26463     Signed-off-by: Wolfgang Denk <wd@denx.de>
26465 commit 33e88c557b29c84c52039ba05993fa70fe62afe3
26466 Author: Jon Smirl <jonsmirl@gmail.com>
26467 Date:   Sun Mar 22 22:55:45 2009 -0400
26469     mpc5200: suppress printf until console initialized
26471     On boards which have the environment in eeprom, i2c_init() is called
26472     before the console and RAM are initialized.
26473     Suppress printfs until the console is initialized.
26475     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
26476     Acked-by: Heiko Schocher <hs@denx.de>
26478 commit 0c6926736effbb9a19047949b7e9b3e8feab7c46
26479 Author: Guennadi Liakhovetski <lg@denx.de>
26480 Date:   Wed Mar 25 11:36:50 2009 +0100
26482     ARM: Add the imx31_phycore_eet board to MAKEALL
26484     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26486 commit 917cfc70c18b74fa8a80189bdce8395199fa8360
26487 Author: Nishanth Menon <nm@ti.com>
26488 Date:   Wed Mar 25 22:13:56 2009 +0100
26490     OMAP3:Beagle: Enable mtdparts
26492     http://www.denx.de/wiki/DULG/UBootCmdGroupFlash#UBootCmdFlMtdparts
26493     provides a flexible way to create and maintain u-boot mtd
26494     partitions. This allows commands such as "nand erase fs"
26495     to work and the user no longer needs to decode the absolute
26496     nand offsets. This patch enables this function for beagleboard
26498     Signed-off-by: Nishanth Menon <nm@ti.com>
26499     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26501 commit 4de1a5daab079ddc8ce1274144700203d692105c
26502 Author: Mike Frysinger <vapier@gentoo.org>
26503 Date:   Sun Feb 22 16:26:35 2009 -0500
26505     Blackfin: bf537-stamp: split post code out into dedicated post.c
26507     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26509 commit 5e8f245743ed14c89e495ba2c027703db9813160
26510 Author: Mike Frysinger <vapier@gentoo.org>
26511 Date:   Sat Oct 11 22:51:56 2008 -0400
26513     Blackfin: add support for S25FL128 parts
26515     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26517 commit bf1e028bf3eab1d702fa0627cade4460688f3913
26518 Author: Mike Frysinger <vapier@gentoo.org>
26519 Date:   Sat Oct 11 22:51:23 2008 -0400
26521     Blackfin: overhaul SPI flash handling to speed things up
26523     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26525 commit efcc08cededa2168b96f12a22a5872340880d334
26526 Author: Mike Frysinger <vapier@gentoo.org>
26527 Date:   Sat Oct 11 22:51:05 2008 -0400
26529     Blackfin: add support for SST SPI flashes
26531     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26533 commit 5b8cfbe63f7242ebb1008f30bbbc85a9d54b38cf
26534 Author: Mike Frysinger <vapier@gentoo.org>
26535 Date:   Sat Oct 11 22:50:10 2008 -0400
26537     Blackfin: add hack for crappy m25p80
26539     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26541 commit 6f5fd56f0832ea5c254e2e4be84ea21fc8ecd5c5
26542 Author: Mike Frysinger <vapier@gentoo.org>
26543 Date:   Wed Jan 21 20:47:12 2009 -0500
26545     Blackfin: bf537-stamp: increase monitor size
26547     The new jffs2 code pushed the code size just over the limit, so increase
26548     the limit a bit more.
26550     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26552 commit f82caaccc87e1f76448ff42a6b930e59797e4f65
26553 Author: Mike Frysinger <vapier@gentoo.org>
26554 Date:   Mon Dec 8 16:16:11 2008 -0500
26556     Blackfin: bf537-stamp: bump default SCLK up to 125MHz
26558     Since all of the bf537-stamp and bf537-ezkit boards out there can handle it,
26559     increase the speed of SCLK to 125MHz rather than 100MHz.
26561     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26563 commit 751e54c3b77311b720b794813cce20546f288ada
26564 Author: Mike Frysinger <vapier@gentoo.org>
26565 Date:   Sat Oct 11 22:44:14 2008 -0400
26567     Blackfin: bf537-stamp: rewrite MAC-in-flash handling
26569     Use the common net eth functions to setup the env/global data with the MAC
26570     address, and properly handle the case where CONFIG_SYS_NO_FLASH is defined.
26572     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26574 commit 88f9faffb383bbc6f23b8cc8519c5ffecfa2c8ad
26575 Author: Mike Frysinger <vapier@gentoo.org>
26576 Date:   Tue Dec 9 13:47:39 2008 -0500
26578     Blackfin: add clkin_hz= to default kernel command line for ADI boards
26580     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26582 commit 9f64ba2412d3cede9eb1f290987e5c3a28df3232
26583 Author: Mike Frysinger <vapier@gentoo.org>
26584 Date:   Sun Oct 12 23:49:13 2008 -0400
26586     Blackfin: bf533-stamp: bump up default clocks
26588     Since the hardware can handle it, bump the default clocks from 80mhz SCLK
26589     and 398mhz CCLK to 100mhz SCLK and 498mhz CCLK.
26591     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26593 commit 23fd959eeaaa0434ac7f9c1191de66c76d97d699
26594 Author: Mike Frysinger <vapier@gentoo.org>
26595 Date:   Sat Oct 11 22:40:22 2008 -0400
26597     Blackfin: bf533-stamp: rewrite startup LED notifications
26599     Again, don't clobber pins that we aren't actually using, and use the common
26600     LED framework rather than our own hob-job-but-not-really-working.
26602     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26604 commit cf6f469e2730fc8ab3523808b828be000d6eee77
26605 Author: Mike Frysinger <vapier@gentoo.org>
26606 Date:   Sun Jun 1 09:09:48 2008 -0400
26608     Blackfin: unify common ADI board settings
26610     Rather than duplicate the same ADI settings in every ADI board, create a
26611     common ADI config header and have all ADI boards start using that.  This
26612     will also make merging the ~10 boards I have to forward port a lot easier.
26614     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26616 commit 196c74311f394c6eb08bd9ab07a35671299b9851
26617 Author: Kyungmin Park <kmpark@infradead.org>
26618 Date:   Tue Mar 3 09:05:53 2009 +0900
26620     Reduce OneNAND IPL common code
26622     OneNAND IPL has common codes for RAM init, load data, and jump to 2nd
26623     bootloader, but it's common code used about 300~400 bytes. So board
26624     specific codes, such as lowlevel_init, can't has enough code. It make
26625     a difficult to implement OneNAND IPL.
26627     his patch make this common code as small as possible. and give
26628     lowlevel_init can have more codes.
26630     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
26631     Signed-off-by: Scott Wood <scottwood@freescale.com>
26633 commit 16f2f5a351004129e79e79816697a367fd9e5446
26634 Author: Wolfgang Grandegger <wg@grandegger.com>
26635 Date:   Wed Feb 11 18:38:24 2009 +0100
26637     Add multi-chip NAND support for the TQM8548 modules
26639     This patches configures the NAND UPM-FSL driver with multi-chip
26640     support for the Micron MT29F8G08FAB NAND flash memory on the
26641     TQM8548 modules.
26643     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26644     Signed-off-by: Scott Wood <scottwood@freescale.com>
26646 commit 33846df28fa1f4cf96a96c18142d48d813caa892
26647 Author: Wolfgang Grandegger <wg@grandegger.com>
26648 Date:   Wed Feb 11 18:38:23 2009 +0100
26650     Add wait flags to support board/chip specific delays
26652     The NAND flash on the TQM8548_BE modules requires a short delay after
26653     running the UPM pattern like the MPC8360ERDK board does. The TQM8548_BE
26654     requires a further short delay after writing out a buffer. Normally the
26655     R/B pin should be checked, but it's not connected on the TQM8548_BE.
26656     The corresponding Linux FSL UPM driver uses similar delay points at the
26657     same locations. To manage these extra delays in a more general way, I
26658     introduced the "wait_flags" field allowing the board-specific driver to
26659     specify various types of extra delay.
26661     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26662     Signed-off-by: Scott Wood <scottwood@freescale.com>
26664 commit 06e9f7df054d26d7f49c56bf9a6844b193ad6313
26665 Author: Wolfgang Grandegger <wg@grandegger.com>
26666 Date:   Wed Feb 11 18:38:22 2009 +0100
26668     Add support for TQM-specific chip select logic to FSL-UPM
26670     For the NAND chips on the TQM8548 modules, a special chip-select logic is
26671     used. It uses dedicated address lines to be set via UPM machine address
26672     register (mar). This patch adds such support to the FSL-UPM driver.
26674     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26675     Signed-off-by: Scott Wood <scottwood@freescale.com>
26677 commit e93c1c169d49eda7babad9c781f541e2e34f0ff0
26678 Author: Wolfgang Grandegger <wg@grandegger.com>
26679 Date:   Wed Feb 11 18:38:21 2009 +0100
26681     Add multi chip support to the FSL-UPM driver
26683     This patch adds support for multi-chip NAND devices to the FSL-UPM
26684     driver. The "dev_ready" callback of the "struct fsl_upm_nand" is now
26685     called with the argument "chip_nr" to allow testing the proper chip
26686     select line. The NAND support of the MPC8360ERDK is updated as well.
26687     No other boards are currently using the FSL UPM driver.
26689     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26690     Signed-off-by: Scott Wood <scottwood@freescale.com>
26692 commit 672ed2aee91b4856f6671fc72cd34168d8f1b624
26693 Author: Wolfgang Grandegger <wg@grandegger.com>
26694 Date:   Wed Feb 11 18:38:20 2009 +0100
26696     Enable multi chip support in the NAND layer
26698     This patch adds support for NAND_MAX_CHIPS to the MTD NAND layer.
26699     Multi-chips devices are displayed as shown:
26701       Device 0: 2x NAND 512MiB 3,3V 8-bit, sector size 128 KiB
26703     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
26704     Signed-off-by: Scott Wood <scottwood@freescale.com>
26706 commit 74398b23f9c2ffdc137fd92910a46e3333fb93f9
26707 Author: Mike Frysinger <vapier@gentoo.org>
26708 Date:   Sat Oct 11 21:58:33 2008 -0400
26710     Blackfin: put memory into self-refresh before/after programming clocks
26712     When initializing the core clocks, stick external memory into self-refresh.
26713     This gains us a few cool things:
26714      - support suspend-to-RAM with Linux
26715      - reprogram clocks automatically when doing "go" on u-boot.bin in RAM
26716      - make sure settings are stable before flashing new version
26717      - finally fully unify initialize startup code path between LDR/non-LDR
26719     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26721 commit d347d572ab1f2d47bf257c9f7ca2e602038a136b
26722 Author: Mike Frysinger <vapier@gentoo.org>
26723 Date:   Sat Oct 11 21:56:08 2008 -0400
26725     Blackfin: do not program voltage regulator on parts that do not have one
26727     Some newer Blackfins (like the BF51x) do not have an on-chip voltage
26728     regulator, so do not attempt to program the memory as if it does.
26730     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26732 commit 0d4f24b70f7a979f58174f3eb271874950b551b6
26733 Author: Mike Frysinger <vapier@gentoo.org>
26734 Date:   Sun Jun 1 01:28:24 2008 -0400
26736     Blackfin: setup a sane default EBIU_SDBCTL for SDRAM controllers
26738     If the board config does not specify an explicit EBIU_SDBCTL value, set it
26739     up with sane values based on other configuration options.
26741     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26743 commit 3986e981f565c08f10c7e526af8cb518d741c349
26744 Author: Mike Frysinger <vapier@gentoo.org>
26745 Date:   Sat Dec 6 18:06:58 2008 -0500
26747     Blackfin: handle reboot anomaly 432
26749     Workaround anomaly 432:
26750     The bfrom_SysControl() firmware function does not clear the SIC_IWR1
26751     register before executing the PLL programming sequence.  Therefore, any
26752     interrupt enabled in the SIC_IWR1 register prior to the call to
26753     bfrom_SysControl() can prematurely terminate the idle sequence required
26754     for the PLL to relock properly. SIC_IWR0 is properly handled.
26756     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26758 commit 7e1d212b6da492c6ea32c62af92e185284f41291
26759 Author: Mike Frysinger <vapier@gentoo.org>
26760 Date:   Sat Oct 18 04:04:49 2008 -0400
26762     Blackfin: kill off LDR jump block
26764     The Boot ROM uses EVT1 as the entry point so set that rather than having
26765     to use a tiny jump block in the default EVT1 location.
26767     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26769 commit a75fa148d60b1975403441e45565621bba50d2d9
26770 Author: Mike Frysinger <vapier@gentoo.org>
26771 Date:   Tue Jan 6 10:00:48 2009 -0500
26773     Blackfin: simplify symbol_lookup() a bit
26775     No need to skip a byte as the symbol table handles this.
26777     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26779 commit 59f0978a7e78d20277ddbde7caf0ea877f3cfd98
26780 Author: Mike Frysinger <vapier@gentoo.org>
26781 Date:   Sat Feb 7 05:43:21 2009 -0500
26783     Blackfin: fix SIC_RVECT definition: it is 16bits, not 32bits
26785     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26787 commit 58130f8920151d9e8942bbdf3388f2defb47e415
26788 Author: Mike Frysinger <vapier@gentoo.org>
26789 Date:   Sat Feb 7 05:41:17 2009 -0500
26791     Blackfin: drop SPORT_TX read helper macros
26793     The SPORT_TX registers cannot be read (the hardware will trigger an error),
26794     so drop the read helper macros.
26796     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26798 commit 820b076c449688bcd4af6db5a33ae424d1a60d0e
26799 Author: Mike Frysinger <vapier@gentoo.org>
26800 Date:   Sat Feb 7 05:25:35 2009 -0500
26802     Blackfin: unify duplicate CPU port definitions
26804     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26806 commit 744fd240d181b0b05b1436e1b655c9a62526c752
26807 Author: Mike Frysinger <vapier@gentoo.org>
26808 Date:   Fri Feb 6 00:59:50 2009 -0500
26810     Blackfin: drop now-unused CONFIG_SYS_BFIN_CMD_XXX
26812     With the new CONFIG_XXX system and CONFIG_CMD_XXX handling, these defines
26813     are no longer used/needed.
26815     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26817 commit 45c48953e8a4038bd49c46813fcff5a207867ae4
26818 Author: Mike Frysinger <vapier@gentoo.org>
26819 Date:   Mon Oct 6 04:01:26 2008 -0400
26821     Blackfin: print out Flash: before checking it
26823     If there is some problem in the flash init/checking code, it's nicer to see
26824     the message "Flash:" before crashing.  This way the source of the problem
26825     is a bit more straightforward.
26827     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26829 commit 1c7a79a04eb916f685f7275520b5eea6968a1559
26830 Author: Mike Frysinger <vapier@gentoo.org>
26831 Date:   Thu Aug 7 15:33:09 2008 -0400
26833     Blackfin: safely flush data caches when in writeback mode
26835     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26837 commit c06f2b13022703611bc3e512bd34f9014a46f448
26838 Author: Mike Frysinger <vapier@gentoo.org>
26839 Date:   Thu Aug 7 13:21:48 2008 -0400
26841     Blackfin: update lockbox api according to latest documentation
26843     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26845 commit 2decc2a8d17a5397cb5956e46c8466c736e305a2
26846 Author: Mike Frysinger <vapier@gentoo.org>
26847 Date:   Sat Oct 11 21:49:06 2008 -0400
26849     Blackfin: mark bfin_reset static
26851     The function is only used locally, so mark it static.
26853     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26855 commit 974473caa732f63312687ef2bd2d22dad8e99b9a
26856 Author: Sonic Zhang <Sonic.Zhang@analog.com>
26857 Date:   Fri Mar 20 19:28:20 2009 -0400
26859     Blackfin: spi: there is no PORTJ_FER MMR on BF537
26861     Since the PORTJ on the BF537 is peripheral-only (no GPIO functionality),
26862     then there is no PORTJ_FER register for us to worry about.
26864     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
26865     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26867 commit e82b762f293debc53c5afa90f37264f6b07520f9
26868 Author: Mike Frysinger <vapier@gentoo.org>
26869 Date:   Tue Mar 17 13:58:23 2009 -0400
26871     Blackfin: fix jtag console tstc
26873     The jtag tstc operation was checking the hardware to see if data is
26874     available from it (which is fine for the jtag getc operation), but the
26875     higher layers need to know whether any data is available.  Since we have
26876     to read up to 4 bytes at a time from the hardware, the higher layers need
26877     to know they can consume the cached bytes as well.
26879     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26881 commit bc683f58b1f1d8d20546fe019483967a51a49df1
26882 Author: Mike Frysinger <vapier@gentoo.org>
26883 Date:   Sun Feb 22 16:23:41 2009 -0500
26885     Blackfin: bf537-stamp: move CONFIG_POST handling to COBJS-$(...)
26887     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26889 commit 8996d1608acb8f59fcb186dc7ed7d87f8fee1297
26890 Author: Mike Frysinger <vapier@gentoo.org>
26891 Date:   Sun Feb 22 16:02:27 2009 -0500
26893     Blackfin: unify net-related init code
26895     Unify all of the net-related init code in the common Blackfin board init
26896     code to clean up the ifdef mess a bit.
26898     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26900 commit c6ea30e52ea82af4858d2b6f99e0fd2ea276d657
26901 Author: Mike Frysinger <vapier@gentoo.org>
26902 Date:   Wed Feb 18 12:51:48 2009 -0500
26904     Blackfin: fix SWRST/SYSCR register sizes
26906     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26908 commit a9d6777d39154978b9ef9c682b2627a3480b194c
26909 Author: Mike Frysinger <vapier@gentoo.org>
26910 Date:   Wed Feb 18 12:51:31 2009 -0500
26912     Blackfin: update anomaly lists
26914     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26916 commit 4d7c32dad2e787f890ebcd51bfb723a126913c90
26917 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26918 Date:   Thu Mar 19 18:31:38 2009 +0100
26920     avr32: fix cacheflush.h location introducted by d8f2aa3298610b
26922     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26923     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26925 commit 3a3baf3ee61e6b28af3b49ebabc9ab4f6015aa48
26926 Author: Eric Schumann <E.Schumann@phytec.de>
26927 Date:   Sat Mar 21 09:59:34 2009 -0400
26929     Make flash protection work, when the environment is in EEPROM
26931     On the pcm030 the environment is located in the onboard EEPROM. But we want
26932     to handle flash sector protection in a safe manner. So we must read the
26933     unlock environment variable from EEPROM instead from flash.
26935     This patch is required as long the evironment is saved into the EEPROM.
26937     Stefan: Additional change as suggested by Wolfgang, use bigger char array
26938     (instead of 4).
26940     Signed-off-by: Eric Schumann <E.Schumann@phytec.de>
26941     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
26942     Acked-by: Wolfgang Denk <wd@denx.de>
26943     Signed-off-by: Stefan Roese <sr@denx.de>
26945 commit de3ce8c59f48f99779d7d7379a5432ded12ec06c
26946 Author: Jon Smirl <jonsmirl@gmail.com>
26947 Date:   Sat Mar 21 11:17:56 2009 -0400
26949     Add define for mpc5200 CDM_CLK_ENA
26951     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
26953 commit df486b1fa3f750b153eac7daa0b3bf1f594e5098
26954 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
26955 Date:   Sun Mar 22 14:48:16 2009 +0100
26957     at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.
26959     AT91sam9g20 is an evolution of the at91sam9260 with a faster clock speed.
26961     The AT91SAM9G20-EK board is an updated revision of the AT91SAM9260-EK board.
26962     It is essentially the same, with a few minor differences.
26964     Here is the chip page on Atmel website:
26965     http://www.atmel.com/dyn/products/product_card.asp?part_id=4337
26967     Signed-off-by: Justin Waters <justin.waters@timesys.com>
26968     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
26969     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26971 commit 118d168035cc93f586da4812c89cb153eb9f4243
26972 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26973 Date:   Sun Mar 22 14:28:14 2009 +0100
26975     cmc_pu2: fix implicit declaration of function 'eth_setenv_enetaddr'
26977     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26979 commit 176c4a982c6531f96426afaa1126cf9a5e2d5e03
26980 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26981 Date:   Sun Mar 22 14:28:13 2009 +0100
26983     cmc_pu2: fix misc_init_r prototype
26985     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26987 commit 53158aea995221706b42c7bad9f717b31ae20414
26988 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26989 Date:   Sun Jan 11 03:32:01 2009 +0100
26991     at91sam9xeek: fix soc name
26993     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26995 commit 74c076d6c33d6d42ab065541a38383587879e7b7
26996 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26997 Date:   Sun Mar 22 10:22:34 2009 +0100
26999     at91sam9/at91cap: move nand drivers to drivers/mtd/nand
27001     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27003 commit 163966087d62680547f188a93c61d01c8155254e
27004 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27005 Date:   Sat Mar 21 21:08:01 2009 +0100
27007     atmel/at91/boards: compile dataflash partition only when dataflash is
27009     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27011 commit e2c0476f958f8e0b269a1118f4ba4a5cd475aa56
27012 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27013 Date:   Sat Mar 21 21:08:00 2009 +0100
27015     at91sam9/at91cap: move common macb initialisation to cpu
27017     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27019 commit f3f91f886bc8927fd692ac411b7423a87ffec532
27020 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27021 Date:   Sat Mar 21 21:08:00 2009 +0100
27023     at91sam9/at91cap: move common usb host initialisation to cpu
27025     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27027 commit a484b00b86e72ac6da6ee4fce13dbc6b256672fe
27028 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27029 Date:   Sat Mar 21 21:08:00 2009 +0100
27031     at91sam9/at91cap: move common led management to cpu
27033     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27035 commit 7ebafb7ec1a0285af8380623c009576f92583b98
27036 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27037 Date:   Sat Mar 21 21:07:59 2009 +0100
27039     at91sam9/at91cap: move common spi initialisation to cpu
27041     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27043 commit 1332a2a0694c8e10a5bade397cf83645b2c3fd7e
27044 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27045 Date:   Sat Mar 21 21:07:59 2009 +0100
27047     at91sam9/at91cap: move common serial initialisation to cpu
27049     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27051 commit e60beb13cf0135dc71c541021487b5ccc4d269cb
27052 Author: Wolfgang Denk <wd@denx.de>
27053 Date:   Sat Mar 21 22:04:41 2009 +0100
27055     Prepare 2009.03
27057     Update CHANGELOG
27059     Signed-off-by: Wolfgang Denk <wd@denx.de>
27061 commit 9e78dae2b276c5bf9ab92cd85173f6cb92b1b7d5
27062 Author: Vivek Kutal <vivek.kutal@azingo.com>
27063 Date:   Mon Feb 23 21:35:11 2009 +0530
27065     Replaced endpoint numbers with appropriate macros in usbtty.c.
27067     Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
27068     Signed-off-by: Remy Bohmer <linux@bohmer.net>
27070 commit faac4fd852e39cb1d7a740801b060e41aeacef1f
27071 Author: Michael Lawnick <ml.lawnick@gmx.de>
27072 Date:   Thu Mar 19 10:06:41 2009 +0100
27074     UBIFS: Missing offset relocation for compressor 'none'
27076     On systems where U-Boot is linked to another address than it really lays
27077     (e.g. backup image), calls via function pointers must be fixed with a
27078     '+= gd->reloc_off'.
27079     This was not done for none_compr in ubifs_compressors_init() what leads
27080     to system crash on ubifsmount command.
27082     Signed-off-by: Michael Lawnick <ml.lawnick@gmx.de>
27083     Acked-by: Stefan Roese <sr@denx.de>
27085 commit ce6d0c8de031f345bde745f3b855082adf1c4e45
27086 Author: Stefan Roese <sr@denx.de>
27087 Date:   Thu Mar 19 15:35:50 2009 +0100
27089     UBIFS: Add UBIFS commands
27091     This patchset adds these UBIFS related commands:
27093     - ubifsmount
27094       Mount an UBIFS volume
27096     - ubifsls
27097       List a directory of the mounted UBIFS volume
27099     - ubifsload
27100       Load a file from the mounted UBIFS volume to memory
27102     Signed-off-by: Stefan Roese <sr@denx.de>
27104 commit 9eefe2a2b37a838558e3d213a9f5519503d0c180
27105 Author: Stefan Roese <sr@denx.de>
27106 Date:   Thu Mar 19 15:35:05 2009 +0100
27108     UBIFS: Implement read-only UBIFS support in U-Boot
27110     The U-Boot UBIFS implementation is largely a direct copy from the current
27111     Linux version (2.6.29-rc6). As already done in the UBI version we have an
27112     "abstraction layer" to redefine or remove some OS calls (e.g. mutex_lock()
27113     ...). This makes it possible to use the original Linux code with very
27114     little changes. And by this we can better update to later Linux versions.
27116     I removed some of the Linux features that are not used in the U-Boot
27117     version (e.g. garbage-collection, write support).
27119     Signed-off-by: Stefan Roese <sr@denx.de>
27120     CC: Artem Bityutskiy <dedekind@infradead.org>
27121     CC: Adrian Hunter <ext-Adrian.Hunter@nokia.com>
27123 commit b1b4e89a0f3b75854c39a62cae41bad56d210adf
27124 Author: Stefan Roese <sr@denx.de>
27125 Date:   Thu Mar 19 15:34:56 2009 +0100
27127     Add LZO decompressor support
27129     This patch adds LZO decompression support to U-Boot. It is needed for
27130     the upcoming UBIFS support, since UBIFS uses LZO as default compressor/
27131     decompressor. Since we only support read-only in UBIFS, only the
27132     decompressor is needed.
27134     All this is copied with minor changes from the current Linux kernel
27135     version (2.6.28-rc8).
27137     This patch only implements this LZO decompressor support for PPC.
27138     Other platforms using UBIFS will have to add the required
27139     "include/asm/unaligned.h" as well. It should be fairly easy to copy this
27140     from the Linux source tree as I have done it for PPC in this patch.
27142     Signed-off-by: Stefan Roese <sr@denx.de>
27144 commit 68d7d65100e84df00bca971c114092731b441090
27145 Author: Stefan Roese <sr@denx.de>
27146 Date:   Thu Mar 19 13:30:36 2009 +0100
27148     Separate mtdparts command from jffs2
27150     Currently the mtdparts commands are included in the jffs2 command support.
27151     This doesn't make sense anymore since other commands (e.g. UBI) use this
27152     infrastructure as well now. This patch separates the mtdparts commands from
27153     the jffs2 commands making it possible to only select mtdparts when no JFFS2
27154     support is needed.
27156     Signed-off-by: Stefan Roese <sr@denx.de>
27157     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
27159 commit 02a301cd5087eaffdf456e0a5cec1100c4d9a398
27160 Author: Stefan Roese <sr@denx.de>
27161 Date:   Wed Feb 25 12:11:15 2009 +0100
27163     powerpc: Only use eth_getenv_enetaddr() if networking is enabled
27165     Signed-off-by: Stefan Roese <sr@denx.de>
27167 commit 5c4fa9b474af95d60f019ec6369cbe77b9dab4b5
27168 Author: Grzegorz Bernacki <gjb@semihalf.com>
27169 Date:   Tue Mar 17 10:06:40 2009 +0100
27171     Add support for the digsy MTC board.
27173     This is the InterControl custom device based on the MPC5200B chip.
27175     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
27177 commit ff7dc067369e30066744f096995aef7d97574d15
27178 Author: Stefan Roese <sr@denx.de>
27179 Date:   Mon Feb 23 16:52:36 2009 +0100
27181     powerpc: Fix compilation warning in board.c
27183     Fix this warning:
27185     board.c: In function 'board_init_r':
27186     board.c:653: warning: unused variable 'i'
27187     board.c:651: warning: unused variable 'e'
27189     Signed-off-by: Stefan Roese <sr@denx.de>
27191 commit 9cd690160d3ce1a7fb4ceeee6c99cedb1ac1d49c
27192 Author: Stefan Roese <sr@denx.de>
27193 Date:   Mon Feb 23 16:42:51 2009 +0100
27195     ppc4xx: Don't write the MAC address into the internal SoC registers
27197     Remove this code. It's not needed. The 4xx EMAC driver stores the MAC
27198     addresses into the SoC registers instead.
27200     Signed-off-by: Stefan Roese <sr@denx.de>
27202 commit bb57ad4be76d0e2e7f9ec56678235cc9872ff40f
27203 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27204 Date:   Fri Feb 20 10:19:19 2009 +0100
27206     ppc4xx: Use correct io accessors for esd 405/440 boards
27208     This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
27209     macros. Also volatile pointer references are replaced by the
27210     new accessors.
27212     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
27213     Signed-off-by: Stefan Roese <sr@denx.de>
27215 commit 049216f045fd8e0f45bcef121c2bb1c7d3de6988
27216 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27217 Date:   Fri Feb 20 10:19:18 2009 +0100
27219     ppc4xx: Use correct io accessors for esd 405 boards
27221     This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
27222     macros. Also volatile pointer references are replaced by the
27223     new accessors.
27225     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
27226     Signed-off-by: Stefan Roese <sr@denx.de>
27228 commit a59205d1519375d027f97a545ad642ab20fce6f8
27229 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27230 Date:   Fri Feb 20 10:19:17 2009 +0100
27232     ppc4xx: Cleanup linker scripts of esd 4xx boards
27234     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
27235     Signed-off-by: Stefan Roese <sr@denx.de>
27237 commit 2f103ee284e68934a648732db5e0b6ceb4a1ed8f
27238 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27239 Date:   Fri Feb 20 10:19:16 2009 +0100
27241     ppc4xx: Update TEXT_BASE for DASA_SIM boards
27243     Fix building DASA_SIM boards by increasing U-Boot's size in flash.
27245     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
27246     Signed-off-by: Stefan Roese <sr@denx.de>
27248 commit 09db8f4de6805f1dde510c167f20e56a5405d29e
27249 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27250 Date:   Fri Feb 20 10:19:15 2009 +0100
27252     ppc4xx: DU405 maintenance fix
27254     -strip unused features
27255     -fix resetting phy
27257     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
27258     Signed-off-by: Stefan Roese <sr@denx.de>
27260 commit 75511b47ac2647be48218dbb93af05b21f404f67
27261 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27262 Date:   Fri Feb 20 10:19:14 2009 +0100
27264     ppc4xx: Abort autoboot only by space key on CPCI405 boards
27266     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27267     Signed-off-by: Stefan Roese <sr@denx.de>
27269 commit e17ee157ca9ff0d4cc5841d06c4b70c1603df29c
27270 Author: Graeme Russ <graeme.russ@gmail.com>
27271 Date:   Tue Feb 24 21:14:56 2009 +1100
27273     Add basic relocation to i386 port
27275     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
27277 commit 8c63d47651f77d9fb887cad433370b866eb0a193
27278 Author: Graeme Russ <graeme.russ@gmail.com>
27279 Date:   Tue Feb 24 21:14:45 2009 +1100
27281     Implement SC520 timers
27283     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
27285 commit 6d7f610b09f813b1239eedcbfe921cfd439aea25
27286 Author: Graeme Russ <graeme.russ@gmail.com>
27287 Date:   Tue Feb 24 21:14:32 2009 +1100
27289     Factor out SC520 sub-features
27291     Moved sub-features of the SC520 code which is currently selectively compiled
27292     using #ifdef out of sc520.c into individual files selectively compiled via
27293     the makefile
27295     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
27297 commit abf0cd3dff227cfb6e82ad13be62e28e6e89d5df
27298 Author: Graeme Russ <graeme.russ@gmail.com>
27299 Date:   Tue Feb 24 21:13:40 2009 +1100
27301     Rewrite i386 interrupt handling
27303     Rewrite interrupt handling functionality for the i386 port. Separated
27304     functionality into separate CPU and Architecture components.
27306     It appears as if the i386 interrupt handler functionality was intended
27307     to allow multiple handlers to be installed for a given interrupt.
27308     Unfortunately, this functionality was not fully implemented and also
27309     had the problem that irq_free_handler() does not allow the passing
27310     of the handler function pointer and therefore could never be used to
27311     free specific handlers that had been installed for a given IRQ.
27313     There were also various issues with array bounds not being fully
27314     tested.
27316     I had two objectives in mind for the new implementation:
27318     1) Keep the implementation as similar as possible to existing
27319        implementations. To that end, I have used the leon2/3
27320        implementations as the reference
27322     2) Seperate CPU and Architecture specific elements. All specific i386
27323        interrupt functionality is now in cpu/i386/ with the high level
27324        API and architecture specific code in lib_i386. Functionality
27325        specific to the PC/AT architecture (i.e. cascaded i8259 PICs) has
27326        been further split out into an individual file to allow for the
27327        implementation of the PIC architecture of the SC520 CPU (supports
27328        more IRQs)
27330     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
27332 commit ece444b42b71eb5bce34a24ec584573b3c8c4a98
27333 Author: Graeme Russ <graeme.russ@gmail.com>
27334 Date:   Tue Feb 24 21:12:35 2009 +1100
27336     Move ali512x.h
27338     Moved ali512x.h from include/asm-i386/ic/ to /include
27340     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
27342 commit 6d83e3ac61dcdbcb7f04664309a9689fe01c5704
27343 Author: Graeme Russ <graeme.russ@gmail.com>
27344 Date:   Tue Feb 24 21:12:20 2009 +1100
27346     Rename SC520 Configuration Options
27348     Options are now all uniformly CONFIG_SYS_SC520_<option>
27350     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
27352 commit f62fb99941c625605aa16a0097b396a5c16d2c88
27353 Author: Trent Piepho <xyzzy@speakeasy.org>
27354 Date:   Wed Feb 18 15:22:05 2009 -0800
27356     Fix all linker script to handle all rodata sections
27358     A recent gcc added a new unaligned rodata section called '.rodata.str1.1',
27359     which needs to be added the the linker script.  Instead of just adding this
27360     one section, we use a wildcard ".rodata*" to get all rodata linker section
27361     gcc has now and might add in the future.
27363     However, '*(.rodata*)' by itself will result in sub-optimal section
27364     ordering.  The sections will be sorted by object file, which causes extra
27365     padding between the unaligned rodata.str.1.1 of one object file and the
27366     aligned rodata of the next object file.  This is easy to fix by using the
27367     SORT_BY_ALIGNMENT command.
27369     This patch has not be tested one most of the boards modified.  Some boards
27370     have a linker script that looks something like this:
27372     *(.text)
27373     . = ALIGN(16);
27374     *(.rodata)
27375     *(.rodata.str1.4)
27376     *(.eh_frame)
27378     I change this to:
27380     *(.text)
27381     . = ALIGN(16);
27382     *(.eh_frame)
27383     *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
27385     This means the start of rodata will no longer be 16 bytes aligned.
27386     However, the boundary between text and rodata/eh_frame is still aligned to
27387     16 bytes, which is what I think the real purpose of the ALIGN call is.
27389     Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
27391 commit 566b652c7cdb0e5e0529bb3d1eaffbd2bf45a032
27392 Author: Mike Frysinger <vapier@gentoo.org>
27393 Date:   Wed Feb 11 18:26:08 2009 -0500
27395     remove bi_enet*addr from global data for all arches
27397     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27398     CC: Ben Warren <biggerbadderben@gmail.com>
27399     CC: Daniel Hellstrom <daniel@gaisler.com>
27400     CC: Michal Simek <monstr@seznam.cz>
27401     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27402     CC: Scott McNutt <smcnutt@psyent.com>
27403     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27405 commit eb85aa594c1b57a1e3be9689b65171a137a36432
27406 Author: Mike Frysinger <vapier@gentoo.org>
27407 Date:   Wed Feb 11 20:07:19 2009 -0500
27409     ppc: mark global bi_enet*addr as legacy
27411     The environment is the canonical storage location of the mac address, so
27412     we're killing off the global data location and moving everything to
27413     querying the env directly.
27415     In the ppc case, these things are part of the legacy ABI, so keep them
27416     around but mark them as legacy so no new code will touch them.
27418     Also stop calling load_sernum_ethaddr() since all boards now implement
27419     this as a stub.
27421     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27422     CC: Ben Warren <biggerbadderben@gmail.com>
27424 commit 9c150102bc1de375d36d97a1cc2dd0e9639b15df
27425 Author: Mike Frysinger <vapier@gentoo.org>
27426 Date:   Wed Feb 11 20:09:52 2009 -0500
27428     boards: get mac address from env and move load_sernum_ethaddr() to board init
27430     The environment is the canonical storage location of the mac address, so
27431     we're killing off the global data location and moving everything to
27432     querying the env directly.
27434     Rather than have common ppc code call a board-specific function like
27435     load_sernum_ethaddr(), have each board call it in its own board-specific
27436     misc_init_r() function.
27438     The boards that get converted here are:
27439         - kup4k/kup4x
27440         - pcs440ep
27441         - tqm8xx
27443     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27444     CC: Ben Warren <biggerbadderben@gmail.com>
27445     CC: Stefan Roese <sr@denx.de>
27447 commit 92b50ffef978f05858a0ff4cbe88430bc51a28a2
27448 Author: Mike Frysinger <vapier@gentoo.org>
27449 Date:   Wed Feb 11 19:55:01 2009 -0500
27451     cmc_pu2: get mac address from environment
27453     The environment is the canonical storage location of the mac address, so
27454     we're killing off the global data location and moving everything to
27455     querying the env directly.
27457     Also rename load_sernum_ethaddr() to misc_init_r() so we don't need to
27458     handle this board specially in common ARM code.
27460     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27461     CC: Ben Warren <biggerbadderben@gmail.com>
27463 commit d8d21e699d7fcfb6ab11635110266dd09b7edc62
27464 Author: Mike Frysinger <vapier@gentoo.org>
27465 Date:   Mon Feb 16 18:03:14 2009 -0500
27467     boards: move board_get_enetaddr() into board-specific init
27469     The environment is the canonical storage location of the mac address, so
27470     we're killing off the global data location and moving everything to
27471     querying the env directly.
27473     Rather than have the common ppc code have board-specific hooks, move the
27474     board_get_enetaddr() function into the board-specific init functions.
27476     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27477     CC: Ben Warren <biggerbadderben@gmail.com>
27479 commit f11e6ff5b1859d9213f0d501b3309e065f487543
27480 Author: Mike Frysinger <vapier@gentoo.org>
27481 Date:   Wed Feb 11 19:39:55 2009 -0500
27483     arm: get mac address from environment
27485     The environment is the canonical storage location of the mac address, so
27486     we're killing off the global data location and moving everything to
27487     querying the env directly.
27489     Some warts are remaining and should be killed off (by moving the func to
27490     the appropriate board init code):
27491         - davinci_eth_set_mac_addr
27492         - cs8900_get_enetaddr
27493         - smc_set_mac_addr
27495     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27496     CC: Ben Warren <biggerbadderben@gmail.com>
27498 commit 0107cf66f7346e8c7d6cf0fe99d2f265134afd59
27499 Author: Mike Frysinger <vapier@gentoo.org>
27500 Date:   Wed Feb 11 19:36:20 2009 -0500
27502     nx823: get mac address from environment
27504     The environment is the canonical storage location of the mac address, so
27505     we're killing off the global data location and moving everything to
27506     querying the env directly.
27508     For the nx823, the serial number is moved out of load_sernum_ethaddr() and
27509     into misc_init_r() as is the env setup.  This lets us kill off the former
27510     function in the process.
27512     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27513     CC: Ben Warren <biggerbadderben@gmail.com>
27515 commit 19b5b533ccd522abeb501d510750693c35e20456
27516 Author: Mike Frysinger <vapier@gentoo.org>
27517 Date:   Wed Feb 11 18:27:18 2009 -0500
27519     lib_*/board.c: do not initialize bi_enet*addr in global data
27521     Since everyone is using the environment for mac address storage, there is
27522     no point in seeding the global data.
27524     The arches that are converted here:
27525         i386
27526         m68k
27527         microblaze
27528         mips
27529         nios
27530         nios2
27531         sh
27532         sparc
27534     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27535     CC: Ben Warren <biggerbadderben@gmail.com>
27536     CC: Daniel Hellstrom <daniel@gaisler.com>
27537     CC: Michal Simek <monstr@seznam.cz>
27538     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27539     CC: Scott McNutt <smcnutt@psyent.com>
27540     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27542 commit 740e8ba7d475c49c1b76058e1bf354e376b5c4e0
27543 Author: Mike Frysinger <vapier@gentoo.org>
27544 Date:   Wed Feb 11 19:19:54 2009 -0500
27546     npe: get mac address from environment
27548     The environment is the canonical storage location of the mac address, so
27549     we're killing off the global data location and moving everything to
27550     querying the env directly.
27552     The resulting code can also be simplified even further.
27554     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27555     CC: Stefan Roese <sr@denx.de>
27556     CC: Ben Warren <biggerbadderben@gmail.com>
27558 commit 6bacfa6a8e9b264d37c1262fc1f3e948d1feab81
27559 Author: Mike Frysinger <vapier@gentoo.org>
27560 Date:   Wed Feb 11 19:18:41 2009 -0500
27562     cpu/: get mac address from environment
27564     The environment is the canonical storage location of the mac address, so
27565     we're killing off the global data location and moving everything to
27566     querying the env directly.
27568     The cpus that get converted here:
27569         at91rm9200
27570         mpc512x
27571         mpc5xxx
27572         mpc8260
27573         mpc8xx
27574         ppc4xx
27576     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27577     CC: Ben Warren <biggerbadderben@gmail.com>
27578     CC: John Rigby <jrigby@freescale.com>
27579     CC: Stefan Roese <sr@denx.de>
27581 commit 03f3d8d3b39cf85c0ce7ca903b436701e8aa610b
27582 Author: Mike Frysinger <vapier@gentoo.org>
27583 Date:   Wed Feb 11 19:09:54 2009 -0500
27585     lan91c96/smc91111/smc911x: get mac address from environment
27587     The environment is the canonical storage location of the mac address, so
27588     we're killing off the global data location and moving everything to
27589     querying the env directly.
27591     Also, do not bother checking the EEPROM if the env is setup.  This
27592     simplifies the code greatly.
27594     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27595     Signed-off-by: Wolfgang Dnek <wd@denx.de>
27596     CC: Ben Warren <biggerbadderben@gmail.com>
27597     CC: Rolf Offermanns <rof@sysgo.de>
27598     CC: Erik Stahlman <erik@vt.edu>
27599     CC: Daris A Nevil <dnevil@snmc.com>
27600     CC: Sascha Hauer <s.hauer@pengutronix.de>
27602 commit c527ce92511cbf723c2ca77bee1cf9ecf83dac81
27603 Author: Mike Frysinger <vapier@gentoo.org>
27604 Date:   Wed Feb 11 19:14:09 2009 -0500
27606     sh_eth: get mac address from environment
27608     The environment is the canonical storage location of the mac address, so
27609     we're killing off the global data location and moving everything to
27610     querying the env directly.
27612     The sh_eth driver can also be simplified a bit by using enetaddr member of
27613     the eth_device structure.
27615     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27616     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27617     CC: Carlos Munoz <carlos@kenati.com>
27618     CC: Ben Warren <biggerbadderben@gmail.com>
27620 commit 0a5238cea90665c230297a8fd77bb0b3b61ca177
27621 Author: Mike Frysinger <vapier@gentoo.org>
27622 Date:   Wed Feb 11 19:06:09 2009 -0500
27624     cs8900: get mac address from environment
27626     The environment is the canonical storage location of the mac address, so
27627     we're killing off the global data location and moving everything to
27628     querying the env directly.
27630     The cs8900 driver also changes slightly in that the hardware is not
27631     consulted if the mac address in the env is sane.
27633     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27634     CC: Marius Groeger <mgroeger@sysgo.de>
27635     CC: Ben Warren <biggerbadderben@gmail.com>
27637 commit c4b8762f11d337e6a9d90c227b2871d65d372469
27638 Author: Mike Frysinger <vapier@gentoo.org>
27639 Date:   Wed Feb 11 19:04:25 2009 -0500
27641     bcm570x: get mac address from environment
27643     The environment is the canonical storage location of the mac address, so
27644     we're killing off the global data location and moving everything to
27645     querying the env directly.
27647     Since the address is in the PLM_DEVICE_BLOCK structure already, there is
27648     no need to pass the NodeAddress as a second parameter.  So drop the second
27649     argument to the LM_SetMacAddress() function (and update the tigon3 driver
27650     accordingly).
27652     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27653     CC: Ben Warren <biggerbadderben@gmail.com>
27655 commit d3f871482f06f6a4eaf4a3fafde84846bad87b4f
27656 Author: Mike Frysinger <vapier@gentoo.org>
27657 Date:   Wed Feb 11 19:01:26 2009 -0500
27659     drivers/net/: get mac address from environment
27661     The environment is the canonical storage location of the mac address, so
27662     we're killing off the global data location and moving everything to
27663     querying the env directly.
27665     The drivers that get converted here:
27666         3c589
27667         4xx_enet
27668         dc2114x
27669         dm9000x
27670         enc28j60
27671         fsl_mcdmafec
27672         ks8695eth
27673         mcffec
27674         rtl8019
27675         rtl8169
27676         s3c4510b_eth
27677         xilinx_emac
27678         xilinx_emaclite
27680     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27681     CC: Ben Warren <biggerbadderben@gmail.com>
27682     CC: Rolf Offermanns <rof@sysgo.de>
27683     CC: Stefan Roese <sr@denx.de>
27684     CC: Sascha Hauer <saschahauer@web.de>
27685     CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27686     CC: Greg Ungerer <greg.ungerer@opengear.com>
27687     CC: Xue Ligong <lgxue@hotmail.com>
27688     CC: Masami Komiya <mkomiya@sonare.it>
27689     CC: Curt Brune <curt@cucy.com>
27690     CC: Michal SIMEK <monstr@monstr.eu>
27692 commit b6b4625d175019e387e5b0f65a17322a78f6bb90
27693 Author: Mike Frysinger <vapier@gentoo.org>
27694 Date:   Wed Feb 11 18:38:38 2009 -0500
27696     boards: get mac address from environment
27698     The boards that get converted here to use the environment for the mac
27699     address rather than global data:
27700         debris
27701         mgcoge
27702         mgsuvd
27703         muas3001
27704         netstal
27705         pn62
27706         sixnet
27707         vcma9
27708         xilinx (the ones that use xilinx_enet)
27710     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27711     CC: Ben Warren <biggerbadderben@gmail.com>
27712     CC: Sangmoon Kim <dogoil@etinsys.com>
27713     CC: Heiko Schocher <hs@denx.de>
27714     CC: David Mueller <d.mueller@elsoft.ch>
27715     CC: Niklaus Giger <niklaus.giger@netstal.com>
27716     CC: Wolfgang Grandegger <wg@denx.de>
27717     CC: Dave Ellis <DGE@sixnetio.com>
27718     CC: Ricardo Ribalda <ricardo.ribalda@uam.es>
27720 commit 06a0c4381a65ed500c816a05b9ae7b207c3b1d4b
27721 Author: Mike Frysinger <vapier@gentoo.org>
27722 Date:   Wed Feb 11 18:36:45 2009 -0500
27724     AmigaOneG3SE/enet: get mac address from environment
27726     Always use the MAC address that is stored in the environment first before
27727     falling back to the ROM.  This also cuts out any comparison steps: if the
27728     mac in the env is sane, the ROM is never consulted.
27730     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27731     CC: Thomas Frieden <ThomasF@hyperion-entertainment.com>
27732     CC: Ben Warren <biggerbadderben@gmail.com>
27734 commit 56b555a644f3cbb1b3929cb52b61d3ce483885f5
27735 Author: Mike Frysinger <vapier@gentoo.org>
27736 Date:   Wed Feb 11 18:52:38 2009 -0500
27738     nvedit: do not update global bi_enetaddr and do not call eth_set_enetaddr()
27740     Since the ethernet layer handles updating of device addresses itself from
27741     the environment, there is no point in calling eth_set_enetaddr().
27743     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27744     CC: Ben Warren <biggerbadderben@gmail.com>
27746 commit 5013533467c1de731c2f0c9beb4b41ce3f07cbeb
27747 Author: Mike Frysinger <vapier@gentoo.org>
27748 Date:   Wed Feb 11 18:54:07 2009 -0500
27750     lynxkdi: get mac address from environment
27752     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27753     CC: Ben Warren <biggerbadderben@gmail.com>
27755 commit 62c93d92f1b6266b2f33c5f403931b51cbd2a246
27756 Author: Mike Frysinger <vapier@gentoo.org>
27757 Date:   Wed Feb 11 18:51:43 2009 -0500
27759     bootvx: get mac address from environment
27761     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27762     CC: Niklaus Giger <niklaus.giger@member.fsf.org>
27763     CC: Ben Warren <biggerbadderben@gmail.com>
27765 commit de2dff6ff89f98c6062f4d224fd434a3ede035d1
27766 Author: Mike Frysinger <vapier@gentoo.org>
27767 Date:   Wed Feb 11 18:50:10 2009 -0500
27769     bdinfo: get mac address from environment
27771     Add a new print_eth() function to automate the eth*addr env var acquisition
27772     and display.  Affects all arches.
27774     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27775     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27776     CC: Scott McNutt <smcnutt@psyent.com>
27777     CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27778     CC: Michal Simek <monstr@seznam.cz>
27779     CC: Daniel Hellstrom <daniel@gaisler.com>
27780     CC: Ben Warren <biggerbadderben@gmail.com>
27782 commit 95823ca0773356860e622ee3304a4b7cafcbf19a
27783 Author: Mike Frysinger <vapier@gentoo.org>
27784 Date:   Wed Feb 11 18:23:48 2009 -0500
27786     net: get mac address from environment and use eth util funcs
27788     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27789     CC: Ben Warren <biggerbadderben@gmail.com>
27791 commit 500b6c51e4c41f4562cb48344af98deb7e342731
27792 Author: Mike Frysinger <vapier@gentoo.org>
27793 Date:   Mon Oct 13 15:06:25 2008 -0400
27795     Blackfin: bfin_mac: force boards to setup the MAC themselves
27797     Since the on-chip MAC does not have an eeprom or similar interface, force
27798     all Blackfin boards that use this driver to setup the board data with a
27799     proper MAC.
27801     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27802     CC: Ben Warren <biggerbadderben@gmail.com>
27804 commit 6ff4137f2ad640e4fc8ea1b0455161ddff1f6730
27805 Author: Mike Frysinger <vapier@gentoo.org>
27806 Date:   Wed Feb 11 14:12:34 2009 -0500
27808     doc/README.enetaddr: document proper MAC usage
27810     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27811     CC: Ben Warren <biggerbadderben@gmail.com>
27813 commit 3f6e6993e92fd0658da1746d1c84644612ee520b
27814 Author: Mike Frysinger <vapier@gentoo.org>
27815 Date:   Thu Jan 29 19:43:44 2009 -0500
27817     net: new utility functions for working with enetaddr's
27819     Declare new utility functions for converting between the environment
27820     variables (eth*addr) and the binary MAC address representation.  This way
27821     we can unify all the random places that already do this kind of thing.
27823     The functions in question:
27824         eth_parse_enetaddr - "..." -> {...}
27825         eth_getenv_enetaddr - env -> {...}
27826         eth_setenv_enetaddr - {...} -> env
27828     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27829     CC: Ben Warren <biggerbadderben@gmail.com>
27831 commit b6446b67758ea1e41223f0782924bb73fd0a89d0
27832 Author: Mike Frysinger <vapier@gentoo.org>
27833 Date:   Tue Feb 17 00:00:53 2009 -0500
27835     convert print_IPaddr() to %pI4
27837     Now that our printf functions support the %pI4 modifier like the kernel,
27838     let's drop the inflexible print_IPaddr() function and covert over to the
27839     %pI4 modifier.
27841     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27842     CC: Ben Warren <biggerbadderben@gmail.com>
27844 commit 6c6166f52983dac775e3852f9d0f49d033f27108
27845 Author: Mike Frysinger <vapier@gentoo.org>
27846 Date:   Mon Feb 16 23:21:36 2009 -0500
27848     vsprintf: pull updates from Linux kernel
27850     This brings in support for the %p modifier which allows us to easily print
27851     out things like ip addresses, mac addresses, and pointers.
27853     It also converts the rarely used 'q' length modifier to the common 'L'
27854     modifier when dealing with quad types.
27856     While this new code is a bit larger (~1k .text), most of it should be made
27857     up by converting the existing ip/mac address code to use format modifiers.
27859     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27861 commit a43ea5cc6d612471fbc74f0a26b2bea5864aa1d6
27862 Author: Jon Smirl <jonsmirl@gmail.com>
27863 Date:   Thu Mar 19 23:04:18 2009 -0400
27865     .gitignore for generated files in api_examples directory
27867     Add .gitignore for generated files in api_examples directory
27869     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
27870     Signed-off-by: Wolfgang Denk <wd@denx.de>
27872 commit 40281a9ca21a6b6d7b996b4d4eeaa19026337231
27873 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27874 Date:   Wed Mar 18 12:27:04 2009 +0900
27876     net: sh_eth: Remove sh_eth_reset() from halt function
27878     sh_eth_reset is function to reset Ether IP.
27879     The MAC address is stored in IP, but it is initialized by this function.
27880     OS (e.g. Linux Kernel) can not use this device when initialized.
27881     This revises this problem.
27883     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
27885 commit f8853d105da7d69bc92a5b4578f9b85234e558ec
27886 Author: Anatolij Gustschin <agust@denx.de>
27887 Date:   Fri Mar 20 12:45:50 2009 +0100
27889     ppc4xx: Fix bug in PCI outbound map configuration for canyonlands
27891     PCI outbound address map configuration doesn't match the
27892     PCI memory address range covered by appropriate TLB entry
27893     configuration for canyonlands causing machine check
27894     exceptions while accessing PCI memory regions. This patch
27895     provides a fix for this issue.
27897     Kazuaki Ichinohe observed and reported this issue while
27898     testing display output with PCI ATI video card on canyonlands.
27900     Signed-off-by: Anatolij Gustschin <agust@denx.de>
27901     Signed-off-by: Stefan Roese <sr@denx.de>
27903 commit 7a88601a34132548c3c591ea87ab3468b51121b0
27904 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
27905 Date:   Fri Mar 6 10:09:37 2009 -0500
27907     CFI: geometry reversal for STMicro M29W320DT
27909     Follow up to the flash_fixup_stm to fix geometry reversal
27910     on STMicro M29W320ET flash chip. The M29W320DT has 4 erase region.
27912     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
27913     Signed-off-by: Stefan Roese <sr@denx.de>
27915 commit 069f4364d807d7fdea3de7385ad2f8d83c587aec
27916 Author: Mike Frysinger <vapier@gentoo.org>
27917 Date:   Wed Feb 25 17:29:40 2009 -0500
27919     smc911x_eeprom: update register API
27921     The smc911x driver changed the naming convention for its register funcs,
27922     so update the eeprom code accordingly.
27924     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27925     CC: Ben Warren <biggerbadderben@gmail.com>
27927 commit 6a397ef0e6c58caab8bf427d447714bc9b3bb9d4
27928 Author: Grzegorz Bernacki <gjb@semihalf.com>
27929 Date:   Tue Mar 17 10:06:39 2009 +0100
27931     mpc52xx: Get rid of board-specific #ifdef's in cpu/mpc5xxx/ide.c
27933     Total5200 and digsy MTC use I2C port 2 pins as a ATA chip select.
27934     To avoid adding board-specific ifdefs to cpu/mpc5xxx/ide.c new
27935     define CONFIG_SYS_ATA_CS_ON_I2C2 was introduced. It is used by
27936     Total5200 and will be used by digsy MTC and other boards with
27937     ATA CS on I2C pins.
27939     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
27941 commit 1b6275dfb173bd2edb8f208dd050d6f47ae39654
27942 Author: Heiko Schocher <hs@denx.de>
27943 Date:   Thu Mar 12 07:37:34 2009 +0100
27945     8xx: add support for new keymile kmsupx4 board.
27947     This patch adds support for the kmsupx4 board from Keymile,
27948     based on a Freescale MPC852T CPU
27950     - serial console on SMC1
27951     - 32 MB SDRAM
27952     - 32 MB NOR Flash
27953     - Ethernet over SCC3
27954     - I2C Bitbang
27956     Signed-off-by: Heiko Schocher <hs@denx.de>
27958 commit d044954fe2a7e7a3dd104eb9c9d2104e38da2911
27959 Author: Heiko Schocher <hs@denx.de>
27960 Date:   Thu Mar 12 07:37:28 2009 +0100
27962     8xx, mgsuvd: rename board to a more generic name
27964     renaming the "mgsuvd" board port into "km8xx", because
27965     there come more similar boards from keymile.
27966     Compiling the mgsuvd board with "make mgsuvd_config"
27967     remains.
27969     Signed-off-by: Heiko Schocher <hs@denx.de>
27971 commit 18b2f35bde1672e074a3d5048383cb56fda745cb
27972 Author: Heiko Schocher <hs@denx.de>
27973 Date:   Thu Mar 12 07:37:23 2009 +0100
27975     8xx, mgsuvd: Coding Style cleanup config file
27977     Signed-off-by: Heiko Schocher <hs@denx.de>
27979 commit 364123db6730d32330f818b65360d2cd27396667
27980 Author: Heiko Schocher <hs@denx.de>
27981 Date:   Thu Mar 12 07:37:18 2009 +0100
27983     powerpc: common updates for keymile boards
27985     - added to keymile-common.h:
27986       - bootcount support
27987       - COMMAND HISTORY
27988       - CONFIG_AUTO_COMPLETE
27989       - CONFIG_SYS_FLASH_PROTECTION
27990       - JFFS2 support
27991       - CONFIG_VERSION_VARIABLE
27992     - extracted common I2C settings for all boards
27993     - common default environment settings summarized
27995     Signed-off-by: Heiko Schocher <hs@denx.de>
27997 commit 506f391888b82d1b83bdd749c3cea9eb2fd64df8
27998 Author: Heiko Schocher <hs@denx.de>
27999 Date:   Thu Mar 12 07:37:15 2009 +0100
28001     8xx, icache: enabling ICache not before running from RAM
28003     with the new CONFIG_SYS_DELAYED_ICACHE config option, ICache
28004     is not enabled before code runs from RAM.
28006     Signed-off-by: Heiko Schocher <hs@denx.de>
28008 commit cabf7b9c83bd780a5805ddbb4c0ce431d5b9f9f3
28009 Author: Heiko Schocher <hs@denx.de>
28010 Date:   Thu Mar 12 07:37:11 2009 +0100
28012     82xx, mgcoge: fix environment sector size
28014     Size of one environment sector is 0x20000.
28016     Signed-off-by: Heiko Schocher <hs@denx.de>
28018 commit 27057d416c7cc9eb1860953da8836352c07f13e9
28019 Author: Ladislav Michl <ladis@linux-mips.org>
28020 Date:   Mon Mar 16 23:27:31 2009 +0100
28022     NetStar: config reindentation
28024     Fix indentation broken by symbol renames. "Sort" driver related definitons.
28026     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
28028 commit 8d8235f84d3ef3f29b7d14e741369b5824b5bb4a
28029 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28030 Date:   Tue Mar 17 11:21:43 2009 +0000
28032     ColdFire: Fix incorrect definition
28034     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28036 commit 9017d9325a5067b2ab0d70a2d3c907620c9ab7f8
28037 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28038 Date:   Mon Mar 2 19:16:45 2009 +0000
28040     ColdFire: Fix M5329EVB and M5373EVB nand issue
28042     The Nand flash was unable to read and write properly
28043     due to Nand Chip Select (nCE) setup was in reverse
28044     order. Also, increase the Nand time out value to 60.
28046     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28048 commit 42b68af1062f75bb4a91cf47e329a7e8100cd815
28049 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28050 Date:   Tue Jan 27 15:19:35 2009 +0000
28052     ColdFire: PLATFORM_CPPFLAGS updates for new compiler
28054     Update PLATFORM_CPPFLAGS to accept 4.3.x version of
28055     ColdFire compiler.
28057     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28059 commit d6e4baf49987fc6f75e8574c0c27301a828b3132
28060 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28061 Date:   Tue Jan 27 12:57:47 2009 +0000
28063     ColdFire: Provide gzip image size V2 & V3 platforms
28065     Default gzip bootm size is 8MB. Some platforms require
28066     more than 8MB
28068     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28070 commit c3a9e6374210679a81f611c1bcf968988bc20e41
28071 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28072 Date:   Wed Feb 18 11:49:31 2009 +0000
28074     ColdFire: Fix M54451 serial boot dram setup
28076     The serial boot dram extended/standard mode register was not
28077     setup and was using default DRAM setup causing the U-boot was
28078     unstable to boot up in serial mode.
28080     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28082 commit 32d11d58159a575f08a982cad8a5a941ffe5cc3d
28083 Author: arun c <arun.edarath@gmail.com>
28084 Date:   Thu Dec 4 15:57:15 2008 +0530
28086     Coldfire: XL Bus minor fixes
28088     According to coldfire manual data timeout > address time out
28089     also use correct macro to program XARB_CFG
28091     Signed-off-by: Arun C <arunedarath@mistralsolutions.com>
28093 commit 65d8bc94d8214812ccdf3372d3fef845cf4ec2e5
28094 Author: Scott Wood <scottwood@freescale.com>
28095 Date:   Tue Mar 17 12:06:04 2009 -0500
28097     NAND: Have nboot accept .e and .i as legacy no-ops.
28099     This was intended to happen before, but a trivial bug prevented it.
28101     Signed-off-by: Scott Wood <scottwood@freescale.com>
28103 commit 0987505540918b2464b73069af3a5b766dbd3ceb
28104 Author: Ladislav Michl <ladis@linux-mips.org>
28105 Date:   Fri Mar 13 14:38:19 2009 +0100
28107     NAND: Make nboot skip bad blocks
28109     nboot command currently does not skip bad blocks and gives read error when
28110     loading image stored over bad block. With patch applied, nboot works as
28111     expected:
28113     Device 0 bad blocks:
28114       00780000
28115       014a0000
28116       02000000
28117       02cc0000
28118       04aa0000
28120     Loading from NAND 128MiB 3,3V 8-bit, offset 0x2c00000
28121        Image Name:   Linux-2.6.22-omap1
28122        Created:      2008-11-20  23:44:32 UTC
28123        Image Type:   ARM Linux Kernel Image (uncompressed)
28124        Data Size:    1052520 Bytes =  1 MB
28125        Load Address: 10008000
28126        Entry Point:  10008000
28127     Skipping bad block 0x02cc0000
28128     Automatic boot of image at addr 0x10400000 ...
28129     ...
28131     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
28132     Signed-off-by: Scott Wood <scottwood@freescale.com>
28134 commit 0b2f38fe3c4555dd2b81c69880403c13ad723153
28135 Author: Stefan Roese <sr@denx.de>
28136 Date:   Thu Mar 12 07:27:25 2009 +0100
28138     ppc4xx: lwmon5: Only use one CS (rank) in DDR2 configuration
28140     This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
28141     the DDR2 configuration to only use one CS (rank). As this code is most
28142     likely copied from the original Sequoia version, this error was copied
28143     as well.
28145     This patch also removes some dead code.
28147     Signed-off-by: Stefan Roese <sr@denx.de>
28149 commit 9199b9cc8f56aca26504b48cf702176208f46e54
28150 Author: Stefan Roese <sr@denx.de>
28151 Date:   Thu Mar 12 07:24:40 2009 +0100
28153     ppc4xx: PMC440: Only use one CS (rank) in DDR2 configuration
28155     This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
28156     the DDR2 configuration to only use one CS (rank). As this code is most
28157     likely copied from the original Sequoia version, this error was copied
28158     as well.
28160     Signed-off-by: Stefan Roese <sr@denx.de>
28162 commit ee86fd15e1ccda4be41f1dba82b8c9efea9a3145
28163 Author: Mikhail Zolotaryov <lebon@lebon.org.ua>
28164 Date:   Wed Mar 11 10:54:46 2009 +0200
28166     Fix AMCC Sequoia board DDR memory configuration
28168     Sequoia board schematics (DES0211_11_SCH_11.pdf, page 5, unit U1D)
28169     specifies that BankSel#1 is not connected, while bootloader memory
28170     configuration is (board/amcc/sequoia/sdram.c):
28171            mtsdram(DDR0_10, 0x00000300);
28172     i.e. both Chip Selects used - not correct.
28174     If we change to correct value here:
28175            mtsdram(DDR0_10, 0x00000100);
28176     memory is accessible OK also.
28178     Signed-off-by: Mikhail Zolotaryov <lebon@lebon.org.ua>
28179     Signed-off-by: Stefan Roese <sr@denx.de>
28181 commit b3dd629e78870ba2dc9f8032978721c0fa02a856
28182 Author: Wolfgang Denk <wd@denx.de>
28183 Date:   Sun Mar 15 22:40:09 2009 +0100
28185     Prepare 2009.03-rc2
28187     Update CHANEGLOG, fix minor coding style issue.
28189     Signed-off-by: Wolfgang Denk <wd@denx.de>
28191 commit 394d30dd1ee23b80fd5e59e17ebe0feca927ab31
28192 Author: Jerry Van Baren <gvb.uboot@gmail.com>
28193 Date:   Fri Mar 13 11:40:10 2009 -0400
28195     mpc83xx: Add bank configuration to FSL spd_sdram.c
28197     The routine assumed 4 bank SDRAMs, enhance to configure for 4 or 8
28198     bank SDRAMs.
28200     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
28201     Acked-by: Dave Liu <daveliu@freescale.com>
28202     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28204 commit b581626c1e2474a3dadf69d4f0e0582eccbc4235
28205 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
28206 Date:   Fri Mar 13 08:58:14 2009 +0100
28208     mpc83xx: correctly set encryption and I2C bus 0 clock
28210     This patch makes sure the correct mask is applied when setting
28211     the encryption and I2C bus 0 clock in SCCR.
28212     Failing to do so may lead to ENCCM being 0 in which case I2C bus 0
28213     won't function.
28215     Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
28216     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28218 commit e6a6a704151c2d7e4a7b485545b48a6020ccca17
28219 Author: Dirk Behme <dirk.behme@googlemail.com>
28220 Date:   Thu Mar 12 19:30:50 2009 +0100
28222     OMAP3: Add support for OMAP3 die ID
28224     Read and store OMAP3 die ID in U-Boot environment.
28226     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
28228 commit f949bd8d089ec3059c460ac829c0d919e1d7af0e
28229 Author: Jon Smirl <jonsmirl@gmail.com>
28230 Date:   Wed Mar 11 15:08:56 2009 -0400
28232     MPC5200 FEC MII speed register
28234     Set a non-zero speed in the MII register so that MII commands will work.
28236     Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
28238 commit 94a353611b93ac4cb4434a5f7e98aa0902da919e
28239 Author: Yusuke.Goda <goda.yusuke@renesas.com>
28240 Date:   Fri Mar 13 16:08:18 2009 +0900
28242     sh: ap325rxa: Change the wait cycle in the area 5
28244     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
28245     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28247 commit 2db0e1278b9f11263e0a13326b57d4f99781f7ac
28248 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28249 Date:   Wed Feb 25 16:04:26 2009 +0900
28251     sh: Fix cannot work rtl8139 on r2dplus
28253     The rtl8139 driver use pci_mem_to_phys. So it need PCI system memory
28254     registration.
28256     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28257     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28259 commit 64f3c0b8ba99d6651db59273e497ab5e857c8d4f
28260 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28261 Date:   Fri Feb 27 18:35:41 2009 +0900
28263     sh: Add netdev header fixing of warning/build
28265     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28266     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28268 commit ada9318252f51c2626e9837c623f9812b0308dea
28269 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28270 Date:   Tue Mar 3 15:11:17 2009 +0900
28272     sh: Add support 32-Bit Extended Address Mode to sh7785lcr
28274     We can built 'make sh7785lcr_32bit_config'. And add new command "pmb"
28275     for this mode. This command changes PMB for using 512MB system memory.
28277     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28278     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28280 commit 06b18163b57e6b0349b0c299222d50e7b1e41e50
28281 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28282 Date:   Wed Feb 25 14:26:42 2009 +0900
28284     sh: Add some register value configurable to PCI of SH7780
28286     Some register value was hardcoded for System memory size 128MB and
28287     memory offset 0x08000000. This patch fixed the problem.
28289     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28290     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28292 commit 06e2735eb85cbea7cecb3c308d6d078b3651b22c
28293 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28294 Date:   Wed Feb 25 14:26:52 2009 +0900
28296     sh: Add system memory registration to PCI for SH4
28298     It is necessary for some pci device driver.
28300     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28301     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28303 commit b3061b40db691245a7bb9a55354b4edacbf3902d
28304 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28305 Date:   Wed Feb 25 14:26:55 2009 +0900
28307     sh: Add value for PCI system memory registration of sh7785lcr
28309     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28310     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28312 commit 6d84ae3956a6cd7aebd86f661130752594e60124
28313 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28314 Date:   Tue Mar 3 15:11:08 2009 +0900
28316     sh: Add macros for SH-4A 32-Bit Address Extended Mode
28318     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
28319     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28321 commit 3e3eec39de8fe0ae62e6e4d4e3fa4442ee9ed6b1
28322 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28323 Date:   Tue Feb 3 13:35:05 2009 +0900
28325     sh: use write{8,16,32} in ms7720se lowlevel_init
28327     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28328     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28330 commit 0452352df118bc9dd684a056aaaa5fb4aed1178a
28331 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
28332 Date:   Mon Mar 9 18:07:53 2009 -0500
28334     tsec: report when there is no vendor specific PHY support
28336     Commit af1c2b84 added a generic phy support, with an ID of zero
28337     and a 32 bit mask; meaning that it will match on any PHY ID.
28339     The problem is that there is a test that checked if a matching
28340     PHY was found, and if not, it printed the non-matching ID.
28341     But since there will always be a match (on the generic PHY,
28342     worst case), this test will never trip.
28344     In the case of a misconfigured PHY address, or of a PHY that
28345     isn't explicitly supported outside of the generic support,
28346     you will never see the ID of 0xffffffff, or the ID of the
28347     real (but unsupported) chip.  It will silently fall through
28348     onto the generic support.
28350     This change makes that test useful again, and ensures that
28351     the selection of generic PHY support doesn't happen without
28352     some sort of notice.  It also makes it explicitly clear that
28353     the generic PHY must be last in the PHY table.
28355     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
28356     Acked-by: Andy Fleming <afleming@freescale.com>
28358 commit c279dfc10186ceba78d3862036f158750e86599a
28359 Author: Wolfgang Denk <wd@denx.de>
28360 Date:   Mon Mar 9 10:53:05 2009 +0100
28362     SIMPC8313 board: fix out of tree building.
28364     Fix typo in makefile which broke out of tree builds.
28366     Also use expolicit "rm" instead of "ln -sf" which is known to be
28367     unreliable.
28369     Signed-off-by: Wolfgang Denk <wd@denx.de>
28370     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28372 commit 49b5aff491bd574935ecaf8545152066a25eff3d
28373 Author: ksi@koi8.net <ksi@koi8.net>
28374 Date:   Mon Feb 23 10:53:13 2009 -0800
28376     Add eTSEC 1/2 IO override control (corrected)
28378     This adds tsec12ioovcr to include/asm-ppc/immap_85xx.h (was reserved.)
28380     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
28382 commit 48c2b7bb432da84fcce05b4db6efad0be73a93dc
28383 Author: Andy Fleming <afleming@freescale.com>
28384 Date:   Fri Mar 6 19:05:52 2009 -0600
28386     fsl: Remove unnecessary debug printfs
28388     These were left in accidentally, and are not really useful unless the
28389     code is as broken as it was when it was being developed.
28391     Signed-off-by: Andy Fleming <afleming@freescale.com>
28393 commit 0ee84b88b78bce425190d8cd7adf4c30cba0c2f0
28394 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
28395 Date:   Tue Feb 24 02:37:59 2009 -0600
28397     Fix mpc85xx ddr-gen3 ddr_sdram_cfg.
28399     Commit e1be0d25, "32bit BUg fix for DDR2 on 8572" prevented other
28400     sdram_cfg bits (such as ecc and self_refresh_in_sleep) from being set.
28402     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
28404 commit a922fdb87af25c25c032424908dcf60fbf3250ea
28405 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28406 Date:   Tue Feb 24 06:13:10 2009 +0100
28408     PXA: timer use do_div and simplify it
28410     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28412 commit 4b00d1aa82b6af9b4e628a5729a12086e44558b3
28413 Author: Wolfgang Denk <wd@denx.de>
28414 Date:   Mon Mar 9 10:51:39 2009 +0100
28416     SIMPC8313 board: fix out of tree building.
28418     Fix typo in makefile which broke out of tree builds.
28420     Also use expolicit "rm" instead of "ln -sf" which is known to be
28421     unreliable.
28423     Signed-off-by: Wolfgang Denk <wd@denx.de>
28425 commit f70fd13e2fe4cf58e251271c27f9c06e141d7f9a
28426 Author: Heiko Schocher <hs@denx.de>
28427 Date:   Tue Feb 24 11:30:51 2009 +0100
28429     8360, kmeter1: added bootcount feature.
28431     add CONFIG_BOOTCOUNT_LIMIT feature for 8360 CPU.
28433     The bootcounter uses 8 bytes from the muram,
28434     because no other memory was found on this
28435     CPU for the bootcount feature. So we must
28436     correct the muram size in DTS before booting
28437     Linux.
28439     This feature is actual only implemented for
28440     MPC8360, because not all 83xx CPU have qe,
28441     and therefore no muram, which this feature
28442     uses.
28444     Signed-off-by: Heiko Schocher <hs@denx.de>
28445     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28447 commit 1e7ed2565031e01abc18c713030a0a9829c07684
28448 Author: Heiko Schocher <hs@denx.de>
28449 Date:   Tue Feb 24 11:30:48 2009 +0100
28451     83xx, kmeter: QE_ENET10 errata for Silicon Revision 2.1
28453     old code implemented the QE_ENET10 errata only for Silicon
28454     Revision 2.0. New code reads now the Silicon Revision
28455     register and sets dependend on the Silicon Revision the
28456     values as advised in the QE_ENET10 errata.
28458     Signed-off-by: Heiko Schocher <hs@denx.de>
28459     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28461 commit 605f78e34a3f0103693b891f2573edd352e7d495
28462 Author: Heiko Schocher <hs@denx.de>
28463 Date:   Tue Feb 24 11:30:44 2009 +0100
28465     83xx, kmeter1: updates for 2009.03
28467     - HRCW update
28468       HRCWH_BOOTSEQ_DISABLE not HRCWH_BOOTSEQ_NORMAL
28469       HRCWH_LALE_EARLY added
28470     - DDR-SDRAM settings modified. This solves sporadically
28471       problems with this memory.
28472     - CS1 now 128 MB window size
28473     - CS3 now 512 MB window size
28474     - PRAM activated
28475     - MTDPARTS_DEFAULT defined
28476     - CONFIG_HOSTNAME added
28477     - MONITOR_LEN now 384 KB
28479     Signed-off-by: Heiko Schocher <hs@denx.de>
28480     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28482 commit 118cbe3c35c898f8d020b29d6dc180307cacf147
28483 Author: Heiko Schocher <hs@denx.de>
28484 Date:   Tue Feb 24 11:30:40 2009 +0100
28486     83xx, kmeter1: autodetect size of DDR II RAM
28488     it is possible that some board variants have different DDR II
28489     RAM sizes. So we autodetect the size of the assembled RAM.
28491     Signed-off-by: Heiko Schocher <hs@denx.de>
28492     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28494 commit c1bce4fff750d734b1fa7467eb08f93902c97ca6
28495 Author: Heiko Schocher <hs@denx.de>
28496 Date:   Tue Feb 24 11:30:37 2009 +0100
28498     83xx, i2c: add mux support for fsl_i2c
28500     This patch adds I2C mux support for the fsl_i2c driver. This
28501     allows you to add "new" i2c busses, which are reached over
28502     i2c muxes. For more infos, please look in the README and
28503     search for CONFIG_I2C_MUX.
28505     Signed-off-by: Heiko Schocher <hs@denx.de>
28506     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28508 commit 19f0e93041dbfe22f8d39b98e4f7f9ea87b77803
28509 Author: Heiko Schocher <hs@denx.de>
28510 Date:   Tue Feb 24 11:30:34 2009 +0100
28512     83xx, kmeter1: add I2C, dtt, eeprom support
28514     This patch adds I2C support for the Keymile kmeter1 board.
28515     It uses the First I2C Controller from the CPU, for
28516     accessing 4 temperature sensors, an eeprom with IVM data
28517     and the booteeprom over a pca9547 mux.
28519     Signed-off-by: Heiko Schocher <hs@denx.de>
28520     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28522 commit db1d72afd77287bc8577210f3f71ab249dcf146f
28523 Author: Heiko Schocher <hs@denx.de>
28524 Date:   Tue Feb 24 11:30:30 2009 +0100
28526     i2c, dtt: move dtt_init () to board_init_r ()
28528     In case where a board not uses CONFIG_POST, it is not
28529     necessary to init the DTTs when running from flash.
28531     Signed-off-by: Heiko Schocher <hs@denx.de>
28532     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28534 commit 5b0055547f0246908b79cc300170d87380b69e18
28535 Author: Dave Liu <daveliu@freescale.com>
28536 Date:   Wed Feb 25 12:31:32 2009 +0800
28538     83xx: Fix some bugs in spd sdram code
28540     1. RD_TO_PRE missed to add the AL, and need min 2 clocks for
28541       tRTP according to DDR2 JEDEC spec.
28542     2. WRTORD - tWTR need min 2 clocks according to DDR2 JEDEC spec.
28543     3. add the support of DDR2-533,667,800 DIMMs
28544     4. cpo
28545     5. make the AL to min to gain better performance.
28547     The Micron MT9HTF6472CHY-667D1 DIMMs test passed on
28548     MPC837xEMDS platform at 266MHz/333MHz/400MHz data rate.
28550     items 1, 2 and 5:
28551     Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
28553     Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
28554     Signed-off-by: Dave Liu <daveliu@freescale.com>
28555     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28557 commit b7be63abec45858c044f0fbd6aeef524c4663f9b
28558 Author: Valeriy Glushkov <gvv@lstec.com>
28559 Date:   Wed Feb 4 18:27:49 2009 +0200
28561     MPC8349ITX: several config issues fixed
28563     The previous version rebooted forever with DDR bigger than 256MB.
28564     Access the DS1339 RTC chip is on I2C1 bus.
28565     Allow DHCP.
28567     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
28568     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28570 commit 7e2ec1de1d2d723b59d7dd2fb85ff71b952d63af
28571 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28572 Date:   Thu Feb 19 18:20:39 2009 +0300
28574     mpc83xx: MPC837XEMDS: Initialize SerDes before negating PCIE reset signal
28576     The SerDes initialization should be finished before negating the reset
28577     signal according to the reference manual. This isn't an issue on real
28578     hardware, but we'd better stick to the specifications anyway.
28580     Suggested-by: Liu Dave <DaveLiu@freescale.com>
28581     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28582     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28584 commit 9c2d63ec0e9520948b6d598ea32e9aa4e0de847f
28585 Author: Heiko Schocher <hs@denx.de>
28586 Date:   Wed Feb 25 12:28:32 2009 +0100
28588     i2c, dtt: move dtt_init () to board_init_r ()
28590     it is not necessary to init the DTTs so early,
28591     so move this init to board_init_r ().
28593     Signed-off-by: Heiko Schocher <hs@denx.de>
28595 commit 00cc5595a7caac8066b408774383a956c2e26797
28596 Author: Anatolij Gustschin <agust@denx.de>
28597 Date:   Wed Feb 25 20:28:13 2009 +0100
28599     lcd: Fix compilation warning in common/lcd.c
28601     Fix following warning while compilation for mcc200 board:
28603     lcd.c: In function 'lcd_display_bitmap':
28604     lcd.c:625: warning: unused variable 'cmap'
28606     Signed-off-by: Anatolij Gustschin <agust@denx.de>
28608 commit f5a77a09c93fe7f04c0c56f64ea436f7d318d674
28609 Author: Graeme Russ <graeme.russ@gmail.com>
28610 Date:   Tue Feb 24 21:11:24 2009 +1100
28612     Moved SC520 Files (fix commit 407976185e0dda2c90e89027121a1071b9c77bfb)
28614     Fixes commit 407976185e0dda2c90e89027121a1071b9c77bfb
28616     Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
28618 commit 75ba6d693b8f6247aa4b81323a2ee2fa28222215
28619 Author: Mike Frysinger <vapier@gentoo.org>
28620 Date:   Mon Feb 23 10:29:47 2009 -0500
28622     smc911x: split out useful defines/functions into local header
28624     The smc911x driver has a lot of useful defines/functions which can be used
28625     by pieces of code (such as example eeprom programmers).  Rather than
28626     forcing each place to duplicate these defines/functions, split them out
28627     of the smdc911x driver into a local header.
28629     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28630     Acked-by: Ben Warren <biggerbadderben@gmail.com>
28631     CC: Sascha Hauer <s.hauer@pengutronix.de>
28632     CC: Guennadi Liakhovetski <lg@denx.de>
28633     CC: Magnus Lilja <lilja.magnus@gmail.com>
28634     CC: Ben Warren <biggerbadderben@gmail.com>
28636 commit a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1
28637 Author: Guennadi Liakhovetski <lg@denx.de>
28638 Date:   Tue Feb 24 10:44:02 2009 +0100
28640     ARM: add an "eet" variant of the imx31_phycore board
28642     The "eet" variant of the imx31_phycore board has an OLED display, using a
28643     s6e63d6 display controller on the first SPI interface, using GPIO57 as a
28644     chip-select for it. With this configuration you can display 256 colour BMP
28645     images in 16-bit RGB (RGB565) LCD mode.
28647     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28648     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28650 commit 0c99f6ab31c5635874ba7a2e8d37791bfbf02f8f
28651 Author: Guennadi Liakhovetski <lg@denx.de>
28652 Date:   Fri Feb 6 10:37:57 2009 +0100
28654     video: add an i.MX31 framebuffer driver
28656     Add a driver for the Synchronous Display Controller and the Display
28657     Interface on i.MX31, using IPU for DMA channel setup. So far only
28658     displaying of bitmaps is supported, no text output.
28660     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28661     Acked-by: Anatolij Gustschin <agust@denx.de>
28663 commit b245e65ee3c4cce3ccf008a21f4528239655876c
28664 Author: Guennadi Liakhovetski <lg@denx.de>
28665 Date:   Fri Feb 6 10:37:53 2009 +0100
28667     LCD: support 8bpp BMPs on 16bpp displays
28669     This patch also simplifies some ifdefs in lcd.c, introduces a generic
28670     vidinfo_t, which new drivers are encouraged to use and old drivers to switch
28671     over to.
28673     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28674     Acked-by: Anatolij Gustschin <agust@denx.de>
28676 commit a303dfb0e9a93e516ea9427b5c09543d5f74ade1
28677 Author: Mark Jackson <mpfj@mimc.co.uk>
28678 Date:   Fri Feb 6 10:37:49 2009 +0100
28680     Add 16bpp BMP support
28682     This patch adds 16bpp BMP support to the common lcd code.
28684     Use CONFIG_BMP_16BPP and set LCD_BPP to LCD_COLOR16 to enable the code.
28686     At the moment it's only been tested on the MIMC200 AVR32 board, but extending
28687     this to other platforms should be a simple task !!
28689     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
28690     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28691     Acked-by: Anatolij Gustschin <agust@denx.de>
28693 commit 689551c5ff1b394b88412f3df22144e79468d3a9
28694 Author: Guennadi Liakhovetski <lg@denx.de>
28695 Date:   Fri Feb 6 10:37:41 2009 +0100
28697     A driver for the S6E63D6 SPI display controller from Samsung
28699     This is a driver for the S6E63D6 SPI OLED display controller from Samsung.
28700     It only provides access to controller's registers so the client can freely
28701     configure it.
28703     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28704     Acked-by: Anatolij Gustschin <agust@denx.de>
28706 commit fc7a93c84f3f134484811a0d9ad751fbc1a7da6d
28707 Author: Guennadi Liakhovetski <lg@denx.de>
28708 Date:   Fri Feb 13 09:26:40 2009 +0100
28710     i.MX31: support GPIO as a chip-select in the mxc_spi driver
28712     Some SPI devices have special requirements on chip-select handling.
28713     With this patch we can use a GPIO as a chip-select and strictly follow
28714     the SPI_XFER_BEGIN and SPI_XFER_END flags.
28716     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28717     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28719 commit b30de3cccf8867566cd314e7c7033904afa5dc9d
28720 Author: Guennadi Liakhovetski <lg@denx.de>
28721 Date:   Sat Feb 7 01:18:07 2009 +0100
28723     i.MX31: add a simple gpio driver
28725     This is a minimal driver, so far only managing output. It will
28726     be used by the mxc_spi.c driver.
28728     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28729     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28731 commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f
28732 Author: Guennadi Liakhovetski <lg@denx.de>
28733 Date:   Sat Feb 7 00:09:12 2009 +0100
28735     i.MX31: fix SPI driver for shorter than 32 bit
28737     Fix setting the SPI Control register, 8 and 16-bit transfers
28738     and a wrong pointer in the free routine in the mxc_spi driver.
28740     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28741     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28743 commit 7e91558032a0c1932dd7f4f562f9c7cc55efc496
28744 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28745 Date:   Thu Feb 19 18:20:52 2009 +0300
28747     mpc83xx: MPC837XERDB: Add PCIe support
28749     On MPC8377E-RDB and MPC8378E-RDB boards we have PCIe and mini-PCIe
28750     slots. Let's support them.
28752     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28753     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28755 commit 50a4d08e8f31debbd4ea12caf1265f3643c38d5b
28756 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28757 Date:   Thu Feb 19 18:20:50 2009 +0300
28759     mpc83xx: PCI: Fix hard-coded first_busno value
28761     We should use pci_last_busno() in pci_init_bus(), otherwise we'll
28762     erroneously re-use PCI0's first_busno for PCI1 hoses.
28764     NOTE: The patch is untested. All MPC83xx FSL boards I have have
28765     PCI1 in miniPCI form, for which I don't have any cards handy.
28767     But looking in cpu/mpc85xx/pci.c:
28768     ...
28769     #ifdef CONFIG_MPC85XX_PCI2
28770             hose = &pci_hose[1];
28772             hose->first_busno = pci_hose[0].last_busno + 1;
28774     And considering that we do the same for MPC83xx PCI-E support,
28775     I think this patch is correct.
28777     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28778     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28780 commit a5878d427128c1a9226045ebe05fbadaa02eb9dd
28781 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28782 Date:   Thu Feb 19 18:20:46 2009 +0300
28784     mpc83xx: PCI: Fix bus-range fdt fixups for PCI1 controllers
28786     This patch fixes copy-paste issue: pci_hose[0]'s first and last
28787     busnos were used to fixup pci1's nodes.
28789     We don't see this bug triggering only because Linux reenumerate
28790     buses anyway.
28792     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28793     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28795 commit b24a99f6666ac278ec9f9c1334518af828833d19
28796 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28797 Date:   Thu Feb 19 18:20:44 2009 +0300
28799     mpc83xx: PCIe: Fix CONFIG_PCI_SCAN_SHOW reporting bogus values
28801     This patch fixes an issue in config space read accessors: we should
28802     fill-in the value even if we fail (e.g. skipping devices), otherwise
28803     CONFIG_PCI_SCAN_SHOW reports bogus values during boot up.
28805     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28806     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28808 commit e2d72ba543c7b6924b5b5d393dcd80b2b9c3a022
28809 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28810 Date:   Thu Feb 19 18:20:42 2009 +0300
28812     mpc83xx: PCIe: Don't start bus enumeration at 0
28814     Currently we assign first_busno = 0 for the first PCIe hose, but this
28815     scheme won't work if we have ordinary PCI hose already registered (its
28816     first_busno value is 0 too).
28818     The old code worked fine only because we have PCI disabled on
28819     MPC837XEMDS boards in stand-alone mode (see commit 00f7bbae92e3b13f2b3
28820     "mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards").
28821     But on MPC837XERDB boards we have PCI and PCIe, so the bug actually
28822     triggers.
28824     So, to fix the issue, we should use pci_last_busno() + 1 for the
28825     first_busno (i.e. last available busno).
28827     Reported-by: Huang Changming <Chang-Ming.Huang@freescale.com>
28828     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28829     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28831 commit cc2a8c7751ddbae3116660064f446888538b93e9
28832 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28833 Date:   Thu Feb 19 18:20:41 2009 +0300
28835     PCI: Add pci_last_busno() helper
28837     This is just a handy routine that reports last PCI busno: we walk
28838     down all the hoses and return last hose's last_busno.
28840     Will be used by PCI/PCIe initialization code.
28842     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28843     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28845 commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
28846 Author: Becky Bruce <beckyb@kernel.crashing.org>
28847 Date:   Mon Feb 23 13:56:51 2009 -0600
28849     MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
28851     Currently, we get 256MB as the default, but since all the 86xx
28852     board configs define a 2G BAT mapping for RAM, raise default
28853     to 2G.
28855     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
28856     Acked-by: Jon Loeliger <jdl@freescale.com>
28858 commit 2331e18b9df0ab98ebf3ab44c0efea1311949aaa
28859 Author: Becky Bruce <beckyb@kernel.crashing.org>
28860 Date:   Thu Feb 12 10:43:32 2009 -0600
28862     mpc8641hpcn: Indicate 36-bit addr map in boot messages
28864     If 36-bit addressing is enabled, print a message on the console
28865     when we boot.
28867     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
28869 commit 58a518c3d8a2c7de11d414e8b903495daee7dc7e
28870 Author: Mark Jackson <mpfj-list@mimc.co.uk>
28871 Date:   Fri Feb 13 15:48:18 2009 +0000
28873     Setup extra MIMC200 chip selects
28875     Added code to setup the extra Flash and FRAM chip selects as used on the
28876     MIMC200 board.
28878     V2 moves the init code from the common "cpu.c" file into the board specific
28879     setup file.
28881     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
28882     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28884 commit 80534886a72a0088eef9e781a8e0b7d04ea41f36
28885 Author: Mark Jackson <mpfj@mimc.co.uk>
28886 Date:   Mon Nov 24 12:10:56 2008 +0000
28888     MIMC200: tidy GCLK init code
28890     Change the MIMC200 startup code to use the built-in (rather than
28891     hard-coded) funtions for setting up gclk outputs.
28893     We'll also move the code to the new, more-appropriate
28894     board_postclk_init() routine.
28896     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
28897     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28899 commit b423f94063bf04e92047ff85c7e53441eb3b712b
28900 Author: Olav Morken <olavmrk@gmail.com>
28901 Date:   Fri Jan 23 12:56:32 2009 +0100
28903     AVR32: Must add NOPs after disabling interrupts for AT32UC3A0512ES
28905     The AT32UC3A0512ES chip has a bug when disabling interrupts. As a
28906     workaround, two NOPs can be inserted.
28908     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
28909     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
28910     Signed-off-by: Olav Morken <olavmrk@gmail.com>
28911     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28913 commit f5f652fa91aa69db8117d211af1b4fe09f2edd3b
28914 Author: Gunnar Rangoy <gunnar@rangoy.com>
28915 Date:   Fri Jan 23 12:56:29 2009 +0100
28917     AVR32: Make GPIO implmentation cpu dependent
28919     There are some differences in the implementation of GPIO in the
28920     at32uc chip compared to the ap700x series.
28922     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
28923     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
28924     Signed-off-by: Olav Morken <olavmrk@gmail.com>
28925     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28927 commit a38de083d2979db3680f0d0978c509a172c8fa00
28928 Author: Olav Morken <olavmrk@gmail.com>
28929 Date:   Fri Jan 23 12:56:28 2009 +0100
28931     AVR32: Move addrspace.h to arch-directory, and move some functions from io.h to addrspace.h
28933     The AVR32A architecture (which AT32UC3A-series is based on) has a
28934     different memory layout than the AVR32B-architecture. This patch moves
28935     addrspace.h to an arch-dependent directory in preparation for
28936     AT32UC3A-support. It also moves some address-space manipulation
28937     functions from io.h to addrspace.h.
28939     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
28940     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
28941     Signed-off-by: Olav Morken <olavmrk@gmail.com>
28942     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28944 commit d8f2aa3298610b44127dbc4796d8038aa5847e0b
28945 Author: Olav Morken <olavmrk@gmail.com>
28946 Date:   Fri Jan 23 12:56:27 2009 +0100
28948     AVR32: Make cacheflush cpu-dependent
28950     The AT32UC3A series of processors doesn't contain any cache, and issuing
28951     cache control instructions on those will cause an exception. This commit
28952     makes cacheflush.h arch-dependent in preparation for the AT32UC3A-support.
28954     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
28955     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
28956     Signed-off-by: Olav Morken <olavmrk@gmail.com>
28957     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28959 commit 2f70c49e5b9813635ad73666aa30f304c7fdeda9
28960 Author: Heiko Schocher <hs@denx.de>
28961 Date:   Tue Feb 10 09:38:52 2009 +0100
28963     netloop: speed up NetLoop
28965     NetLoop polls every cycle with getenv some environment variables.
28966     This is horribly slow, especially when the environment is big.
28968     This patch reads only the environment variables in NetLoop,
28969     when they were changed.
28971     Also moved the init part of the NetLoop function in a seperate
28972     function.
28974     Signed-off-by: Heiko Schocher <hs@denx.de>
28975     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28977 commit ad2d16393e9f684e4a9255f42e8bfdd819b67a87
28978 Author: Mike Frysinger <vapier@gentoo.org>
28979 Date:   Mon Dec 22 02:56:07 2008 -0500
28981     smc911x_eeprom: new example app for managing newer SMC parts
28983     A forward port of the last version to work with the newer smc911x driver.
28984     I only have a board with a LAN9218 part on it, so that is the only one
28985     I've tested.  But there isn't anything in this that would make it terribly
28986     chip specific afaik.
28988     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28989     CC: Sascha Hauer <s.hauer@pengutronix.de>
28990     CC: Guennadi Liakhovetski <lg@denx.de>
28991     CC: Magnus Lilja <lilja.magnus@gmail.com>
28992     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28994 commit 736323a490b664ec0edc3ddb2c1c4a6824db45c6
28995 Author: Pieter Henning <phenning@vastech.co.za>
28996 Date:   Sun Feb 22 23:17:15 2009 -0800
28998     Added Vitesse VSC8211 definitions to TSEC driver
29000     Added the struct containing PHY settings for the Vitesse VSC8211 phy to
29001     the phy_info list in tsec.c
29003     Signed-off-by: Pieter Henning <phenning@vastech.co.za>
29004     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29006 commit 32688e572ff96715b41420e9a7f280db6c399b65
29007 Author: Wolfgang Denk <wd@denx.de>
29008 Date:   Mon Feb 23 00:22:21 2009 +0100
29010     Update CHANGELOG;  Prepare 2009.03-rc1
29012     Signed-off-by: Wolfgang Denk <wd@denx.de>
29014 commit 80b827c2b78329c6503b271e43d9eb693d644710
29015 Author: Wolfgang Denk <wd@denx.de>
29016 Date:   Sun Feb 22 23:45:40 2009 +0100
29018     ARM: synchronize mach-types.h with linux v2.6.29-rc5-315-g683fdc5
29020     The file was generated from building versatile_defconfig.
29022     Signed-off-by: Wolfgang Denk <wd@denx.de>
29024 commit 14209ac13ff631e36c9a9dd426c59c2e2f5dab00
29025 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29026 Date:   Sun Feb 22 14:24:11 2009 +0900
29028     MIPS: Fix GCC-4.2 'discards qualifiers from pointer target type' warnings
29030     Compiling dbau1x00 and gth2 boards with GCC-4.2, you would see new warnings
29031     like this:
29033     skuribay@ubuntu:u-boot.git$ ./MAKEALL dbau1000
29034     Configuring for dbau1x00 board...
29035     au1x00_eth.c: In function 'au1x00_send':
29036     au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
29037     au1x00_eth.c: In function 'au1x00_recv':
29038     au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
29039     au1x00_eth.c: In function 'au1x00_init':
29040     au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
29041     au1x00_eth.c: In function 'au1x00_recv':
29042     au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
29043     au1x00_eth.c: In function 'au1x00_init':
29044     au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
29045     au1x00_eth.c: In function 'au1x00_send':
29046     au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
29048     We're passing a volatile pointer to a function which is expecting a non-
29049     volatile pointer.  That's potentially dangerous, so gcc warns about it.
29050     Confirmed with ELDK 4.2 (GCC 4.2.2) and Sourcey G++ 4.2 (GCC 4.2.3).
29052     To fix this, we add a volatile attribute to the argument in question.
29053     The virt_to_phys function in Linux kernel also does the same thing.
29055     Signed-off-by: Stefan Roese <sr@denx.de>
29056     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29058 commit aba45c85b22f8c57fc2fedba8e948e06c2e2f5b3
29059 Author: Dirk Behme <dirk.behme@googlemail.com>
29060 Date:   Fri Feb 20 17:51:28 2009 +0100
29062     OMAP3: Clean up MMC code
29064     Clean up OMAP3 MMC code:
29066     * Convert register access to struct & readx/writex style
29067     * Replace hardcode values by macros
29068     * Remove macro defined twice
29070     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
29072 commit cfcdf4a9b361d015c0debac73fbf7c511df4a934
29073 Author: Dirk Behme <dirk.behme@googlemail.com>
29074 Date:   Thu Feb 12 18:55:43 2009 +0100
29076     OMAP3: Pandora: Update pin mux
29078     Clock pin must have input enabled for MMC3 to work.
29079     Also enable pull-ups for cmd/data lines to be consistent
29080     with remaining MMC host pin setup.
29082     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
29084 commit 6530a8bf8a0274b9419141e4c2c5a235cce5380f
29085 Author: Dirk Behme <dirk.behme@googlemail.com>
29086 Date:   Thu Feb 12 18:55:42 2009 +0100
29088     OMAP3: Add OMAP3 auto detection
29090     This patch adds OMAP3 cpu type auto detection based on OMAP3 register
29091     and removes hardcoded values.
29093     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
29094     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
29096 commit f956fd0338f4990793a10f767929ba4963665261
29097 Author: Dirk Behme <dirk.behme@googlemail.com>
29098 Date:   Thu Feb 12 18:55:41 2009 +0100
29100     OMAP3: Beagle: Add board revision detection
29102     With BeagleBoard revision C some HW changes are introduced (e.g. PinMUX)
29103     which might need different software handling. For this, GPIO pin 171 (GPIO
29104     module 6, offset 11) can be used to check for board revision. If this pin
29105     is low, we have a rev C board. Else it must be a revision Ax or Bx board.
29107     To handle board differences you can call function beagle_get_revision().
29108     E.g.:
29110     if (beagle_get_revision()) {
29112     /* do special revision C stuff here */
29114     }
29116     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
29118 commit 288f3cd912918b97919d13b6f7fb13fbddf74d68
29119 Author: Dirk Behme <dirk.behme@googlemail.com>
29120 Date:   Thu Feb 12 18:55:40 2009 +0100
29122     OMAP3: Overo: Clean up pin mux and GPIO configuration
29124     * Make Overo GPIO114 an input for touchscreen PENDOWN
29125     * Make Overo GPIO144-147 readable
29126     * Make Overo EHCI pinmux match beagle rev c setup
29127     * Adjust pinmux for SMSC911X network chip support
29128     * Remove unnecessary GPIO setup
29129     * Fix merge error in Makefile
29131     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
29132     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
29134 commit 2579019b8248e5f166e60e37065766efc8a49dbc
29135 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29136 Date:   Sun Feb 22 17:08:41 2009 +0100
29138     nmdk8815: fix onenand support
29140     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29142 commit 0176c03a2469676df5bf19cf93a1a6f582f6a120
29143 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29144 Date:   Sun Feb 22 17:56:50 2009 +0100
29146     nomadik/nand: fix 'ecc512' discards qualifiers from pointer target type
29148     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29150 commit 9751a456f702ba2fcdfd1bdbc0138927ef007858
29151 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29152 Date:   Sun Feb 22 17:49:43 2009 +0100
29154     davinci: fix implicit declaration of function 'davinci_errata_workarounds'
29156     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29158 commit 4f5728987f4f9f7845688482aa2b7f2127768165
29159 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29160 Date:   Sun Feb 22 15:49:28 2009 +0100
29162     arm: add uart dcc support
29164     Serial driver via the EmbeddedICE macrocell's DCC channel using
29165     co-processor 14.
29167     It does include a timeout to ensure that the system does not
29168     totally freeze when there is nothing connected to read.
29170     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29172 commit 0cd18fa982f9a8c1a90ce971379a7d6408976d48
29173 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
29174 Date:   Fri Nov 21 14:35:56 2008 -0500
29176     ARM DaVinci: Add common peripherals and modules enable functions.
29178     Taken all the duplicated code for enabling common modules and apply
29179     software workarounds from the board specific code into common
29180     functions. Also added comments explaining the workarounds
29181     (from TI errata documents) and replaced some numerical bit numbers
29182     with more meaningful defines.
29184     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
29186 commit d3be1bcae7a8207e0a79ffd035d0e90f80378295
29187 Author: Alessandro Rubini <rubini@unipv.it>
29188 Date:   Mon Feb 9 15:53:33 2009 +0100
29190     Enable Ethernet for Nomadik 8815 Evaluation Kit
29192     This trivially enables Ethernet support in the debug board
29193     by setting up the proper chip select.
29195     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
29196     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
29198 commit 0d8c6eab2481046e9446264bfe9402bb98ddf433
29199 Author: Alessandro Rubini <rubini@unipv.it>
29200 Date:   Mon Feb 9 15:53:31 2009 +0100
29202     Nand driver for Nomadik SoC
29204     This driver implements the ECC algorithm described in
29205     the CPU data sheet and uses the OOB layout chosen in
29206     already-released development systems (shipped with a custom-made
29207     u-boot 1.3.1).
29209     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
29210     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
29212 commit ef339cc2b68e4cbef3f9376a45315e1b974bbd8d
29213 Author: Alessandro Rubini <rubini@unipv.it>
29214 Date:   Mon Feb 9 15:53:31 2009 +0100
29216     Added nomadik.h header
29218     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
29219     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
29221 commit 60ece6d8043d1dd80f5dd32c541213716d624b19
29222 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29223 Date:   Wed Oct 29 20:05:18 2008 +0900
29225     r8a66597-hcd: fix cannot use external hub
29227     Fix the problem that cannot use external hub, because this driver
29228     did not control correctly a DEVADDx register.
29230     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
29231     Signed-off-by: Remy Bohmer <linux@bohmer.net>
29233 commit e1ffaee728190e76a4596a3579d94e730143585f
29234 Author: Mike Frysinger <vapier@gentoo.org>
29235 Date:   Thu Feb 19 01:20:27 2009 -0500
29237     Blackfin: disable syscontrol code for now
29239     Looks like the initcode updates fell out of order during my merges.  The
29240     patch that really fixes up this code is part of power-on overhaul and so
29241     is too large for merging at this point.  Instead, we can disable the code
29242     as no currently in-tree board depends on it.  The next merge window will
29243     fix things up properly.
29245     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29247 commit 1b228d68f54832edd867ef98520f760f68192ab7
29248 Author: Mike Frysinger <vapier@gentoo.org>
29249 Date:   Thu Feb 19 01:19:49 2009 -0500
29251     Blackfin: bf537-stamp: fix I2C board defines
29253     The previous merge for cleaning up the I2C driver incorrectly reverted the
29254     CFG_xxx rename for some of the I2C defines.
29256     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29257     Signed-off-by: Heiko Schocher <hs@denx.de>
29259 commit 09fee8e8677a6265e89144ccc163bf00e321769e
29260 Author: Wolfgang Denk <wd@denx.de>
29261 Date:   Sun Feb 22 01:19:52 2009 +0100
29263     Coding Style cleanup; update CHANGELOG
29265     Signed-off-by: Wolfgang Denk <wd@denx.de>
29267 commit 1dcb50afbb63a439320a985380a0af2dca079d1e
29268 Author: Wolfgang Denk <wd@denx.de>
29269 Date:   Sun Feb 22 01:17:47 2009 +0100
29271     Makefile: fix cleanup
29273     Commit e4943ec5 moved the ARM boards to a vendor directory but forgot
29274     to adapt the cleanup rules in the Makefile
29276     Signed-off-by: Wolfgang Denk <wd@denx.de>
29278 commit edff7bcc4d5540df8b416274652ff02e94c38b9e
29279 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
29280 Date:   Fri Feb 20 13:01:56 2009 -0500
29282     Cleanup the comment for m68k linux boot argument passing.
29284     This patch clarifies the way m68k passes linux boot argument.
29285     The one gotcha here is that the assembly instruction that
29286     the compiler uses to jump to the kernel is 'jsr' which pushes the
29287     program counter for the instruction after the jsr into the stack pointer.
29289     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
29290     Signed-off-by: Wolfgang Denk <wd@denx.de>
29292 commit 4d41650eec959668280a612467bd95c7b8398513
29293 Author: Peter Griffin <pgriffin@mpc-data.co.uk>
29294 Date:   Tue Feb 10 16:44:45 2009 +0000
29296     sh: Fix rsk7203 in tree build
29298     Signed-off-by: Peter Griffin <pgriffin@mpc-data.co.uk>
29300 commit fca0cecff73db99d99ad094cca7980472b8a11b5
29301 Author: Minkyu Kang <mk7.kang@samsung.com>
29302 Date:   Wed Feb 18 09:05:52 2009 +0900
29304     bootm: Reduce the unnecessary memmove
29306     Although load address and image start address are same address,
29307     bootm command always does memmove.
29308     That is unnecessary memmove and can be taken few milliseconds
29309     (about 500 msec to 1000 msec).
29310     If skip this memmove, we can reduce the boot time.
29312     Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
29314 commit 670cbde8da83690fed1064c3358f54ae1d693ed2
29315 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
29316 Date:   Sun Feb 15 22:29:15 2009 +0100
29318     fpga: Fix Spartan III FPGA booting
29320     This patch does some minor fixing of the Xilinx Spartan III
29321     FPGA boot code:
29323     - Fixed call order of post configuration callback and
29324       success message printing (result of copy-paste?)
29325     - remove obsolete comment
29326     - minor coding style cleanup
29328     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29330 commit 3818b677641038d27b2663fbd6771ad38c932f86
29331 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
29332 Date:   Sun Feb 15 22:28:36 2009 +0100
29334     fpga: Fix Spartan II FPGA booting
29336     This patch does some minor fixing of the Xilinx Spartan II
29337     FPGA boot code:
29339     - Fixed call order of post configuration callback and
29340       success message printing (result of copy-paste?)
29341     - relocate post configuration callback only when it
29342       is implemented
29343     - remove obsolete comment
29344     - minor coding style cleanup
29346     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29348 commit b4746d8bf9f4ed6dc8a76c5d52db669604aff84b
29349 Author: Mike Frysinger <vapier@gentoo.org>
29350 Date:   Wed Feb 11 20:26:52 2009 -0500
29352     drivers/serial/ns16550: move ifdef into Makefile COBJS-$(...)
29354     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29356 commit 6bcb4b806cef8a5dd08fac9a4a672b96d9ee804e
29357 Author: Derek Ou <dou@siconix.com>
29358 Date:   Tue Feb 3 16:00:07 2009 -0700
29360     lcd_putc bug fix for tab.
29362     Signed-off-by: Derek Ou <dou@siconix.com>
29364 commit 35c9e14d8096e519fe76c953a43d52a09617345c
29365 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
29366 Date:   Mon Feb 2 09:46:21 2009 +0900
29368     MIPS: cpu/mips/Makefile: Add a missing START line
29370     In the commit 79b51ff8205f0354d5300570614c1d2db499679c ([MIPS] cpu/mips/
29371     Makefile: Split [CS]OBJS onto separate lines), I wrongly deleted a START
29372     line.  This patch puts it back.
29374     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
29376 commit 9a63b7f4f8f3c99cf017e0d3d4a152dfcd913b5a
29377 Author: Wolfgang Denk <wd@denx.de>
29378 Date:   Sat Feb 21 21:51:21 2009 +0100
29380     Enable ext2 support for TQM8xxL/M based boards
29382     Signed-off-by: Wolfgang Denk <wd@denx.de>
29384 commit e3ba7f137c7c454ad626cd0bd2e84d73c7a8644f
29385 Author: Tom Rix <Tom.Rix@windriver.com>
29386 Date:   Fri Feb 20 03:47:50 2009 +0100
29388     ARM:PXA Use new definitions in mmc.h
29390     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
29391     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29393 commit 682beeac34dc9ab18fab58b26973d2e29d113717
29394 Author: Andy Fleming <afleming@freescale.com>
29395 Date:   Fri Feb 20 03:47:50 2009 +0100
29397     Reduce the scope of PXA's mmc_read/mmc_write/mmc_bread functions
29399     These names are being taken over by the new MMC framework.  Hopefuly
29400     the PXA can be easily ported, and these functions will go away entirely.
29402     Signed-off-by: Andy Fleming <afleming@freescale.com>
29403     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29405 commit b03d92e5584935886ff91d5aa0755dc8888b7187
29406 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29407 Date:   Fri Feb 20 03:47:50 2009 +0100
29409     pxa: move mmc drivers to drivers/mmc
29411     introduce new macro CONFIG_PXA_MMC to activate it
29413     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29415 commit 9490f465642c80c054854689a2ef1a77d65cf1f3
29416 Author: Tom Rix <Tom.Rix@windriver.com>
29417 Date:   Thu Feb 19 19:27:22 2009 -0600
29419     ARM:PXA Remove redefinition of mmc_cid and mmc_csd.
29421     These structures are defined in the common mmc.h
29423     This was compile checked on cerf250.
29425 commit 94a3312920b6f9b5da27309549fb73650718c10a
29426 Author: Micha Kalfon <smichak.uv@gmail.com>
29427 Date:   Wed Feb 11 19:50:11 2009 +0200
29429     pxa: fixing get_timer to return time in miliseconds.
29431     Fixing the get_timer function to return time in miliseconds instead of
29432     ticks. Also fixed PXA boards to use the conventional value of 1000 for
29433     CONFIG_SYS_HZ.
29435     Signed-off-by: Micha Kalfon <smichak.uv@gmail.com>
29437 commit e5e88c3614b79b54719905f66aefb51f9494bc1f
29438 Author: Tom Rix <Tom.Rix@windriver.com>
29439 Date:   Thu Feb 19 16:45:43 2009 -0600
29441     ARM:OMAP3 Change mmc_init to mmc_legacy_init
29443     omap3_mmc.c was changed to define mmc_legacy_init.
29444     Remove unused functions.
29446     Compile tested on all arm
29447     Runtime tested on Zoom1.
29449     Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
29451 commit 9e80bb21629988063574f88ca0d28baadff4d963
29452 Author: Heiko Schocher <hs@denx.de>
29453 Date:   Thu Feb 19 17:23:58 2009 +0100
29455     82xx, mgcoge: updates for 2009.03
29457     - activate CS4 for accessing the FPGA
29458     - activate Rx buf len > 1 on SMC
29459     - pram activated
29460     - MTDPARTS_DEFAULT defined
29461     - update the size of the flashes in the DTS
29462       before booting Linux
29463     - MONITOR_LEN updated to 384k
29464     - added CONFIG_HOSTNAME
29465     - added CONFIG_ENV_BUFFER_PRINT
29466     - Environment size reduced to 16k
29468     Signed-off-by: Heiko Schocher <hs@denx.de>
29470 commit df909554e2401f307925e1bd45d576e4176d9de9
29471 Author: Heiko Schocher <hs@denx.de>
29472 Date:   Thu Feb 19 17:24:01 2009 +0100
29474     8xx, mgsuvd: updates for 2009.03
29476     - activate Rx buf len > 1 on SMC
29477     - pram activated
29478     - MTDPARTS_DEFAULT defined
29479     - update the size of the flash in the DTS
29480       before booting Linux
29481     - MONITOR_LEN updated to 384k
29482     - added CONFIG_HOSTNAME
29483     - added CONFIG_ENV_BUFFER_PRINT
29484     - Environment size reduced to 16k
29486     Signed-off-by: Heiko Schocher <hs@denx.de>
29488 commit 3511b4e208e12be85b532866f1c660aa2e021557
29489 Author: Dirk Behme <dirk.behme@googlemail.com>
29490 Date:   Wed Feb 18 19:59:39 2009 +0100
29492     MMC: Don't use new framework code if not enabled
29494     Don't use code of new MMC framework in cmd_mmc if CONFIG_GENERIC_MMC
29495     isn't enabled.
29497     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
29499 commit 32482be67775e00b4cbc49fba62347c1ecc6229c
29500 Author: Wolfgang Denk <wd@denx.de>
29501 Date:   Thu Feb 19 13:53:29 2009 +0100
29503     TQM8xxL: make some room in low memory for future needs
29505     THe TQM8xxL use a ahnd-optimized linker script to efficiently use the
29506     small boot sectors in the flash. This patch makes some room in the
29507     first sector to prepare for a size increase of lib_generic/vsprintf.o
29508     by a future patch.
29510     Signed-off-by: Wolfgang Denk <wd@denx.de>
29512 commit c157cec3c3f6dfc194532b3a3ca87f85b642962a
29513 Author: Kim Phillips <kim.phillips@freescale.com>
29514 Date:   Wed Feb 18 18:06:18 2009 -0600
29516     README: remove duplicate entry
29518     it's been around since the original commit (2ad6b513) that added two
29519     identical entries.
29521     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29523 commit 1bba30efe1717bea13026e15c7c7d906419fac69
29524 Author: Wolfgang Denk <wd@denx.de>
29525 Date:   Thu Feb 19 00:41:08 2009 +0100
29527     Coding style cleanup, update CHANGELOG
29529     Signed-off-by: Wolfgang Denk <wd@denx.de>
29531 commit 369d0aa9674b65c83f8553b9bcf9d207dc369223
29532 Author: Kim Phillips <kim.phillips@freescale.com>
29533 Date:   Wed Feb 18 17:43:59 2009 -0600
29535     sata_sil3114: fix compiler warning
29537     judging from other printfs in the same file, it seems ata should be
29538     postpended with the interface number, not the address of the global
29539     port variable.  Fixes this for current u-boot-mpc83xx tree:
29541     Configuring for MPC8349ITX board...
29542     sata_sil3114.c: In function 'sata_bus_softreset':
29543     sata_sil3114.c:99: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
29544     sata_sil3114.c:108: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
29546     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29548 commit f5675aa5ceeef30740970ab8ca0c8cbc324945cd
29549 Author: Ron Madrid <ron_madrid@sbcglobal.net>
29550 Date:   Wed Feb 18 14:30:44 2009 -0800
29552     Create configuration option for restricted ns16550 functions
29554     This patch will create a configuration option for a minimum configuration for
29555     the ns16550 serial driver at drivers/serial/ns16550.c and will apply this new
29556     configuration option to the SIMPC8313.h config file in order to fix the NAND
29557     bootstrap build error.  This option will exclude all functions with exception of
29558     NS16550_putc and NS16550_init.  This will be used primarily to save space and
29559     remove unused code from builds in which space is limited.
29561     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
29563 commit 7b0bc0219db8981613259473cf19699ac259b4fb
29564 Author: Kim Phillips <kim.phillips@freescale.com>
29565 Date:   Wed Feb 18 16:14:29 2009 -0600
29567     mkconfig: include board config.h before asm/config.h
29569     swapping the include order suppresses warnings for board configs
29570     that define their own CONFIG_MAX_MEM_MAPPED:
29572     In file included from /home/r1aaha/git/u-boot/include/config.h:5,
29573                     from /home/r1aaha/git/u-boot/include/common.h:35,
29574                     from simpc8313.c:26:
29575     /home/r1aaha/git/u-boot/include/configs/SIMPC8313.h:81:1: warning:
29576     "CONFIG_MAX_MEM_MAPPED" redefined
29577     In file included from /home/r1aaha/git/u-boot/include/config.h:4,
29578                     from /home/r1aaha/git/u-boot/include/common.h:35,
29579                     from simpc8313.c:26:
29580     /home/r1aaha/git/u-boot/include/asm/config.h:28:1: warning: this is
29581     the location of the previous definition
29583     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29585 commit b8845abdc0dcf20d0944e965153f5ae7a9c3077c
29586 Author: Wolfgang Denk <wd@denx.de>
29587 Date:   Wed Feb 18 21:35:38 2009 +0100
29589     Fix build errors after making flash_get_info() non-static
29591     Fix for these build problems:
29592     error: static declaration of 'flash_get_info' follows non-static declaration
29594     Signed-off-by: Wolfgang Denk <wd@denx.de>
29596 commit b4996d6b2140e5da7f1c346f37a67b19907b307a
29597 Author: Stefan Roese <sr@denx.de>
29598 Date:   Wed Feb 18 13:18:00 2009 +0100
29600     ppc4xx: PCIe: Change 16GB inbound memory to 4GB
29602     This patch fixes a problem recently seen on some 4xx platforms. For
29603     example on Kilauea PCIe slot #0.
29605     Signed-off-by: Stefan Roese <sr@denx.de>
29607 commit f50fe4bd613c6d35a2c34055f02e9501dd6a9ad5
29608 Author: Stefan Roese <sr@denx.de>
29609 Date:   Wed Feb 18 14:05:37 2009 +0100
29611     ppc4xx: Some more PMC405 coding-style cleanup
29613     Signed-off-by: Stefan Roese <sr@denx.de>
29615 commit 2f6eb9170bf91b72ea51dcea2a8b9c11b0e20bc5
29616 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
29617 Date:   Sun Feb 15 22:27:47 2009 +0100
29619     ppc4xx: Update PMC405 board support
29621     This patch prepares the good old PMC405 board support for
29622     upcoming PMC405V2 patches.
29624     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29625     Signed-off-by: Stefan Roese <sr@denx.de>
29627 commit c553b5f4a0c77fc76e1d25e71c8aaa47657e2d6f
29628 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
29629 Date:   Sun Feb 15 22:26:54 2009 +0100
29631     ppc4xx: Cleanup PMC405 board support
29633     This patch fixes coding style for PMC405 board support.
29634     Also some unneeded features/code is removed.
29636     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29637     Signed-off-by: Stefan Roese <sr@denx.de>
29639 commit b4e85d0f37b5b924fbf834867ad6d0b31b86f667
29640 Author: Ilya Yanok <yanok@emcraft.com>
29641 Date:   Thu Feb 5 04:08:20 2009 +0100
29643     qong: changes to Dave/DENX Qong configuration
29645     1. Changes to the default environment:
29646       - "bootcmd" defined as "run flash_self"
29647       - "saveenv" command removed from "update"
29648       - "uboot" changed to "u-boot" (also in "load")
29649       - "addmtd" variable defined (and added to all boot commands)
29650     2. CONFIG_CMD_JFFS2 defined to enable "mtdparts" command
29651     3. MTDIDS_DEFAULT and MTDPARTS_DEFAULT defined
29652     4. CONFIG_SYS_CBSIZE changed from 256 to 512. That solves the problem
29653     with truncated "bootargs" environment variable.
29655     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29657 commit 5f0320108870e5d62983d1d5c13a2a087dddf686
29658 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29659 Date:   Sun Feb 1 17:07:52 2009 +0100
29661     common/console: avoid ifdef CONFIG_CONSOLE_MUX when it's possible
29663     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29665 commit ec6f14994602276660f7264c6ab3b91ef1f7614d
29666 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29667 Date:   Sun Feb 1 17:07:51 2009 +0100
29669     common/console: coding style cleanup
29671     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29673 commit daaf74f176b548dfd34a9990231f4189201d57ba
29674 Author: Mike Frysinger <vapier@gentoo.org>
29675 Date:   Thu Jan 29 20:02:23 2009 -0500
29677     mpc8xx_pcmcia: move CONFIG_8xx out of .c file and into Makefile
29679     Move the CONFIG_8xx mpc8xx_pcmcia.c protection out of the C file and
29680     into the Makefile so we avoid pointless compiling of the file.
29682     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29684 commit 7bd2722e890bc877a3c057d7ccddc80451c99939
29685 Author: Mike Frysinger <vapier@gentoo.org>
29686 Date:   Thu Jan 29 20:02:07 2009 -0500
29688     disk: convert part_* files to COBJ-$(CONFIG_XXX) style
29690     Move the CONFIG_XXX out of the part_XXX.c file and into Makefile to
29691     avoid pointless compiles.
29693     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29695 commit f05fa9205e04986176dc7ab8b710bcb5fbe9f338
29696 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
29697 Date:   Thu Jan 29 10:35:40 2009 +0200
29699     include/image.h: Ease grepping of image_* functions
29701     Because the functions have been defined using macros, grepping for
29702     their definitions is not possible. This patch adds the real function
29703     names in comments.
29705     Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
29706     Acked-by: Mike Frysinger <vapier@gentoo.org>
29708 commit bdab39d358e63aa47f400a8a76b8d5f283842df3
29709 Author: Mike Frysinger <vapier@gentoo.org>
29710 Date:   Wed Jan 28 19:08:14 2009 -0500
29712     rename CONFIG_CMD_ENV to CONFIG_CMD_SAVEENV
29714     The CONFIG_CMD_ENV option controls enablement of the `saveenv` command
29715     rather than a generic "env" command, or anything else related to the
29716     environment.  So, let's make sure the define is named accordingly.
29718     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29720 commit 8b0592b89e0f9f81c9e150c81d96f8a43e4d6101
29721 Author: Valeriy Glushkov <gvv@lstec.com>
29722 Date:   Fri Jan 23 20:02:17 2009 +0200
29724     disable imls command if no flash is defined
29726     Default CONFIG_CMD_IMLS must be disabled when CONFIG_SYS_NO_FLASH is defined
29728     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
29730 commit 923aa48126259c13de95131203f1d28bfa5cb889
29731 Author: Rafal Jaworowski <raj@semihalf.com>
29732 Date:   Fri Jan 23 13:27:18 2009 +0100
29734     API: Improve glue mid-layer of the API demo application.
29736     - Extend ub_dev_read() and ub_dev_recv() so they return the length actually
29737     read, which allows for better control and error handling (this introduces
29738     additional error code API_ESYSC returned by the glue mid-layer).
29740     - Clean up definitions naming and usage.
29742     - Other minor cosmetics.
29744     Note these changes do not touch the API proper, so the interface between
29745     U-Boot and standalone applications remains unchanged.
29747     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
29749 commit 44a94e596ba0f6d0951b165403c520bf55b1c56f
29750 Author: Rafal Jaworowski <raj@semihalf.com>
29751 Date:   Fri Jan 23 13:27:17 2009 +0100
29753     API: Only output test data when reading was successful.
29755     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
29757 commit 7fb6c4f9b06c5539043c8bfc6565710b8090841d
29758 Author: Rafal Jaworowski <raj@semihalf.com>
29759 Date:   Fri Jan 23 13:27:16 2009 +0100
29761     API: Provide syscall entry point for the ARM architecture.
29763     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
29764     Acked-by: Rafal Jaworowski <raj@semihalf.com>
29766 commit b84d7d8f1e1066f810866304a16a3583f88e7c98
29767 Author: Rafal Jaworowski <raj@semihalf.com>
29768 Date:   Fri Jan 23 13:27:15 2009 +0100
29770     API: Use stack pointer as API signature search hint in the glue layer.
29772     De-hardcode range in RAM we search for the API signature. Instead use the stack
29773     pointer as a hint to narrow down the range in which the signature could reside
29774     (it is malloc'ed on the U-Boot heap, and is hoped to remain in some proximity
29775     from stack area). Adjust PowerPC code in API demo to the new scheme.
29777     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
29778     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
29780 commit 86b4bafdfaf669ede8fd99044abc7e27ea29b4f5
29781 Author: Wolfgang Denk <wd@denx.de>
29782 Date:   Tue Feb 17 10:26:38 2009 +0100
29784     TQM8260: fix locations of kernel and ramdisk images in flash
29786     After introducing redundant environment the kernel images was
29787     overlapping with environment.
29789     Signed-off-by: Wolfgang Denk <wd@denx.de>
29791 commit 2b68b23373f96199a0cafbfd7a9f79ed62381ebb
29792 Author: Heiko Schocher <hs@denx.de>
29793 Date:   Wed Feb 11 19:26:15 2009 +0100
29795     83xx: add missing TIMING_CFG1_CASLAT_* defines
29797     Signed-off-by: Heiko Schocher <hs@denx.de>
29798     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29800 commit c9e34fe2e86f7b6cc8260f4b24cbdc7dd81e04c5
29801 Author: Valeriy Glushkov <gvv@lstec.com>
29802 Date:   Thu Feb 5 14:35:21 2009 +0200
29804     mpc8349itx: allow SATA boot from the onboard SIL1334
29806     This patch allows using of SATA devices connected
29807     to the onboard PCI SIL1334 SATA controller.
29809     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
29810     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29812 commit e1ac387f4645499746856adc1aeaa9787da2eca6
29813 Author: Andy Fleming <afleming@freescale.com>
29814 Date:   Thu Oct 30 16:50:14 2008 -0500
29816     83xx: Add eSDHC support on 8379 EMDS board
29818     Signed-off-by: Andy Fleming <afleming@freescale.com>
29820 commit 80522dc8369a89938369fbcee572e662373bc9a3
29821 Author: Andy Fleming <afleming@freescale.com>
29822 Date:   Thu Oct 30 16:51:33 2008 -0500
29824     85xx: Add eSDHC support for 8536 DS
29826     Signed-off-by: Andy Fleming <afleming@freescale.com>
29828 commit 50586ef24ed5caf6ce5591df76f355009da2cd79
29829 Author: Andy Fleming <afleming@freescale.com>
29830 Date:   Thu Oct 30 16:47:16 2008 -0500
29832     Add support for the Freescale eSDHC found on 8379 and 8536 SoCs
29834     This uses the new MMC framework
29836     Some contributions by Dave Liu <daveliu@freescale.com>
29838     Signed-off-by: Andy Fleming <afleming@freescale.com>
29840 commit 272cc70b211e945e4413122aa73868f6ada732a5
29841 Author: Andy Fleming <afleming@freescale.com>
29842 Date:   Thu Oct 30 16:41:01 2008 -0500
29844     Add MMC Framework
29846     Here's a new framework (based roughly off the linux one) for managing
29847     MMC controllers.  It handles all of the standard SD/MMC transactions,
29848     leaving the host drivers to implement only what is necessary to
29849     deal with their specific hardware.
29851     This also hooks the infrastructure into the PowerPC board code
29852     (similar to how the ethernet infrastructure now hooks in)
29854     Some of this code was contributed by Dave Liu <daveliu@freescale.com>
29856     Signed-off-by: Andy Fleming <afleming@freescale.com>
29858 commit 1de97f9856f697380cc504126ab92561ed238803
29859 Author: Andy Fleming <afleming@freescale.com>
29860 Date:   Thu Oct 30 16:31:39 2008 -0500
29862     Eliminated arch-specific mmc header requirement
29864     The current MMC infrastructure relies on the existence of an
29865     arch-specific header file.  This isn't necessary, and a couple
29866     drivers were forced to implement dummy files to meet this requirement.
29867     Instead, we move the stuff in those header files into a more appropriate
29868     place, and eliminate the stubs and the #include of asm/arch/mmc.h
29870     Signed-off-by: Andy Fleming <afleming@freescale.com>
29872 commit abb5466ccf4ce50f412d459586f4f4b81cb73ac3
29873 Author: Andy Fleming <afleming@freescale.com>
29874 Date:   Thu Oct 30 16:21:00 2008 -0500
29876     Convert mmc_init to mmc_legacy_init
29878     This is to get it out of the way of incoming MMC framework
29880     Signed-off-by: Andy Fleming <afleming@freescale.com>
29882 commit b2e2ed0233a5ef299361abec4fbdaefb63456eff
29883 Author: Andy Fleming <afleming@freescale.com>
29884 Date:   Thu Oct 30 16:19:25 2008 -0500
29886     Eliminate support for using MMC as memory
29888     MMC cards are not memory, so we stop treating them that way.
29890     Signed-off-by: Andy Fleming <afleming@freescale.com>
29892 commit e1be0d25ecf494ae81245ca438738ba839d6329b
29893 Author: Poonam_Aggrwal-b10812 <b10812@freescale.com>
29894 Date:   Sun Jan 4 08:46:38 2009 +0530
29896     32bit BUg fix for DDR2 on 8572
29898     This errata fix is required for 32 bit DDR2 controller on 8572.
29899     May  also be required for P10XX20XX platforms
29901     Signed-off-by: Poonam_Agarwal-b10812 <b10812@lc1106.zin33.ap.freescale.net>
29903 commit e0c4fac79d4d74572ddd43f75e7189cecca8d0ad
29904 Author: Andy Fleming <afleming@freescale.com>
29905 Date:   Mon Feb 16 09:40:20 2009 -0600
29907     TQM85xx: Fix a couple warnings in TQM8548 build
29909     The ecm variable in sdram.c was being declared for all 8548, but only
29910     used by specific 8548 boards, so we make that variable require those
29911     specific boards, too
29913     The nand code was using an index "i" into a table, and then re-using "i"
29914     to set addresses for each upm.  However, then it relied on the old value
29915     of i still being there to enable things.  Changed the second "i" to "j"
29917     Signed-off-by: Andy Fleming <afleming@freescale.com>
29919 commit cf07a5baece0ecfc5284cfda8a4e68eaf92782f8
29920 Author: Wolfgang Grandegger <wg@grandegger.com>
29921 Date:   Wed Feb 11 18:38:26 2009 +0100
29923     MPC85xx: TQM8548: workaround for erratum DDR 19 and 20
29925     This patch adds the workaround for erratum DDR20 according to MPC8548
29926     Device Errata document, Rev. 1: "CKE signal may not function correctly
29927     after assertion of HRESET". Furthermore, the bug DDR19 is fixed in
29928     processor version 2.1 and the work-around must be removed.
29930     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
29932 commit 080408fdc71706adcb883d22125637c54f6010b1
29933 Author: Wolfgang Grandegger <wg@grandegger.com>
29934 Date:   Wed Feb 11 18:38:25 2009 +0100
29936     MPC85xx: TQM8548: use cache for AG and BE variants
29938     This patch makes accesses to the system memory cachable by removing the
29939     caching-inhibited and guarded flags from the relevant TLB entries for
29940     the TQM8548_BE and TQM8548_AG modules. FYI, the Freescale MPC85* boards
29941     are configured similarly.
29943     This results in a big averall performace improvement. TFTP downloads,
29944     NAND Flash accesses, kernel boots, etc. are much faster.
29946     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
29948 commit dc5f55d636d7bf21ba17758fac4b929ec4c059f2
29949 Author: Wolfgang Grandegger <wg@grandegger.com>
29950 Date:   Wed Feb 11 18:38:24 2009 +0100
29952     MPC85xx: TQM8548_AG: add 1 GiB DDR2-SDRAM configuration
29954     This patch add support for the 1 GiB DDR2-SDRAM on the TQM8548_AG
29955     module.
29957     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
29958     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
29960 commit 88b0e88d186479349e5a2b771e82775109e10fb4
29961 Author: Wolfgang Grandegger <wg@grandegger.com>
29962 Date:   Wed Feb 11 18:38:23 2009 +0100
29964     MPC85xx: TQM8548: fix SDRAM timing for 533 MHz
29966     According to new TQM8548 timing specification:
29967     Refresh Recovery: 34 -> 53 clocks
29968     CKE pulse width:  1 -> 3 cycles
29969     Window for four activities: 13 -> 14 cycles
29971     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
29972     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
29974 commit a865bcdac89278cac4dfc07dec8299403110499d
29975 Author: Wolfgang Grandegger <wg@grandegger.com>
29976 Date:   Wed Feb 11 18:38:22 2009 +0100
29978     MPC85xx: TQM8548: add support for the TQM8548_AG module
29980     The TQM8548_AG is a variant of the TQM8548 module with 1 GiB memory,
29981     CAN and without PCI/PCI-X and RTC. U-Boot can be built for this module
29982     with "$ make TQM8548_AG_config".
29984     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
29986 commit ad7ee5d43b0db94079d56521dabca25674f28747
29987 Author: Wolfgang Grandegger <wg@grandegger.com>
29988 Date:   Wed Feb 11 18:38:21 2009 +0100
29990     MPC85xx: TQM8548: add support for the TQM8548_BE module
29992     The TQM8548_BE is a variant of the TQM8548 module with NAND and CAN
29993     interface. With NAND support, the image is significantly larger and
29994     TEXT_BASE is adjusted accordingly. U-Boot can be built for this
29995     module with "$ make TQM8548_BE_config".
29997     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
29999 commit a318234878c346e673b2ef8dc4b14b338fe7fc2b
30000 Author: Wolfgang Grandegger <wg@grandegger.com>
30001 Date:   Wed Feb 11 18:38:20 2009 +0100
30003     MPC85xx: TQM85xx: make standard PCI/PCI-X configurable
30005     The TQM8548_AG module does not have the standard PCI/PCI-X interface
30006     connected but just the PCI Express interface . So far it was not
30007     possible to disable it without disabling the complete PCI interface
30008     (CONFIG_PCI) including PCI Express.
30010     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
30012 commit 31ca9119c3186cec579b54d2a7a2b361b4d2b7bf
30013 Author: Wolfgang Grandegger <wg@grandegger.com>
30014 Date:   Wed Feb 11 18:38:19 2009 +0100
30016     MPC85xx: TQM85xx: fix flash protection for boot loader
30018     As the reset vector is located at 0xfffffffc, all flash sectors from the
30019     beginning of the U-Boot binary to 0xffffffff must be protected. On the
30020     TQM8548-AG having small sectors at the end of the flash it happened that
30021     the last two sector were not protected and an "erase all" left an
30022     un-bootable system behind:
30024     Bank # 2: CFI conformant FLASH (32 x 16)  Size: 32 MB in 270 Sectors
30025       AMD Standard command set, Manufacturer ID: 0xEC, Device ID: 0x257E
30026       Erase timeout: 8192 ms, write timeout: 1 ms
30028       FFFA0000 E RO   FFFC0000   RO   FFFE0000   RO   FFFE4000   RO   FFFE8000   RO
30029       FFFEC000   RO   FFFF0000   RO   FFFF4000   RO   FFFF8000 E      FFFFC000
30031     The same bug seems to be in drivers/mtd/cfi_flash.c:flash_init() and many
30032     board BSPs as well.
30034     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
30036 commit a1c8a719262151f97119e76166043ee3da3f97b2
30037 Author: Peter Tyser <ptyser@xes-inc.com>
30038 Date:   Fri Feb 6 14:30:40 2009 -0600
30040     86xx: Update CPU info output on bootup
30042     - Update style of 86xx CPU information on boot to more closely
30043       match 85xx boards
30044     - Fix detection of 8641/8641D
30045     - Use strmhz() to display frequencies
30046     - Display L1 information
30047     - Display L2 cache size
30048     - Fixed CPU/SVR version output
30050     == Before ==
30051     Freescale PowerPC
30052     CPU:
30053         Core: E600 Core 0, Version: 0.2, (0x80040202)
30054         System: Unknown, Version: 2.1, (0x80900121)
30055         Clocks: CPU:1066 MHz, MPX: 533 MHz, DDR: 266 MHz, LBC: 133 MHz
30056         L2: Enabled
30057     Board: X-ES XPedite5170 3U VPX SBC
30059     == After ==
30060     CPU:   8641D, Version: 2.1, (0x80900121)
30061     Core:  E600 Core 0, Version: 2.2, (0x80040202)
30062     Clock Configuration:
30063            CPU:1066.667 MHz, MPX:533.333 MHz
30064            DDR:266.667 MHz (533.333 MT/s data rate), LBC:133.333 MHz
30065     L1:    D-cache 32 KB enabled
30066            I-cache 32 KB enabled
30067     L2:    512 KB enabled
30068     Board: X-ES XPedite5170 3U VPX SBC
30070     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
30072 commit 22c00f8d7d454d77e759df58415d2d3f3d7e154c
30073 Author: Peter Tyser <ptyser@xes-inc.com>
30074 Date:   Thu Feb 5 11:25:24 2009 -0600
30076     86xx: Update Global Utilities structure
30078     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
30080 commit 4ef630df773e45806d701bf5d25c328778bb4cde
30081 Author: Peter Tyser <ptyser@xes-inc.com>
30082 Date:   Thu Feb 5 11:25:25 2009 -0600
30084     86xx: Reset update
30086     Update the 86xx reset sequence to try executing a board-specific reset
30087     function.  If the board-specific reset is not implemented or does not
30088     succeed, then assert #HRESET_REQ.  Using #HRESET_REQ is a more standard
30089     reset procedure than the previous method and allows all board
30090     peripherals to be reset if needed.
30092     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
30094 commit edf0e2524a8c6a3e91c009c496a0aa0ae89cd8ab
30095 Author: Kumar Gala <galak@kernel.crashing.org>
30096 Date:   Tue Feb 10 23:53:40 2009 -0600
30098     fsl-ddr: Allow system to boot if we have more than 4G of memory
30100     Previously if we >=4G of memory and !CONFIG_PHYS_64BIT we'd report
30101     an error and hang.  Instead of doing that since DDR is mapped in the
30102     lowest priority LAWs we setup the DDR controller and the max amount
30103     of memory we report back is what we can map (CONFIG_MAX_MEM_MAPPED)
30105     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30106     Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
30108 commit 8d949aff38cfb4388cbd73876e77bcd06d601f20
30109 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
30110 Date:   Wed Jan 21 17:17:33 2009 -0600
30112     mpc85xx: Add support for the P2020
30114     Added various p2020 processor specific details:
30115     * SVR for p2020, p2020E
30116     * immap updates for LAWs and DDR on p2020
30117     * LAW defines related to p2020
30119     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
30120     Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
30121     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30123 commit cb69e4de8702e108324e1c40363f30ef6f2e2918
30124 Author: Kumar Gala <galak@kernel.crashing.org>
30125 Date:   Tue Feb 10 17:36:15 2009 -0600
30127     85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS
30129     Added some info that is printed out when we boot to distiquish if we
30130     built MPC8572DS_config vs MPC8572DS_36BIT_config since they have
30131     different address maps.
30133     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30135 commit feede8b07013b33fca8dd2a916b3ac86bf4d4c0a
30136 Author: Andy Fleming <afleming@freescale.com>
30137 Date:   Fri Dec 5 20:10:22 2008 -0600
30139     Fixup SGMII PHY ids in the device tree
30141     The device tree's PHY addresses need to be fixed up if we're using the
30142     SGMII Riser Card.
30144     The 8572, 8536, and 8544 DS boards were modified to call this function.
30146     Code idea taken from Liu Yu <yu.liu@freescale.com>
30148     Signed-off-by: Andy Fleming <afleming@freescale.com>
30150 commit 5dc0cf68f8f101042997d75188081d8526d705ea
30151 Author: Andy Fleming <afleming@freescale.com>
30152 Date:   Wed Feb 11 15:10:31 2009 -0600
30154     Make some minor whitespace changes to eliminate line-wrapping
30156     Signed-off-by: Andy Fleming <afleming@freescale.com>
30158 commit 9e56986a2b74d197f51eca70fad7b836b1900c4d
30159 Author: Andy Fleming <afleming@freescale.com>
30160 Date:   Wed Feb 11 15:07:24 2009 -0600
30162     Add eth_get_dev_by_index
30164     This allows code to iterate through the ethernet devices
30166     Signed-off-by: Andy Fleming <afleming@freescale.com>
30168 commit b67305120aaf268a6140125346678166d14f1f47
30169 Author: Kumar Gala <galak@kernel.crashing.org>
30170 Date:   Mon Feb 9 22:03:04 2009 -0600
30172     85xx: Fix bug in device tree setup in 36-bit physical confg
30174     In the 36-bit physical config for MPC8572DS when need the start address
30175     of memory and it size to be kept in phys_*_t instead of a ulong since
30176     we support >4G of memory in the config and ulong cant represent that.
30177     Otherwise we end up seeing the memory node in the device tree reporting
30178     back we have memory starting @ 0 and of size 0.
30180     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30182 commit ad97dce18445ff05bf326094e691a01aa95aa8dc
30183 Author: Kumar Gala <galak@kernel.crashing.org>
30184 Date:   Mon Feb 9 22:03:05 2009 -0600
30186     85xx: Fix address map for 36-bit config of MPC8572DS
30188     When we introduced the 36-bit config of the MPC8572DS board we had the
30189     wrong PCI MEM bus address map.  Additionally, the change to the address
30190     map exposes a small issue in our dummy read on the ULI bus.  We need
30191     to use the new mapping functions to handle that read properly in the
30192     36-bit config.
30194     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30196 commit f8523cb0815b2d3d2d780b7d49ca614105555f58
30197 Author: Kumar Gala <galak@kernel.crashing.org>
30198 Date:   Fri Feb 6 09:56:35 2009 -0600
30200     85xx: Fix how we map DDR memory
30202     Previously we only allowed power-of-two memory sizes and didnt
30203     handle >2G of memory.  Now we will map up to CONFIG_MAX_MEM_MAPPED
30204     and should properly handle any size that we can make in the TLBs
30205     we have available to us
30207     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30209 commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
30210 Author: Kumar Gala <galak@kernel.crashing.org>
30211 Date:   Fri Feb 6 09:56:34 2009 -0600
30213     fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller
30215     If we only have one controller we can completely ignore how
30216     memctl_intlv_ctl is set.  Otherwise other levels of code get confused
30217     and think we have twice as much memory.
30219     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30221 commit b29dee3c906e9daaf6baf7772d2e15e26b8636b8
30222 Author: Kumar Gala <galak@kernel.crashing.org>
30223 Date:   Wed Feb 4 09:35:57 2009 -0600
30225     85xx: Format cpu freq printing to handle 8 cores
30227     Only print 4 cpu freq per line.  This way when we have 8 cores its a
30228     bit more readable.
30230     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30232 commit 9704f9caf53f5cae547d8c5e1ae94aa4e57b160f
30233 Author: Abraham, Thomas <t-abraham@ti.com>
30234 Date:   Tue Oct 28 16:51:31 2008 +0530
30236     USB: Remove LUN number from CDB
30238     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.
30240     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
30241     Signed-off-by: Remy Bohmer <linux@bohmer.net>
30243 commit f3c0de636252f3a18654c8f9c6370a9574a7e755
30244 Author: Atin Malaviya <atin.malaviya@gmail.com>
30245 Date:   Tue Feb 3 15:17:10 2009 -0500
30247     Added usbtty_configured() check. Fixed attribute(packed) warnings.
30249     V3: Fixed line-wrap problem due to user error in mail!
30251     Added usb_configured() checks in usbtty_puts() and usbtty_putc() to get around a hang
30252     when usb is not connected and the user has set up multi-io (setenv stdout serial,usbtty etc).
30253     Got rid of redundant __attribute__((packed)) directives that were causing warnings from gcc.
30255     Signed-off-by: Atin Malaviya <atin.malaviya@gmail.com>
30256     Signed-off-by: Remy Bohmer <linux@bohmer.net>
30258 commit e7de18afe8ecf96a51ef981d06066eeb6b1254e7
30259 Author: Guennadi Liakhovetski <lg@denx.de>
30260 Date:   Fri Feb 13 09:23:36 2009 +0100
30262     i.MX31: Start the I2C clock on driver initialisation
30264     i.MX31 powers on with most clocks running, so, after a power on this explicit
30265     clock start up is not required. However, as Linux boots it disables most clocks
30266     to save power. This includes the I2C clock. If we then soft reboot from Linux
30267     the I2C clock stays off. This breaks the phycore, which has its environment in
30268     I2C EEPROM. Fix the problem by explicitly starting the clock in I2C driver
30269     initialisation routine.
30271     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30272     Ack-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30274 commit 15208ac9eae1c340c4bc11f70cbf5c9da78a57ba
30275 Author: Mike Frysinger <vapier@gentoo.org>
30276 Date:   Wed Feb 11 20:36:14 2009 -0500
30278     i2c.h: drop i2c_reg_{read, write} hack for Blackfin parts
30280     The Blackfin i2c driver has been rewritten thus the special ifdefs in the
30281     common code are no longer needed.
30283     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30285 commit c2d9befa0b4695b89476fb5d259742c09afe243f
30286 Author: Heiko Schocher <hs@denx.de>
30287 Date:   Thu Feb 12 08:08:54 2009 +0100
30289     82xx, mgcoge: fix compile error
30291     With actual u-boot compiling the mgcoge port fails, because
30292     since commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56 it is
30293     necessary to define CONFIG_NET_MULTI.
30295     Seems to me the mgcoge port is the only actual existing 8260
30296     port who uses CONFIG_ETHER_ON_SCC, so no other 8260 port needed
30297     to be fixed.
30299     Signed-off-by: Heiko Schocher <hs@denx.de>
30301 commit 9cacf4fc4035eabe9d9ae2a9a188c51a8027c91e
30302 Author: Dirk Eibach <eibach@gdsys.de>
30303 Date:   Mon Feb 9 08:18:34 2009 +0100
30305     ppc4xx: Add README entry for CONFIG_PCI_DISABLE_PCIE
30307     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
30308     Signed-off-by: Stefan Roese <sr@denx.de>
30310 commit 7369f0e384e2a831be13a7773a58242c9173fa9c
30311 Author: Carolyn Smith <carolyn.smith@tektronix.com>
30312 Date:   Thu Feb 12 06:13:44 2009 +0100
30314     ppc4xx: Fix initialization of the SDRAM_CODT register
30316     This fixes the initialization of the SDRAM_CODT register in the ppc4xx DDR2
30317     initialization code. It also removes use of the SDRAM_CODT_FEEDBACK_RCV_SINGLE_END
30318     and SDRAM_CODT_FEEDBACK_DRV_SINGLE_END #define's since they are reserved bits.
30320     Signed-off-by: Carolyn Smith <carolyn.smith@tektronix.com>
30321     Signed-off-by: Stefan Roese <sr@denx.de>
30323 commit cef0efaf2fa55d1f25066cfb02bd984c27f9ca31
30324 Author: Stefan Roese <sr@denx.de>
30325 Date:   Wed Feb 11 09:29:33 2009 +0100
30327     ppc4xx: Fix problem with board_eth_init() vs cpu_eth_init() on AMCC boards
30329     Some AMCC eval boards do have a board_eth_init() function calling
30330     pci_eth_init(). These boards need to call cpu_eth_init() explicitly now
30331     with the new eth_init rework.
30333     Signed-off-by: Stefan Roese <sr@denx.de>
30335 commit c645012aefebb301e6907d148c6c8efacac049d4
30336 Author: Adam Graham <agraham@amcc.com>
30337 Date:   Mon Feb 9 13:18:12 2009 -0800
30339     ppc4xx: Autocalibration can set RDCC to over aggressive value.
30341     The criteria of the AMCC SDRAM Controller DDR autocalibration
30342     U-Boot code is to pick the largest passing write/read/compare
30343     window that also has the smallest SDRAM_RDCC.[RDSS] Read Sample
30344     Cycle Select value.
30346     On some Kilauea boards the DDR autocalibration algorithm can
30347     find a large passing write/read/compare window with a small
30348     SDRAM_RDCC.[RDSS] aggressive value of Read Sample Cycle Select
30349     value "T1 Sample".
30351     This SDRAM_RDCC.[RDSS] Read Sample Cycle Select value of
30352     "T1 Sample" proves to be to aggressive when later on U-Boot
30353     relocates into DDR memory and executes.
30355     The memory traces on the Kilauea board are short so on some
30356     Kilauea boards the SDRAM_RDCC.[RDSS] Read Sample Cycle Select
30357     value of "T1 Sample" shows up as a potentially valid value for
30358     the DDR autocalibratiion algorithm.
30360     The fix is to define a weak default function which provides
30361     the minimum SDRAM_RDCC.[RDSS] Read Sample Cycle Select value
30362     to accept for DDR autocalibration.  The default will be the
30363     "T2 Sample" value.  A board developer who has a well defined
30364     board and chooses to be more aggressive can always provide
30365     their own board specific string function with the more
30366     aggressive "T1 Sample" value or stick with the default
30367     minimum SDRAM_RDCC.[RDSS] value of "T2".
30369     Also put in a autocalibration loop fix for case where current
30370     write/read/compare passing window size is the same as a prior
30371     window size, then in this case choose the write/read/compare
30372     result that has the associated smallest RDCC T-Sample value.
30374     Signed-off-by: Adam Graham <agraham@amcc.com>
30375     Signed-off-by: Stefan Roese <sr@denx.de>
30377 commit 2ede879fcb67470524847bb4fc8972651bb46184
30378 Author: Stefan Roese <sr@denx.de>
30379 Date:   Wed Feb 11 09:37:12 2009 +0100
30381     ppc4xx: Fix problem with CONFIG_MAX_MEM_MAPPED in include/asm-ppc/config.h
30383     CONFIG_SDRAM_PPC4xx_IBM_DDR2 is not set when include/asm-ppc/config.h is
30384     included. So for katmai, CONFIG_MAX_MEM_MAPPED will get set to 256MB.
30386     It makes perfect sense to set CONFIG_MAX_MEM_MAPPED to 2GB for all PPC4xx
30387     boards right now.
30389     Signed-off-by: Stefan Roese <sr@denx.de>
30391 commit f15c6515fc23f83c51f3de272ca23d86b80e81b1
30392 Author: Wolfgang Denk <wd@denx.de>
30393 Date:   Thu Feb 12 00:08:39 2009 +0100
30395     Coding style cleanup; update CHANGELOG
30397     Signed-off-by: Wolfgang Denk <wd@denx.de>
30399 commit 5fc56b907d993260b9ebdb137af66fe69635ae9e
30400 Author: Peter Tyser <ptyser@xes-inc.com>
30401 Date:   Fri Jan 30 16:36:40 2009 -0600
30403     Add feature-removal-schedule.txt
30405     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
30407 commit 255d28e1642e8fc32a6753226be1a96b481ce111
30408 Author: Heiko Schocher <hs@denx.de>
30409 Date:   Tue Feb 10 09:32:38 2009 +0100
30411     8xx serial, smc: Coding-Style cleanup serial SMC driver
30413     Signed-off-by: Heiko Schocher <hs@denx.de>
30415 commit 2b3f12c214346508cae3f1245808c1ca54c81fdd
30416 Author: Heiko Schocher <hs@denx.de>
30417 Date:   Tue Feb 10 09:31:47 2009 +0100
30419     8xx serial, smc: add configurable SMC Rx buffer len
30421     This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
30422     With this option it is possible to allow the receive
30423     buffer for the SMC on 8xx to be greater then 1. In case
30424     CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
30425     old version.
30427     When defining CONFIG_SYS_SMC_RXBUFLEN also
30428     CONFIG_SYS_MAXIDLE must be defined to setup the maximum
30429     idle timeout for the SMC.
30431     Signed-off-by: Heiko Schocher <hs@denx.de>
30433 commit e915f8bb73d74178bc21d3a457959883b1afd1c0
30434 Author: Mike Frysinger <vapier@gentoo.org>
30435 Date:   Thu Feb 5 21:04:36 2009 -0500
30437     common/{hush, kgdb, serial}.c: build by COBJS-$(...) in Makefile
30439     Move global '#ifdef CONFIG_xxx .... #endif' out of the .c files and into
30440     the COBJS-$(CONFIG_xxx) in the Makefile.  Also delete unused var in kgdb
30441     code in the process.
30443     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30445 commit ab76e9848a1f4db64d14233741d739a3b3360c93
30446 Author: Mike Frysinger <vapier@gentoo.org>
30447 Date:   Thu Feb 5 21:04:50 2009 -0500
30449     bzip2: move ifdef handling to Makefile COBJS-$(...)
30451     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30453 commit ae0b05df04e1cc65c5ad19ccd362f4be82df7316
30454 Author: Jerry Van Baren <gvb.uboot@gmail.com>
30455 Date:   Thu Feb 5 22:18:02 2009 -0500
30457     Fix whitespace damage: double space changed to a tab
30459     At some point an intentional double space at the end of the sentence
30460     got changed into a tab in the GPL header line:
30461      * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
30463     This patch fixes the damage.
30465     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
30467 commit 4f975678de995b55749d5e84590c268972a7c835
30468 Author: Heiko Schocher <hs@denx.de>
30469 Date:   Tue Feb 10 09:53:29 2009 +0100
30471     cfi: make flash_get_info() non static
30473     If on your board is more than one flash, you must know
30474     the size of every single flash, for example, for updating
30475     the DTS before booting Linux. So make this function
30476     flash_get_info() extern, and you can have all info
30477     about your flashes.
30479     Signed-off-by: Heiko Schocher <hs@denx.de>
30480     Signed-off-by: Stefan Roese <sr@denx.de>
30482 commit 86321fc1128c93a10ac4afb9d317b0df8ece0f9e
30483 Author: Ben Warren <biggerbadderben@gmail.com>
30484 Date:   Thu Feb 5 23:58:25 2009 -0800
30486     net: removed board-specific CONFIGs from MPC5xxx FEC driver
30488     Added new CONFIG options for the three type of MAC-PHY interconnect and
30489     applied them all relevant board config files
30491     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30493 commit 638ed3e296e70fab286d157b7adedaaa4a09a474
30494 Author: Mike Frysinger <vapier@gentoo.org>
30495 Date:   Thu Feb 5 21:04:47 2009 -0500
30497     net/sntp.c: move ifdef into Makefile COBJS-$(...)
30499     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30500     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30502 commit 9e5be8214ba751436e57c3be044bf6dccb9a6687
30503 Author: Andy Fleming <afleming@freescale.com>
30504 Date:   Tue Feb 3 18:26:41 2009 -0600
30506     tsec: Fix a bug in soft-resetting
30508     SOFT_RESET must be asserted for at least 3 TX clocks.  Usually, that's about 30
30509     clock cycles, so it's been mostly working.  But we had no guarantee, and at
30510     slower bitrates, it's just over a microsecond (over 1000 clock cycles).  This
30511     enforces a 2 microsecond gap between assertion and deassertion.
30513     Signed-off-by: Andy Fleming <afleming@freescale.com>
30514     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30516 commit 09fcc8b5d86903b76e7e4d1d879d6f4bca25c27b
30517 Author: Simon Munton <simon@nidoran.m5data.com>
30518 Date:   Mon Feb 2 09:44:08 2009 +0000
30520     Fix 100Mbs ethernet operation on sh7763 based boards
30522     100Mbs ethernet does not work on sh7763 chips due to the wrong value being
30523     used in the GECMR register. Following diff fixes the problem
30525     Signed-off-by: Simon Munton <simon@nidoran.m5data.com>
30526     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30528 commit 2bc2a8f6dc9fdda465317da59474e65c24a398a2
30529 Author: ksi@koi8.net <ksi@koi8.net>
30530 Date:   Fri Feb 6 16:27:55 2009 -0800
30532     Fix MPC8260 with ethernet on SCC
30534     This fixes MPC8260 compilation with ethernet on SCC. Probably was a
30535     typo or something...
30537     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
30538     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30540 commit ae5d8f613cec1a6af7bf1fc9c42a3b856f021023
30541 Author: Heiko Schocher <hs@denx.de>
30542 Date:   Fri Jan 30 12:56:15 2009 +0100
30544     82xx serial, smc: Coding-Style cleanup serial SMC driver
30546     Signed-off-by: Heiko Schocher <hs@denx.de>
30548 commit c92fac91a06c60f874c605e3ca80dd407c1caaa7
30549 Author: Heiko Schocher <hs@denx.de>
30550 Date:   Fri Jan 30 12:55:38 2009 +0100
30552     82xx serial, smc: add configurable SMC Rx buffer len
30554     This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
30555     With this option it is possible to allow the receive
30556     buffer for the SMC on 82xx to be greater then 1. In case
30557     CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
30558     old version.
30560     When defining CONFIG_SYS_SMC_RXBUFLEN also
30561     CONFIG_SYS_MAXIDLE must be defined to setup the maximum
30562     idle timeout for the SMC.
30564     Signed-off-by: Heiko Schocher <hs@denx.de>
30566 commit bced7ccefa08512c54a6d146658ff7dbc33d5dfe
30567 Author: Kumar Gala <galak@kernel.crashing.org>
30568 Date:   Fri Feb 6 08:08:06 2009 -0600
30570     ppc: Fix roll over bug in flush_cache()
30572     If we call flush_cache(0xfffff000, 0x1000) it would never
30573     terminate the loop since end = 0xffffffff and we'd roll over
30574     our counter from 0xfffffe0 to 0 (assuming a 32-byte cache line)
30576     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30578 commit 87c9063963561d3d01064be34d0c30855a56587b
30579 Author: Kumar Gala <galak@kernel.crashing.org>
30580 Date:   Thu Feb 5 20:40:58 2009 -0600
30582     ppc: Move CONFIG_MAX_MEM_MAPPED to common config.h
30584     Moved CONFIG_MAX_MEM_MAPPED to the asm/config.h so its kept consistent
30585     between the two current users (lib_ppc/board.c, 44x SPD DDR2).
30587     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30588     Acked-by: Stefan Roese <sr@denx.de>
30590 commit 47d41cc3a11a03c6d56146d056145df73f47eb50
30591 Author: Kumar Gala <galak@kernel.crashing.org>
30592 Date:   Thu Feb 5 20:40:57 2009 -0600
30594     Add an architecture specific config.h for common defines
30596     We have common defines that we duplicate in various ways.  Having an
30597     arch specific config.h gives us a common location for those defines.
30599     Eventually we should be able to replace this when we have proper
30600     Kconfig support.
30602     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30604 commit 4c78d4a6c01621721b732418e1c6da684a56bbb1
30605 Author: Becky Bruce <beckyb@kernel.crashing.org>
30606 Date:   Tue Feb 3 18:10:56 2009 -0600
30608     mpc8641hpcn: Change PCI MEM pci bus address
30610     Now that the rest of u-boot can support it, change the PCI bus
30611     address of the PCI MEM regions from 0x80000000 to 0xc0000000,
30612     and use the same bus address for both PCI1 and PCI2.  This will
30613     maximize the amount of PCI address space left over to map RAM
30614     on systems with large amounts of memory.
30616     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30618 commit 1785dbeed43599eed1d8875673c96912cd770141
30619 Author: Becky Bruce <beckyb@kernel.crashing.org>
30620 Date:   Tue Feb 3 18:10:55 2009 -0600
30622     drivers/block/ahci: Fix pci mapping bug
30624     The code assumes that the pci bus address and the virtual
30625     address used to access a region are the same, but they might
30626     not be.  Fix this assumption.
30628     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30630 commit d591a80e74091e7a0658d165721e6c7de2ef0bcd
30631 Author: Becky Bruce <beckyb@kernel.crashing.org>
30632 Date:   Tue Feb 3 18:10:54 2009 -0600
30634     MPC8641HPCN: Enable CONFIG_ADDR_MAP
30636     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30638 commit 49f46f3bf08aaf7b1db131a1082f1e603bb7a94b
30639 Author: Becky Bruce <beckyb@kernel.crashing.org>
30640 Date:   Tue Feb 3 18:10:53 2009 -0600
30642     mpc8641hpcn: Clean up PCI mapping concepts
30644     Clean up PCI mapping concepts in the 8641 config - rename _BASE
30645     to _BUS, as it's actually a PCI bus address, separate virtual
30646     and physical addresses into _VIRT and _PHYS, and use each
30647     appopriately.
30649     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30651 commit c9315e6b4f244981de0b2eaaa29a7838a165b494
30652 Author: Becky Bruce <beckyb@kernel.crashing.org>
30653 Date:   Tue Feb 3 18:10:52 2009 -0600
30655     mpc86xx: Add support to populate addr map based on BATs
30657     If CONFIG_ADDR_MAP is enabled, update the address map
30658     whenever we write a bat.
30660     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30662 commit d35ae5a938679bd7e18167faf79d0fb3c6639b51
30663 Author: Becky Bruce <beckyb@kernel.crashing.org>
30664 Date:   Tue Feb 3 18:10:51 2009 -0600
30666     powerpc: Move duplicated BAT defines to mmu.h
30668     The BAT fields are architected; there's no need for these to be in
30669     cpu-specific files.  Drop the duplication and move these to
30670     include/asm-ppc/mmu.h.  Also, remove the BL_xxx defines that were only
30671     used by the alaska board, and switch to using the BATU_BL_xxx defines
30672     used by all the other boards.  The BL_ defines previously in use
30673     had to be shifted into the proper position for use, which was inefficient.
30675     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30677 commit 6e61fae4d360a1380b63e7d007b31477e366bcce
30678 Author: Becky Bruce <beckyb@kernel.crashing.org>
30679 Date:   Tue Feb 3 18:10:50 2009 -0600
30681     drivers/pci: Create pci_map_bar function
30683     It is no longer always true that the pci bus address can be
30684     used as the virtual address for pci accesses.  pci_map_bar()
30685     is created to return the virtual address for a pci region.
30687     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30689 commit 2ecca3401775b125c3b9ff65766befb23989414b
30690 Author: Becky Bruce <beckyb@kernel.crashing.org>
30691 Date:   Tue Feb 3 18:10:49 2009 -0600
30693     mpc8641hpcn: Set up outbound pci windows before inbound
30695     Because the inbound pci windows are mapped generously, set up
30696     the more specific outbound windows first.  This way, when we
30697     search the pci regions for something, we will hit on the more
30698     specific region.  This can actually be a problem on systems
30699     with large amounts of RAM.
30701     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30703 commit b81b773ead0687114dc8a800f99ea6e504447739
30704 Author: Becky Bruce <beckyb@kernel.crashing.org>
30705 Date:   Mon Feb 2 16:34:52 2009 -0600
30707     mpc8641hpcn: Use physical address in flash banks defintion
30709     If the VA and PA of the flash aren't the same, the banks list
30710     should be initialized to hold the physical address.  Correct this.
30712     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
30714 commit 0d19f6c8cbe71b9e6d8c6bd6742ed2551e918870
30715 Author: Ilya Yanok <yanok@emcraft.com>
30716 Date:   Tue Feb 10 00:22:31 2009 +0100
30718     qong: support for Dave/DENX QongEVB-LITE board
30720     This patch adds support for Dave/DENX QongEVB-LITE i.MX31-based board.
30722     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
30723     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30725 commit 62cbc408f52fc9a5eb849e0b882c504780c9d183
30726 Author: Ilya Yanok <yanok@emcraft.com>
30727 Date:   Mon Feb 9 18:45:28 2009 +0100
30729     dnet: driver for Dave DNET ethernet controller
30731     Driver for Dave DNET ethernet controller (used on Dave/DENX
30732     QongEVB-LITE board).
30734     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
30735     Acked-by: Ben Warren <biggerbadderben@gmail.com>
30737 commit 2d43e873a29ca4959ba6a30fc7fb396d3fd0dccf
30738 Author: Kumar Gala <galak@kernel.crashing.org>
30739 Date:   Fri Feb 6 09:49:32 2009 -0600
30741     pci: give preference to non-PCI_REGION_SYS_MEMORY regions when matching
30743     When we search for an address match in pci_hose_{phys_to_bus,bus_to_phys}
30744     we should give preference to memory regions that aren't system memory.
30746     Its possible that we have over mapped system memory in the regions and
30747     we want to avoid depending on the order of the regions.
30749     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30751 commit ff4e66e93c1ad47644be3b4ffd6a46e1ce9b6612
30752 Author: Kumar Gala <galak@kernel.crashing.org>
30753 Date:   Fri Feb 6 09:49:31 2009 -0600
30755     pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity
30757     The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and
30758     can be confusing when reading the code.
30760     Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used
30761     for system memory mapping purposes.
30763     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30765 commit 54dc517328709c204a9cbf7a253d9f8e6c4b26ec
30766 Author: Ilya Yanok <yanok@emcraft.com>
30767 Date:   Sun Feb 8 00:59:43 2009 +0300
30769     mx31: add GPIO registers definitions
30771     Added definitions for i.MX31 processor GPIO registers.
30773     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
30775 commit 8da601280a8acbc3385784780ed35130e53812f1
30776 Author: Peter Tyser <ptyser@xes-inc.com>
30777 Date:   Wed Feb 4 13:47:22 2009 -0600
30779     NAND: Add timeout for reset command
30781     Without the timeout present an infinite loop can occur if the
30782     NAND device is broken or not present.
30784     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
30785     Signed-off-by: Scott Wood <scottwood@freescale.com>
30787 commit 10dc6a9bef73d7d4cb25b3fde27ee91f8484b126
30788 Author: Peter Tyser <ptyser@xes-inc.com>
30789 Date:   Wed Feb 4 13:39:40 2009 -0600
30791     NAND: Silence warning when CONFIG_SYS_NAND_QUIET_TEST
30793     Commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b removed support
30794     for disabling the "No NAND device found!!!" warning when
30795     CONFIG_SYS_NAND_QUIET_TEST was defined.  This re-adds support
30796     for silencing the warning.
30798     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
30799     Signed-off-by: Scott Wood <scottwood@freescale.com>
30801 commit ad09ab2e3ac28f304372eceb4a5cb4d24e102a13
30802 Author: Valeriy Glushkov <gvv@lstec.com>
30803 Date:   Mon Jan 19 16:32:59 2009 +0200
30805     NAND: Fixed invalid pointers to static relocated chip names
30807     Dear Wolfgang,
30809     You are right, the patch was ugly.
30810     The new one seems to be better.
30812     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
30813     Signed-off-by: Scott Wood <scottwood@freescale.com>
30815 commit e7deec1bf6fa3b3a21cd8d14fe2a909a42efc9d8
30816 Author: Nishanth Menon <nm@ti.com>
30817 Date:   Mon Feb 2 18:20:12 2009 -0600
30819     ARM:OMAP3:Zoom1: Add nand unlock option
30821     Enable NAND_UNLOCK option for unlocking nand for
30822     erase/write operations
30824     Signed-off-by: Nishanth Menon <nm@ti.com>
30826 commit 5a9427dc9b8438759db3f67a1e547062f76eb18d
30827 Author: derek@siconix.com <derek@siconix.com>
30828 Date:   Mon Jan 26 14:08:17 2009 -0700
30830     env_nand: fix env memory release
30832     This fixes a bug that tmp environment memory not being released.
30834     Signed-off-by: Derek Ou <dou@siconix.com>
30835     Signed-off-by: Scott Wood <scottwood@freescale.com>
30837 commit 05fd88776419df59e7f37bac063a209409dd801d
30838 Author: Guennadi Liakhovetski <lg@denx.de>
30839 Date:   Fri Feb 6 10:37:45 2009 +0100
30841     ARM: remove unused variable
30843     The "size" variable in start_armboot() in lib_arm/board.c is only really
30844     used in "#ifndef CONFIG_SYS_NO_FLASH" case, and even there it can be
30845     eliminated (thanks to Jean-Christophe PLAGNIOL-VILLARD for a suggestion.)
30847     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
30849 commit 6989e4f546d960a407dd5425f800dff9751c8132
30850 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30851 Date:   Thu Feb 5 09:33:50 2009 -0500
30853     Coldfire: M527x: Add missing GPIO register address defines
30855     Add missing GPIO registers address definition for Coldfire M5271.
30857     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30859 commit c4ff77f5e6c3a01610ce97434c0d59acb1476f95
30860 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30861 Date:   Fri Jan 23 14:42:58 2009 -0500
30863     Coldfire: mcfmii: Allow non-autonegotiating PHYs to use mii command
30865     Modified mii_init to support boards with PHYs that are not set to
30866     autonegotiate, but still want to use u-boot's mii commands to probe
30867     the smi bus. Such PHYs will not set the Autonegotiate-done bit.
30869     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30871 commit 92d3e6e0ffcbb7224c83104f8d87b5b4bf39a38f
30872 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30873 Date:   Fri Jan 23 11:44:30 2009 -0500
30875     Coldfire: Applied baudrate formula of serial_init to serial_setbrg
30877     Applied the patch for baudrate divider value truncation for
30878     serial_init to serial_setbrg as well.
30880     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30882 commit 8706ef378f2db1ef65b9c2f909561f23e3dc2148
30883 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30884 Date:   Fri Jan 23 14:07:05 2009 -0500
30886     Coldfire: M5271EVB: Board header update (dependencies)
30888     Cleanup for M5271EVB:
30889     Added clarification on the use of CONFIG_SYS_CLOCK.
30890     Modified to use u-boot's HUSH parser.
30891     Cleanup on environment settings.
30892     Removed compiler warning by defining CONFIG_SYS_CS0_*
30894     Dependencies:
30895     Added the use of CONFIG_SYS_MCF_SYNCR for clock multiplier.
30896     This depends on a patch to include/asm-m68k/m5271.h
30897     that defines the multiplier and divider ratios.
30899     Removed the definition of CONFIG_SYS_FECI2C.
30900     This depends on a patch that removes the use of it in
30901     cpu/mcf52x2/cpu_init.c
30903     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30905 commit e0db344fabfeb4f9649846f94838f51172f6a1f6
30906 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30907 Date:   Thu Jan 29 14:36:06 2009 -0500
30909     Coldfire: M5271: Allow board header file to specify clock multiplier
30911     M5271 dynamic clock multiplier. It is currently fixed at 100MHz.
30913     Allow the board header file to set their own multiplier and divider.
30914     Added the #define for the multiplier and divider to the cpu header file.
30916     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30918 commit d1ef25dd81c79dcfad5c2ff0162b1bea21d04bc3
30919 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30920 Date:   Fri Jan 23 10:47:13 2009 -0500
30922     Coldfire: M5271EVB: Remove usage of CONFIG_SYS_FECI2C
30924     Discontinue the use of CONFIG_SYS_FECI2C (only used by M5271EVB).
30925     Use read-modify-write to activate the FEC pins without disabling I2C.
30927     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30929 commit ee73cc59ab904976af3c33b454fc84f78618b2d1
30930 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30931 Date:   Fri Jan 23 09:45:34 2009 -0500
30933     Coldfire: cmd_bdinfo cleanup
30935     CONFIG_M68K bdinfo cleanup:
30937     Fixed compiler warning about baudrate printing.
30938     format '%d' expects type 'int', but argument 2 has type 'long unsigned int'.
30940     Added printing of "cpufreq"
30942     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30944 commit 4ffc39050aa46ed8a3d29732293dff769e54fffa
30945 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30946 Date:   Fri Jan 23 09:27:00 2009 -0500
30948     Coldfire: Fix half-baud UART by adding M5271 to Coldfire v2 core list
30950     Added the CONFIG_M5271 to the list of Coldfire V2 processor. This
30951     was causing the bus clock (not CPU clock) to be declared twice as
30952     fast as it actually is. This causes UARTS to operate at half the
30953     specified baudrate.
30955     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30957 commit 59d1bda7f92c8a28c3aba94e48063749d425949f
30958 Author: Dirk Eibach <eibach@gdsys.de>
30959 Date:   Tue Feb 3 15:15:21 2009 +0100
30961     ppc4xx: Make PCIE support selectable
30963     On some platforms PCIE support is not required, but would be included
30964     because the cpu supports it. To reduce fooprint it is now configurable
30965     via CONFIG_PCI_DISABLE_PCIE.
30967     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
30968     Signed-off-by: Stefan Roese <sr@denx.de>
30970 commit b129eff5ede394cc1faeb6dbf6a987e91abce552
30971 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30972 Date:   Tue Feb 3 22:13:16 2009 +0100
30974     ppc4xx: Only fixup opb attached UARTs
30976     This patch updates the fdt UART clock fixup code to
30977     only touch CPU internal UARTs on 4xx systems.
30978     Only these UARTs are definitely clocked by gd->uart_clk.
30980     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30981     Signed-off-by: Stefan Roese <sr@denx.de>
30983 commit 4b7e3d045cc82f7f7b6f3a19b54a814da36ac52c
30984 Author: Mike Frysinger <vapier@gentoo.org>
30985 Date:   Tue Jan 13 11:00:29 2009 -0500
30987     Blackfin: move default boot SPI CS to common code
30989     Move the default SPI CS that we boot from into common code so that it can
30990     be used in other SPI drivers and environment settings.
30992     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30994 commit f790ef6ff12381cb0e43de54fb2b0f1204ad8ed6
30995 Author: Mike Frysinger <vapier@gentoo.org>
30996 Date:   Wed Dec 10 12:33:54 2008 -0500
30998     Blackfin: dynamically update UART speed when initializing
31000     Previously, booting over the UART required the baud rate to be known ahead
31001     of time.  Using a bit of tricky simple math, we can calculate the new board
31002     rate based on the old divisors.
31004     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31005     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
31007 commit 97f265f14f23050f3cb997f617f3a6917b843ea2
31008 Author: Mike Frysinger <vapier@gentoo.org>
31009 Date:   Tue Dec 9 17:21:08 2008 -0500
31011     Blackfin: add support for fast SPI reads with Boot ROM
31013     Newer Blackfin boot roms support using the fast SPI read command rather than
31014     just the slow one.  If the functionality is available, then use it.
31016     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31018 commit 67619982bfc5cd62710a48e3cbffc304cb78c341
31019 Author: Mike Frysinger <vapier@gentoo.org>
31020 Date:   Sat Oct 11 21:46:52 2008 -0400
31022     Blackfin: check for reserved settings in DDR MMRs
31024     Some bits of the DDR MMRs should not be set.  If they do, bad things may
31025     happen (like random failures or hardware destruction).
31027     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31029 commit 622a8dc0958dd599743348ea94eb10b9d0be8ae6
31030 Author: Mike Frysinger <vapier@gentoo.org>
31031 Date:   Sat Oct 11 21:54:00 2008 -0400
31033     Blackfin: set default voltage levels for BF538/BF539 parts
31035     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31037 commit 09dc6b0bbd1d5e39cdddeebc059f9a75630e4f6f
31038 Author: Mike Frysinger <vapier@gentoo.org>
31039 Date:   Sun Jun 1 01:29:57 2008 -0400
31041     Blackfin: use on-chip syscontrol() rom function when available
31043     Newer Blackfin's have an on-chip rom with a syscontrol() function that needs
31044     to be used to properly program the memory and voltage settings as it will
31045     include (possibly critical) factory tested bias values.
31047     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31049 commit e1fb6d0d52fbe3fbc1a4c651dacf11e9c1417f63
31050 Author: Stefan Roese <sr@denx.de>
31051 Date:   Thu Feb 5 11:44:52 2009 +0100
31053     cfi_flash: Fix typo in cfi_flash.c
31055     Patch "flash/cfi_flash: Use virtual sector start address, not phys"
31056     introduced a small typo and compilation warning for systems with CFI
31057     legacy support (e.g. hcu4). This patch fixes it.
31059     Signed-off-by: Stefan Roese <sr@denx.de>
31061 commit 28745db969b72693754991c838f68a7fb4a8b1ab
31062 Author: Stefan Roese <sr@denx.de>
31063 Date:   Thu Jan 29 11:21:38 2009 +0100
31065     jedec_flash: Only use manufacturer defines from common flash.h
31067     This patch removes the double defined manufacturer defines from
31068     jedec_flash.c. Since the common defines in flash.h are 32bit
31069     we now need the (16) cast. This patch also removes the compilation
31070     warning (e.g. seen on hcu5):
31072     ./MAKEALL hcu5
31073     Configuring for hcu5 board...
31074     jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type
31076     Signed-off-by: Stefan Roese <sr@denx.de>
31078 commit ec21d5cfcb6b4e7fcdd5c6e926e1a824900706f2
31079 Author: Stefan Roese <sr@denx.de>
31080 Date:   Thu Feb 5 11:25:57 2009 +0100
31082     cfi_flash: Silence compilation warning
31084     Patch "flash/cfi_flash: Use virtual sector start address, not phys"
31085     introduced a small compilation warning. This patch fixes it.
31087     Signed-off-by: Stefan Roese <sr@denx.de>
31089 commit 09ce9921a7d8b1ce764656b14b42217bbf4faa38
31090 Author: Becky Bruce <beckyb@kernel.crashing.org>
31091 Date:   Mon Feb 2 16:34:51 2009 -0600
31093     flash/cfi_flash: Use virtual sector start address, not phys
31095     include/flash.h was commented to say that the address in
31096     flash_info->start was a physical address.  However, from u-boot's
31097     point of view, and looking at most flash code, it makes more
31098     sense for this to be a virtual address.  So I corrected the
31099     comment to indicate that this was a virtual address.
31101     The only flash driver that was actually treating the address
31102     as physical was the mtd/cfi_flash driver.  However, this code
31103     was using it inconsistently as it actually directly dereferenced
31104     the "start" element, while it used map_physmem to get a
31105     virtual address in other places.  I changed this driver so
31106     that the code which initializes the info->start field calls
31107     map_physmem to get a virtual address, eliminating the need for
31108     further map_physmem calls.  The code is now consistent.
31110     The *only* place a physical address should be used is when defining the
31111     flash banks list that is used to initialize the flash_info struct,
31112     usually found in the board config file.
31114     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
31115     Signed-off-by: Stefan Roese <sr@denx.de>
31117 commit 657f2062d8e17ebf4a55f52c9e71c07c0c94c779
31118 Author: Wolfgang Denk <wd@denx.de>
31119 Date:   Wed Feb 4 09:42:20 2009 +0100
31121     Fix compiler warning
31123     (shows up only when DEBUG is enabled)
31125     Signed-off-by: Wolfgang Denk <wd@denx.de>
31127 commit 47832cd15ae02fb6fde8ebed5b272f85775f2ceb
31128 Author: Mike Frysinger <vapier@gentoo.org>
31129 Date:   Mon Oct 6 03:45:55 2008 -0400
31131     Blackfin: update anomaly lists
31133     Update the anomaly lists to match latest anomaly sheets.
31135     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31137 commit 70a4da45e16b72e8e5b0baaecdaee9be8619647d
31138 Author: Ralph Kondziella <rk@argos-messtechnik.de>
31139 Date:   Mon Jan 26 12:34:36 2009 -0700
31141     ADS5121 Add PATA support
31143     Original patch from Ralph Kondziella
31144     plus clean up by Wolfgang Denk
31145     plus changes by John Rigby
31146         use ips clock not lpc
31147         port forward to current u-boot release
31149     Signed-off-by: Ralph Kondziella <rk@argos-messtechnik.de>
31150     Signed-off-by: Wolfgang Denk <wd@denx.de>
31151     Signed-off-by: John Rigby <jrigby@freescale.com>
31153 commit abfbd0ae4967df18102345db4f4b529a13da107b
31154 Author: Martha Marx <mmarx@silicontkx.com>
31155 Date:   Mon Jan 26 10:45:07 2009 -0700
31157     ADS5121 Add IC Ident Module (IIM) support
31159     IIM (IC Identification Module) is the fusebox for the mpc5121.
31160     Use #define CONFIG_IIM to turn on the clock for this module
31161     use #define CONFIG_CMD_FUSE to add fusebox commands.
31162     Fusebox commands include the ability to read
31163     the status, read the register cache, override the register cache,
31164     program the fuses and sense them.
31166     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
31167     Signed-off-by: John Rigby <jrigby@freescale.com>
31169 commit 14d19cd1bce9a24b1335598f1568140f4950e4d9
31170 Author: John Rigby <jrigby@freescale.com>
31171 Date:   Fri Jan 23 10:33:15 2009 -0700
31173     ADS5121 Fix rev2 silicon pci iopad config
31175     Reset config is not correct
31177     Signed-off-by: John Rigby <jrigby@freescale.com>
31179 commit 4c154252c480b13f69ce1b71a9530b0515da76a6
31180 Author: John Rigby <jrigby@freescale.com>
31181 Date:   Wed Nov 19 13:57:34 2008 -0700
31183     ADS5121 DIU Add diu_bmp_addr env
31185     Add support for using a bmp other than
31186     FSL_Logo_BMP for the DIU splash screen.
31188     Can now set the env var "diu_bmp_addr" to
31189     the address of a BMP in flash to use instead
31190     of the default FSL_Logo_BMP.
31192     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
31193     Signed-off-by: John Rigby <jrigby@freescale.com>
31195 commit 92c20fbd3a7788c1a154f50a3f44f28a7763f99a
31196 Author: John Rigby <jrigby@freescale.com>
31197 Date:   Thu Oct 30 16:39:35 2008 -0600
31199     ADS5121 DIU Make inclusion of FSL logo optional
31201     Make inclusion of FSL logo optional and
31202     turn it off by default.
31204     Signed-off-by: John Rigby <jrigby@freescale.com>
31206 commit bd99ec149abe94e7f6b2bda4766d701b4005053f
31207 Author: Remy Bohmer <linux@bohmer.net>
31208 Date:   Sun Feb 1 12:27:53 2009 +0100
31210     Compile warning fix in onenand_uboot.h
31212     Regression since merge window after 2009.01
31214     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31216 commit a270d1e7295c3d829f42c0480117941dfc1c6477
31217 Author: Stefan Roese <sr@denx.de>
31218 Date:   Thu Jan 29 06:33:55 2009 +0100
31220     USB: Add EHCI support for VCT EHCI controller (really with driver now)
31222     Somehow I missed the real driver part in my last patch version. This patch
31223     now adds the driver.
31225     Signed-off-by: Stefan Roese <sr@denx.de>
31226     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31228 commit 716ebf436c9e43df6740e0172f6b2a81ddbf1b8e
31229 Author: Cliff Cai <cliff.cai@analog.com>
31230 Date:   Sat Nov 29 18:22:38 2008 -0500
31232     Blackfin: add driver for on-chip MMC/SD controller
31234     This is a port of the Linux Blackfin on-chip SDH driver to U-Boot.
31236     Signed-off-by: Cliff Cai <cliff.cai@analog.com>
31237     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31239 commit 6e87ea0ca951465eba144ab2e6dba6fb507737a2
31240 Author: Mike Frysinger <vapier@gentoo.org>
31241 Date:   Sat Oct 11 22:47:34 2008 -0400
31243     Blackfin: add port muxing for BF51x SPI
31245     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31247 commit fc68f9f85959664d528daea2aef5ef54974331ce
31248 Author: Mike Frysinger <vapier@gentoo.org>
31249 Date:   Tue Jan 6 06:16:19 2009 -0500
31251     Blackfin: output booting source when booting
31253     Knowing the booting source of the part is useful, especially when the part
31254     can switch dynamically between sources.
31256     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31258 commit 8df3ce0f49c37947800ac7c84e751499882619fc
31259 Author: Mike Frysinger <vapier@gentoo.org>
31260 Date:   Thu Dec 11 06:30:46 2008 -0500
31262     Blackfin: set default CONFIG_ENV_SPI_CS based on bootrom
31264     Set the default CONFIG_ENV_SPI_CS value to match the SPI CS that is used by
31265     the Blackfin on-chip bootrom to boot out of SPI flash.
31267     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31269 commit 2b4a486e6fac502d8b883e344cc4012283945b3d
31270 Author: Mike Frysinger <vapier@gentoo.org>
31271 Date:   Thu Dec 11 04:06:26 2008 -0500
31273     Blackfin: update asm-blackfin/posix_types.h to latest Linux version
31275     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31277 commit e5eb93e77391bcc308697116c544ea1340aaae8a
31278 Author: Mike Frysinger <vapier@gentoo.org>
31279 Date:   Sat Dec 6 02:54:52 2008 -0500
31281     Blackfin: add port I bits
31283     Some people need to access port I, so make sure the pins are defined.
31285     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31287 commit 8a6b272596d43de0db4943eac7af58c3534c4026
31288 Author: Sonic Zhang <Sonic.Zhang@analog.com>
31289 Date:   Wed Nov 26 22:16:45 2008 -0500
31291     Blackfin: add driver for on-chip ATAPI controller
31293     This is a port of the Linux Blackfin on-chip ATAPI driver to U-Boot.
31295     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
31296     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31298 commit be9d8c780e6831cb84b7d4590ceae03dca8fc10b
31299 Author: Mike Frysinger <vapier@gentoo.org>
31300 Date:   Wed Nov 26 21:43:06 2008 -0500
31302     Blackfin: add driver for on-chip NAND controller
31304     This is a port of the Linux Blackfin on-chip NFC driver to U-Boot.
31306     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31308 commit 4148e02abae9a099f4444b5e168ebc2b911d2295
31309 Author: Mike Frysinger <vapier@gentoo.org>
31310 Date:   Wed Nov 12 07:18:15 2008 -0500
31312     Blackfin: build with -mno-fdpic
31314     Use the -mno-fdpic flag so that any Blackfin toolchain can be used to build
31315     up u-boot, including ones that output FDPIC ELF by default.
31317     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31319 commit 70e95589a24a2d83ad00317e4a9611d0211ecb58
31320 Author: Mike Frysinger <vapier@gentoo.org>
31321 Date:   Tue Nov 11 05:43:57 2008 -0500
31323     Blackfin: fix up EBIU defines
31325     The EBIU defines for EBSZ 256/512 were incorrect.
31327     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31329 commit 961954ea0ec8dc4341034c1a1ff3107ec0527809
31330 Author: Mike Frysinger <vapier@gentoo.org>
31331 Date:   Wed Nov 5 12:45:24 2008 -0500
31333     Blackfin: use 8/16/32 bit transfer widths in dma_memcpy()
31335     Rather than using 8bit transfers for everything, use 8/16/32 bit transfers
31336     as usable with the source/destination addresses and the count size.
31338     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31340 commit b93c68648426f906d63b98117496b6415f505f39
31341 Author: Mike Frysinger <vapier@gentoo.org>
31342 Date:   Wed Nov 5 08:50:23 2008 -0500
31344     Blackfin: only flag L1 instruction for DMA memcpy
31346     The performance difference from doing an 8 bit DMA memcpy vs an optimized
31347     core memcpy can be pretty big when you add in the overhead of setting up the
31348     MDMA registers, cache flushes, etc...  So only use dma_memcpy() when we
31349     actually require it.
31351     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31353 commit e347c092a3b3a2ce1e72f25f4829163634d09fbe
31354 Author: Mike Frysinger <vapier@gentoo.org>
31355 Date:   Wed Nov 5 07:20:37 2008 -0500
31357     Blackfin: dma_memcpy(): fix random failures
31359     We have to make sure the DMA channel is actually disabled in hardware before
31360     attempting to reprogram it.  Otherwise the new settings are ignored and we
31361     end up with random hangs/failures.
31363     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31365 commit fdce83c108846d6f0d5b1774e1cc29f2573a6ad3
31366 Author: Mike Frysinger <vapier@gentoo.org>
31367 Date:   Tue Nov 4 00:04:03 2008 -0500
31369     Blackfin: rewrite cache handling functions
31371     Take the cache flush functions from the kernel as they use hardware loops in
31372     order to get optimal performance.
31374     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31376 commit 84c5f0dc47d17593fd81206614891bdc94f6d51c
31377 Author: Mike Frysinger <vapier@gentoo.org>
31378 Date:   Mon Nov 3 22:30:05 2008 -0500
31380     Blackfin: setup bi_enetaddr for single nets
31382     For systems with CONFIG_NET_MULTI disabled, bi_enetaddr does not get setup
31383     based on $ethaddr, so set it up.
31385     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31387 commit 40599239e7875b39e2a5c12e6545992041c72c52
31388 Author: Mike Frysinger <vapier@gentoo.org>
31389 Date:   Fri Oct 24 22:48:47 2008 -0400
31391     Blackfin: cache core/system clock values
31393     Calculating the clocks requires a bit of calls to gcc math functions, so
31394     cache the values after the first run since they'll most likely never
31395     change once U-Boot is up and running.
31397     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31399 commit 6957a6209b02f6b69607fc47425f13731cc477f1
31400 Author: Mike Frysinger <vapier@gentoo.org>
31401 Date:   Fri Oct 24 18:18:16 2008 -0400
31403     Blackfin: enable --gc-sections
31405     Start building all Blackfin boards with -ffunction-sections/-fdata-sections
31406     and linking with --gc-sections.
31408     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31410 commit ee1d2001ea7fbabb2b9256026dc5468f057337f8
31411 Author: Mike Frysinger <vapier@gentoo.org>
31412 Date:   Mon Oct 20 21:08:54 2008 -0400
31414     Blackfin: dont check baud if it wont actually get used
31416     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31418 commit 400f5778f375bc99c73c8488c555def261ccfab7
31419 Author: Mike Frysinger <vapier@gentoo.org>
31420 Date:   Tue Oct 14 07:54:09 2008 -0400
31422     Blackfin: add driver for on-chip SPI controller
31424     This fills out the SPI backend for the Blackfin on-chip SPI peripheral.
31426     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31428 commit 7a1e87b1062e6eac0704c6fc2f7c661caf8814cd
31429 Author: Mike Frysinger <vapier@gentoo.org>
31430 Date:   Sat Oct 18 05:33:51 2008 -0400
31432     Blackfin: only build post code when CONFIG_POST
31434     Save some time by using CONFIG_POST in the Makefile rather than C files.
31436     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31438 commit 6d7d4803c74bb86e1b401b1199e63381a62b9382
31439 Author: Mike Frysinger <vapier@gentoo.org>
31440 Date:   Thu Jan 8 11:57:57 2009 -0500
31442     Blackfin: bfin_mac: cleanup pointer/casts for aliasing issues
31444     Redo how pointers are managed to get rid of ugly casts and strict pointer
31445     aliasing issues that are highlighted by gcc 4.3.
31447     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31448     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31450 commit 092d2487baf7c29343c165e3ae82ea8a7f9e679b
31451 Author: Mike Frysinger <vapier@gentoo.org>
31452 Date:   Tue Dec 9 17:46:21 2008 -0500
31454     Blackfin: bfin_mac: convert CONFIG_BFIN_MAC_RMII to CONFIG_RMII
31456     No point in having a Blackfin-specific define "CONFIG_BFIN_MAC_RMII" that
31457     does exactly the same thing as common "CONFIG_RMII".
31459     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31460     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31462 commit 8eed6ca51e50fade6887e8bdb1ff6a44116b42b5
31463 Author: Mike Frysinger <vapier@gentoo.org>
31464 Date:   Wed Nov 5 06:36:15 2008 -0500
31466     Blackfin: bfin_mac: use common debug()
31468     Rather then defining our own DEBUGF(), just use the common debug().
31470     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31471     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31473 commit a7ec6ac8b2c6dce6fc670a2a855deb6eee340e04
31474 Author: Mike Frysinger <vapier@gentoo.org>
31475 Date:   Mon Oct 20 13:59:51 2008 -0400
31477     Blackfin: bfin_mac: respect CONFIG_PHY_{ADDR,CLOCK_FREQ}
31479     Rather than having the on-chip MAC hardcoded to phy address 1 and a speed
31480     of 2.5mhz, use these as defaults if the board doesn't specify otherwise.
31482     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31483     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31485 commit ac45af4e63ea925f4accc98453aab1a1166c196d
31486 Author: Mike Frysinger <vapier@gentoo.org>
31487 Date:   Tue Oct 14 04:52:00 2008 -0400
31489     Blackfin: bfin_mac: cleanup MII/PHY functions
31491     Cleanup and rewrite the MII/PHY related functions so that we can reuse the
31492     existing common linux/miiphy.h code and hook into the `mii` command.
31494     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31495     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31497 commit 6b310a05f0d10c751f22468040932139f71c71d3
31498 Author: Mike Frysinger <vapier@gentoo.org>
31499 Date:   Tue Oct 14 00:31:30 2008 -0400
31501     Blackfin: bfin_mac: set MDCDIV based on SCLK
31503     Rather than hardcoding MDCDIV to 24 (which is correct for ~125mhz SCLK),
31504     use the real algorithm so it gets set correctly regardless of SCLK.
31506     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31507     Acked-by: Ben Warren <biggerbadderben@gmail.com>
31509 commit 930590f3e49c8f32256edf2e5861e1535a329c6c
31510 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31511 Date:   Sat Jan 31 09:10:48 2009 +0100
31513     ixp: move serial to drivers/serial
31515     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31517 commit f90c8022f448bc5e93090e4b714368e52e912f0f
31518 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31519 Date:   Sat Jan 31 09:04:58 2009 +0100
31521     ixp: move pci init in arm/board instead of cpu
31523     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31525 commit 8cb79b5f275f1888ccb278a2d2197140444a84b7
31526 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31527 Date:   Sat Jan 31 08:56:49 2009 +0100
31529     ixp: move pci drivers to drivers/pci
31531     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31533 commit 012d5bab09a534e4800b02f50cf508e6837202ea
31534 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31535 Date:   Sat Jan 31 08:53:44 2009 +0100
31537     ixp: Move conditional compilation to Makefile
31539     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31541 commit f693f501d67434df1f815fd1824a71973ae08207
31542 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31543 Date:   Sat Jan 31 08:53:44 2009 +0100
31545     ixp: add missing os define
31547     need by arm-elf toolchains and no impact on the arm-linux one
31549     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31551 commit b4e2f89dfcb206a22d34fa6b34878d85b498b39f
31552 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31553 Date:   Sat Jan 31 09:53:39 2009 +0100
31555     ixp: remove the option to include the Microcode
31557     instead the board will have to load it from flash or ram
31558     which will be specified by npe_ucode env var
31560     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31562 commit 1b017baf2071d8daf643bce87250db898c606c66
31563 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31564 Date:   Fri Jan 30 09:45:23 2009 +0100
31566     ixp/npe: Move conditional compilation to Makefile
31568     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31570 commit 4e69087a1d6ef2eca6f46026cf5e7399b6c9e7c0
31571 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31572 Date:   Wed Jan 28 21:58:04 2009 +0100
31574     SX1: add hardware V2 support
31576     In the V2 the 2 flash has been replace by one 32MB flash
31578     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31580 commit f877f2233dbcd7417c2f0babe6a849099b167f3c
31581 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31582 Date:   Wed Jan 28 21:58:03 2009 +0100
31584     SX1: Fix second flash mapping
31586     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31588 commit 47fd3bffed6430c91eb2660f859574ed98be5bd8
31589 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31590 Date:   Wed Jan 28 21:58:03 2009 +0100
31592     SX1: add CONFIG_STDOUT_USBTTY to enable preboot stdout redirect to usbtty
31594     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31596 commit cfca33837ec83829c6a49c3bcc86c31bc2495ff6
31597 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31598 Date:   Wed Jan 28 21:57:59 2009 +0100
31600     move Samsung's board to board/samsung
31602     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31604 commit e4943ec57466ea5dfa085e7a9e0ec44cb93c4e1e
31605 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31606 Date:   Thu Jan 29 12:07:21 2009 +0100
31608     move ARM Ltd. to vendor dir
31610     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31612 commit a87fb1b308a2a375cb9ca74ca0dd3e2c5793d3bf
31613 Author: Larry Johnson <lrj@acm.org>
31614 Date:   Wed Jan 28 15:30:37 2009 -0500
31616     ppc4xx: Clean up configuration file for Korat board
31618     This patch updates the default environmental variables for the
31619     Korat PPC 440EPx board, and makes additional minor fixes.
31621     Signed-off-by: Larry Johnson <lrj@acm.org>
31622     Signed-off-by: Stefan Roese <sr@denx.de>
31624 commit f20405e31680efc36293c59b4963db57c9d93df4
31625 Author: Larry Johnson <lrj@acm.org>
31626 Date:   Wed Jan 28 15:30:02 2009 -0500
31628     ppc4xx: Add variable "korat_usbcf" for Korat board
31630     The new environment variable "korat_usbcf" selects the USB
31631     port used by the Korat board's CompactFlash controller.
31633     Signed-off-by: Larry Johnson <lrj@acm.org>
31634     Signed-off-by: Stefan Roese <sr@denx.de>
31636 commit fc01ea1e27d5b124f0a1868d0ce569f156d58dfe
31637 Author: Gunnar Rangoy <gunnar@rangoy.com>
31638 Date:   Fri Jan 23 12:56:31 2009 +0100
31640     AVR32: macb - Search for PHY id
31642     This patch adds support for searching through available PHY-addresses in
31643     the macb-driver. This is needed for the ATEVK1100 evaluation board,
31644     where the PHY-address will be initialized to either 1 or 7.
31646     This patch adds a config option, CONFIG_MACB_SEARCH_PHY, which when
31647     enabled tells the driver to search for the PHY address.
31649     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
31650     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
31651     Signed-off-by: Olav Morken <olavmrk@gmail.com>
31652     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31654 commit af8626e0c08a780d9ded1d9c4883a89355f60e75
31655 Author: Olav Morken <olavmrk@gmail.com>
31656 Date:   Fri Jan 23 12:56:26 2009 +0100
31658     Fix IP alignment problem
31660     This patch removes volatile from:
31661     volatile IP_t *ip = (IP_t *)xip;
31663     Due to a bug, avr32-gcc will assume that ip is aligned on a word boundary when
31664     using volatile, which causes an exception since xip isn't aligned on a word
31665     boundary.
31667     Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
31668     Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
31669     Signed-off-by: Olav Morken <olavmrk@gmail.com>
31670     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31672 commit 12a8b9db12f82a189ff143a58731007f5469da61
31673 Author: Ron Madrid <ron_madrid@sbcglobal.net>
31674 Date:   Wed Jan 28 16:17:21 2009 -0800
31676     Marvell 88E1118 interrupt fix
31678     This patch adjusts the LED control so that interrupt lines are not reading LEDs
31679     and effectively causing indefinite interrupts to the controller.
31681     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
31682     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31684 commit 9a37f2acc31a3296dddd3574ea9eaf7f319807b9
31685 Author: Stefan Roese <sr@denx.de>
31686 Date:   Wed Jan 21 17:14:26 2009 +0100
31688     net: smc911x.c: Add LAN9211 to chip_ids[] array
31690     Signed-off-by: Stefan Roese <sr@denx.de>
31691     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31693 commit 75edebe3011c963a7cd84be0f4a987477f2aaf89
31694 Author: Mike Frysinger <vapier@gentoo.org>
31695 Date:   Tue Jan 27 16:53:39 2009 -0500
31697     Move is_valid_ether_addr() to include/net.h
31699     Import the is_valid_ether_addr() function from the Linux kernel.
31701     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31702     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31704 commit 268859338c0188eab1d0d3b867b7dad3c5cc734a
31705 Author: Michal Simek <monstr@monstr.eu>
31706 Date:   Mon Jan 5 12:25:13 2009 +0100
31708     net: Sort Makefile labels
31710     Signed-off-by: Michal Simek <monstr@monstr.eu>
31711     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31713 commit 1fbcbe9a95f39afb2df6ab8cba25b284b47ebfb2
31714 Author: Wolfgang Denk <wd@denx.de>
31715 Date:   Wed Jan 28 23:06:42 2009 +0100
31717     85xx: Fix compile breakage with sbc8540 and sbc8560
31719     This fixes an error which raises just a warning:
31720     sbc8560.c:250: warning: passing argument 2 of 'strmhz' makes integer from pointer without a cast
31722     Signed-off-by: Wolfgang Denk <wd@denx.de>
31724 commit 62625c0b081bd4019cecab14e9fc2e05e48d2a58
31725 Author: Mike Frysinger <vapier@gentoo.org>
31726 Date:   Wed Jan 28 13:48:55 2009 -0500
31728     SPD823TS: do not define CONFIG_CMD_ENV
31730     Since the SPD823TS board does not actually have any writable flash to save
31731     its environment, undefine CONFIG_CMD_ENV so the "saveenv" command is
31732     disabled.
31734     This fixes the build error:
31735     common/libcommon.a(cmd_nvedit.o): In function `do_saveenv':
31736     common/cmd_nvedit.c:557: undefined reference to `saveenv'
31737     make: *** [u-boot] Error 1
31739     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31741 commit 7379f45a7bc71941c3920c2f6b3c3faa4d7fd315
31742 Author: Dirk Behme <dirk.behme@googlemail.com>
31743 Date:   Wed Jan 28 21:40:16 2009 +0100
31745     OMAP3: Add Zoom1 board support
31747     Support for Zoom MDK with OMAP3430. Details of Zoom MDK available here:
31748     http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit
31750     Signed-off-by: Nishanth Menon <nm@ti.com>
31751     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
31753 commit 2be2c6cc674e26237962f5cf4c0d311e139e4241
31754 Author: Dirk Behme <dirk.behme@googlemail.com>
31755 Date:   Wed Jan 28 21:39:58 2009 +0100
31757     OMAP3: Add Pandora support
31759     Add Pandora support.
31761     Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
31762     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
31763     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
31765 commit ad9bc8e52d174d699d1367be0b90089e4fdeb933
31766 Author: Dirk Behme <dirk.behme@googlemail.com>
31767 Date:   Wed Jan 28 21:39:58 2009 +0100
31769     OMAP3: Add EVM board
31771     Add EVM board support.
31773     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
31774     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
31775     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
31777 commit 9d0fc8110e7e755239329c26f300d5fc9946d3ec
31778 Author: Dirk Behme <dirk.behme@googlemail.com>
31779 Date:   Wed Jan 28 21:39:57 2009 +0100
31781     OMAP3: Add Overo board
31783     Add Overo board support.
31785     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
31786     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
31787     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
31789 commit f904cdbb68167c647887f19929ad295dbaac8862
31790 Author: Dirk Behme <dirk.behme@googlemail.com>
31791 Date:   Tue Jan 27 18:19:12 2009 +0100
31793     OMAP3: Add common power code, README, and BeagleBoard
31795     Add BeagleBoard support, common power code and README.
31797     Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
31798     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
31800 commit 9cda4f104b5313fadc21b75aa781c7a6aaf6ea60
31801 Author: Kumar Gala <galak@kernel.crashing.org>
31802 Date:   Wed Jan 28 08:31:10 2009 -0600
31804     85xx: Fix compile breakage with MPC8540EVAL
31806     Configuring for MPC8540EVAL board...
31807     mpc8540eval.c: In function 'checkboard':
31808     mpc8540eval.c:53: error: invalid operands to binary /
31809     make[1]: *** [mpc8540eval.o] Error 1
31811     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31813 commit 1a448db77b10153703bc5e4ad13dd55d88beb1d6
31814 Author: Bryan Wu <bryan.wu@analog.com>
31815 Date:   Sun Jan 18 23:04:27 2009 -0500
31817     usb_scan_devices: fix output with no devices
31819     We should check the return of usb_new_device() so that if no USB device is
31820     found, we print out the right message rather than always saying "new usb
31821     device found".
31823     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
31824     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31825     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31827 commit f1c1f540243438246aefb703fdcf16957e3a72e1
31828 Author: Stefan Roese <sr@denx.de>
31829 Date:   Thu Jan 22 10:11:21 2009 +0100
31831     USB: Add high-speed (480Mb/s) to all USB related outputs
31833     With this patch the USB related connection speed output ("usb tree" command and
31834     debug output) is now high-speed enabled.
31836     This patch also fixes a compilation warning when debugging is enabled.
31838     Signed-off-by: Stefan Roese <sr@denx.de>
31839     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31841 commit daa2dafb450a8073a4e42fd46cd4e995b208e4cb
31842 Author: Stefan Roese <sr@denx.de>
31843 Date:   Wed Jan 21 17:12:19 2009 +0100
31845     USB: Add dcache support to the EHCI driver
31847     This patch adds routines to handle (flush/invalidate) the dcache for the
31848     QH and qTD structures and data buffers. This is needed on platforms using
31849     this EHCI support with dcache enabled (like the MIPS VCT board port).
31851     Signed-off-by: Stefan Roese <sr@denx.de>
31852     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31854 commit 4e0ea0efc1e501186aca8577a4042fc6fa641602
31855 Author: Stefan Roese <sr@denx.de>
31856 Date:   Wed Jan 21 17:12:28 2009 +0100
31858     USB: Add EHCI support for VCT EHCI controller
31860     Signed-off-by: Stefan Roese <sr@denx.de>
31861     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31863 commit 832e61418eedfea172bd2fdfd0ea0d199cc70a9d
31864 Author: Stefan Roese <sr@denx.de>
31865 Date:   Wed Jan 21 17:12:10 2009 +0100
31867     USB: Add config option to call ehci_hcd_init() again after EHCI reset
31869     This patch adds the config option CONFIG_EHCI_HCD_INIT_AFTER_RESET
31870     to call ehci_hcd_init() again after ehci_reset() is executed. This
31871     is needed for the upcoming VCT EHCI support which needs to re-init
31872     the hcd part again after the EHCI CMD_RESET is executed.
31874     Signed-off-by: Stefan Roese <sr@denx.de>
31875     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31877 commit 597eb28bd9691266b7b804364cda577cdb51d106
31878 Author: Stefan Roese <sr@denx.de>
31879 Date:   Wed Jan 21 17:12:01 2009 +0100
31881     USB: Fix speed detection on EHCI cntr with root hub transaction translators
31883     This patch fixes an issue that the speed of USB devices was not detected
31884     correctly on some EHCI controllers. This will be used on the upcoming VCT
31885     EHCI support.
31887     Signed-off-by: Stefan Roese <sr@denx.de>
31888     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31890 commit 20cc06611ea33fc0a67a5e56e6476379d2de3091
31891 Author: Thomas Abraham <t-abraham@ti.com>
31892 Date:   Sun Jan 4 09:41:20 2009 +0530
31894     usb : musb : Enabling USB MSC support for DM6446 (TI DaVinci) platform
31896     Enabling USB MSC support for DM6446 (TI DaVinci) platform in the
31897     configuration file.
31899     Signed-off-by: Ravi Babu <ravibabu@ti.com>
31900     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
31901     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
31902     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
31903     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31905 commit 538ef967715322f64ee08efa2296d9682111b014
31906 Author: Thomas Abraham <t-abraham@ti.com>
31907 Date:   Sun Jan 4 09:41:16 2009 +0530
31909     usb : musb : Enabling DM6446 (TI DaVinci) USB module power
31911     Enabling DM6446 (TI DaVinci) USB module power and MUSB low-level
31912     controller hook up to USB core layer.
31914     Signed-off-by: Ravi Babu <ravibabu@ti.com>
31915     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
31916     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
31917     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
31918     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31920 commit e142e9f35f8ec61e74bf8019428b003f5070c33b
31921 Author: Thomas Abraham <t-abraham@ti.com>
31922 Date:   Sun Jan 4 09:41:13 2009 +0530
31924     usb : musb : Adding DM6446 (TI DaVinci) platform specific USB support
31926     Adding DM6446 (TI DaVinci) platform specific USB functionality for
31927     USB Phy and VBUS initialization.
31929     Signed-off-by: Ravi Babu <ravibabu@ti.com>
31930     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
31931     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
31932     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
31933     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31935 commit a9d39ebe91ecdd5ac0a0cf56ea162a19773db8da
31936 Author: Thomas Abraham <t-abraham@ti.com>
31937 Date:   Sun Jan 4 09:41:09 2009 +0530
31939     usb : musb : Adding USB VBUS enable functionality for DM644x DVEVM
31941     Adding USB VBUS enable functionality for DM644x DVEVM (TI DaVinci)
31942     platform.
31944     Signed-off-by: Ravi Babu <ravibabu@ti.com>
31945     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
31946     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
31947     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
31948     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31950 commit a142896934c755e679ba87e227a8e449f39b0012
31951 Author: Thomas Abraham <t-abraham@ti.com>
31952 Date:   Sun Jan 4 09:41:03 2009 +0530
31954     usb : musb : Adding host controller driver for Mentor USB controller
31956     Adding Mentor USB core functionality and Mentor USB Host controller
31957     functionality for Mentor USB OTG controller (musbhdrc).
31959     Signed-off-by: Ravi Babu <ravibabu@ti.com>
31960     Signed-off-by: Swaminathan S <swami.iyer@ti.com>
31961     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
31962     Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
31963     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31965 commit c7d703f3f3c3d6b020bda4cf633f8a6167c3cd2a
31966 Author: Mike Frysinger <vapier@gentoo.org>
31967 Date:   Thu Jan 1 18:27:27 2009 -0500
31969     usb.h: use standard __LITTLE_ENDIAN from Linux headers
31971     Rather than forcing people to define a custom "LITTLEENDIAN", just use the
31972     __LITTLE_ENDIAN one from the Linux byteorder headers that every arch is
31973     already setting up.
31975     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
31976     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31978 commit 7b6e31eb17e3ff76238a60803fc531517d516223
31979 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
31980 Date:   Wed Dec 31 10:33:56 2008 +0100
31982     USB ehci ixp4xx support
31984     Add USB ehci ixp4xx host controller. Test on ixdp465 board.
31986     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
31987     Signed-off-by: Remy Bohmer <linux@bohmer.net>
31989 commit 1ed9f9adc88218841dfeb60b9094a5a548bff009
31990 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
31991 Date:   Wed Dec 31 10:33:22 2008 +0100
31993     USB ehci remove infinite loop and use handshake function
31995     USB ehci code cleanup. Use handshake instead of infinite while loop
31996     to check the STD_ASS status
31998     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
31999     Signed-off-by: Remy Bohmer <linux@bohmer.net>
32001 commit 8fea2914ac974029b65926ef8247d908f84d202d
32002 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
32003 Date:   Wed Dec 31 10:32:41 2008 +0100
32005     Add initial support for USB ehci pci
32007     Add USB ehci pci support. This patch doesn't include any
32008     pci_ids and it is not tested on real hardware.
32010     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
32011     Signed-off-by: Remy Bohmer <linux@bohmer.net>
32013 commit 14e4111cdab7e7738ff6a203d445e4d8377f058f
32014 Author: Bryan Wu <Bryan.Wu@analog.com>
32015 Date:   Thu Jan 1 19:48:07 2009 -0500
32017     usb_storage: do not reset SanDisk Corporation U3 Cruzer Micro USB thumb drive
32019     The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive 000016244373FFB4
32020     does not like to be reset, so check for it.
32022     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
32023     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32024     Signed-off-by: Remy Bohmer <linux@bohmer.net>
32026 commit 1eb734fed3b79a5e6106dad16e88041894fdab30
32027 Author: Thomas Abraham <t-abraham@ti.com>
32028 Date:   Sun Jan 4 12:15:35 2009 +0530
32030     usb : usb_kbd : Populating 'priv' member of USB keyboard device_t structure
32032     This patch populates the 'priv' field of the USB keyboard device_t
32033     structure. The 'priv' field is populated with the address of the
32034     'struct usb_device' structure that represents the USB device.
32036     The 'priv' field can then be used in the 'usb_event_poll' function to
32037     determine the USB device that requires to be polled. An
32038     example of its usage in 'usb_event_poll' function is as below.
32040         device_t *dev;
32041         struct usb_device *usb_kbd_dev;
32043         <snip>
32045         dev = device_get_by_name("usbkbd");
32046         usb_kbd_dev = (struct usb_device *)dev->priv;
32047         iface = &usb_kbd_dev->config.if_desc[0];
32049     Signed-off-by: Thomas Abraham <t-abraham@ti.com>
32050     Signed-off-by: Remy Bohmer <linux@bohmer.net>
32052 commit 366523c26b6320af171459b19e6e0e9e3baa83ca
32053 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
32054 Date:   Thu Dec 18 10:05:37 2008 +0100
32056     USB change speed
32058     USB changes the speed according to the port status
32060     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
32061     Signed-off-by: Remy Bohmer <linux@bohmer.net>
32063 commit c0d722fe7ee1cb452dfd9246419188b3f6d9c4df
32064 Author: Remy Böhmer <linux@bohmer.net>
32065 Date:   Sat Dec 13 22:51:58 2008 +0100
32067     EHCI fix code and ixp4xx test.
32068     USB ehci configuration parameter:
32070     #define CONFIG_CMD_USB          1
32071     #define CONFIG_USB_STORAGE      1
32072     #define CONFIG_USB_EHCI
32073     #define CONFIG_USB_EHCI_IXP4XX      1
32074     #define CONFIG_EHCI_IS_TDI  1
32075     #define CONFIG_EHCI_DESC_BIG_ENDIAN     1
32076     #define CONFIG_EHCI_MMIO_BIG_ENDIAN     1
32077     #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 2
32078     #define CONFIG_LEGACY_USB_INIT_SEQ      1
32080     2 USB Device(s) found
32081            scanning bus for storage devices... 0 Storage Device(s) found
32082     => usb tree
32084     Device Tree:
32085       1  Hub (1.5MBit/s, 0mA)
32086       |  u-boot EHCI Host Controller
32087       |
32088       |+-2  Mass Storage (12MBit/s, 100mA)
32089            Sony Storage Media 0C07040930296
32091     =>
32093     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
32094     Signed-off-by: Remy Böhmer <linux@bohmer.net>
32096 commit 51ab142b8b546d5e627b2c8c36d0adae222565f7
32097 Author: michael <michael@panicking.retis>
32098 Date:   Thu Dec 11 13:43:55 2008 +0100
32100     [PATCH] This patch add varius fix to the ehci.
32101     - fix ehci_readl, ehci_writel
32102     - introduce new define in ehci.h
32103     - introduce the handshake function for waiting on a register
32104     - fix usb_ehci_fsl with the new HC_LENGTH macro
32106     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
32107     Signed-off-by: Remy Böhmer <linux@bohmer.net>
32109 commit db63299b1dd2894ade542278210bccd046de6435
32110 Author: michael <michael@panicking.retis>
32111 Date:   Wed Dec 10 17:55:19 2008 +0100
32113     [PATCH] Fix EHCI usb. I start to test on a
32114     IXP465 board and I find some errors in the code. This
32115     patch fix:
32116     - descriptor initizialization (config, interface and endpoint
32117       must be one next-to the other when the USB_DT_CONFIG message
32118       is send.
32119     - FIX little/endian bigendian (introduce the CONFIG_EHCI_DESC_BIG_ENDIAN
32120       and the CONFIG_EHCI_MMIO_BIG_ENDIAN)
32121     - Introduce the linux version of the usb_config_descriptor and
32122       usb_interface descriptor. This descriptor does't contains
32123       u-boot extension.
32125     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
32126     Signed-off-by: Remy Böhmer <linux@bohmer.net>
32128 commit 6b92487dcf9afe83a3570153d66940fdb293be76
32129 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
32130 Date:   Fri Nov 28 13:22:09 2008 +0100
32132     USB ehci freescale support
32134     Add USB ehci freescale support
32136     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
32137     Signed-off-by: Remy Böhmer <linux@bohmer.net>
32139 commit aaf098cfeed04595d4c5100ffd39095d79edbf90
32140 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
32141 Date:   Fri Nov 28 13:20:46 2008 +0100
32143     USB ehci core support
32145     Add USB ehci core support
32147     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
32148     Signed-off-by: Remy Böhmer <linux@bohmer.net>
32150 commit 3e126484df7868e341545cce740b24b62b0cd3b7
32151 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
32152 Date:   Fri Nov 28 13:19:19 2008 +0100
32154     Prepare USB layer for ehci
32156     Prepare USB layer for ehci support
32158     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
32159     Signed-off-by: Remy Böhmer <linux@bohmer.net>
32161 commit a0cb3fc31e58996a1c5732715ac04159d4d284fd
32162 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
32163 Date:   Wed Dec 10 15:52:06 2008 +0100
32165     USB storage cleanup patch
32167     Cleanup usb storage
32169     Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
32170     Signed-off-by: Remy Bohmer <linux@bohmer.net>
32172 commit fe033ad6d0883063fe857237abb9436fab03208c
32173 Author: Mike Frysinger <vapier@gentoo.org>
32174 Date:   Sun Oct 12 06:02:55 2008 -0400
32176     Blackfin: fixup misc warnings such as printf's and missing casts
32178     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32180 commit 1f4a3bb50343719c434d7e2541a2f86480a6d25c
32181 Author: Mike Frysinger <vapier@gentoo.org>
32182 Date:   Sun Oct 12 22:09:26 2008 -0400
32184     Blackfin: convert old boards to use COBJS-y Makefile style
32186     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32188 commit 1f75d6f0ff005762d3e6ad92ae4ce2ab366b3bb5
32189 Author: Mike Frysinger <vapier@gentoo.org>
32190 Date:   Sat Oct 11 22:38:37 2008 -0400
32192     Blackfin: bf533-stamp: rewrite resource swap logic
32194     The old swap function tended to clobber unrelated pins and screw up masks.
32195     Rewrite the thing from scratch so it only uses the resources it needs.
32197     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32199 commit 29d4ea0a9073c82469184331010136f52edf8db6
32200 Author: Mike Frysinger <vapier@gentoo.org>
32201 Date:   Sat Oct 11 22:08:42 2008 -0400
32203     Blackfin: bootldr: implement BF53x/BF56x LDR loader
32205     The BF53x/BF56x parts do not have an on-chip ROM to boot LDRs out of
32206     arbitrary memory locations, so implement a basic one in software.
32208     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32210 commit 8b35e3aeff6c2d747c37697997b3f8a808432329
32211 Author: Mike Frysinger <vapier@gentoo.org>
32212 Date:   Sat Oct 11 22:05:42 2008 -0400
32214     Blackfin: implement real write support for OTP
32216     Now that real documentation has been released for the OTP interface and
32217     the on-chip ROM wrt writing/timings, implement support for reading/writing
32218     as well as dumping/locking.
32220     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32222 commit 9372c3214808fab545227d8d0f76b3bfcc6760ec
32223 Author: Mike Frysinger <vapier@gentoo.org>
32224 Date:   Sat Oct 11 22:04:05 2008 -0400
32226     Blackfin: update on-chip ROM API
32228     This brings the API for the on-chip ROM in line with the toolchain and
32229     hardware documentation.
32231     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32233 commit 7633903bff432ec7b27905dce7396958553f2be6
32234 Author: Mike Frysinger <vapier@gentoo.org>
32235 Date:   Sat Oct 11 21:52:17 2008 -0400
32237     Blackfin: allow serial console to be disabled
32239     Some devices have no UART device pulled out, so allow people to disable the
32240     driver completely in favor of other methods (like JTAG-console).
32242     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32244 commit 36ea8e9ad1107af12d244bba8c73e85b9f655e45
32245 Author: Mike Frysinger <vapier@gentoo.org>
32246 Date:   Sat Oct 11 21:51:20 2008 -0400
32248     Blackfin: support console-over-JTAG
32250     The Blackfin JTAG has the ability to pass data via a back-channel without
32251     halting the processor.  Utilize that channel to emulate a console.
32253     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32255 commit cf8f2efb5f39c5225da92391c14a07eecbeca881
32256 Author: Mike Frysinger <vapier@gentoo.org>
32257 Date:   Sat Oct 11 21:49:06 2008 -0400
32259     Blackfin: handle new anomalies with reset
32261     Workaround fun new anomalies related to software reset of the processor.
32263     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32265 commit b1e9435b643043dd8fbd1fcc47309c6acb7b3c8e
32266 Author: Mike Frysinger <vapier@gentoo.org>
32267 Date:   Sat Oct 11 21:44:00 2008 -0400
32269     Blackfin: pass RETX to Linux
32271     Make sure we save the value of RETX at power on and then pass it on to the
32272     kernel so that it can nicely debug a "double-fault-caused-a-reset" crash.
32274     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32276 commit b5eba3fafcccd1979380f12a256bd0e19be3d61e
32277 Author: Mike Frysinger <vapier@gentoo.org>
32278 Date:   Sat Oct 11 21:40:26 2008 -0400
32280     Blackfin: clarify relocation comment during init
32282     People often ask questions about the init process and when things go
32283     from flash to relocated base, so clarify the comments a bit.
32285     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32287 commit 95433f6d43ede6b40c1d900f3f704c839aa074f1
32288 Author: Mike Frysinger <vapier@gentoo.org>
32289 Date:   Sat Oct 11 21:23:41 2008 -0400
32291     Blackfin: just set SP register directly during init
32293     No need to set the SP register indirectly to the configured value when it
32294     can be set directly.
32296     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32298 commit 51230e6e356ccf4c932e0c4ff54f1e49da02285c
32299 Author: Mike Frysinger <vapier@gentoo.org>
32300 Date:   Sat Oct 11 21:15:53 2008 -0400
32302     Blackfin: add portmuxing for UARTs on the BF51x
32304     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32306 commit 4f6a313240c531042f16909a3a170ab047b95779
32307 Author: Mike Frysinger <vapier@gentoo.org>
32308 Date:   Sun Jun 1 01:26:29 2008 -0400
32310     Blackfin: respect CONFIG_CLKIN_HALF
32312     As pointed out by Ivan Koryakovskiy, the initialization code was not
32313     actually respecting the CONFIG_CLKIN_HALF option when configuring the
32314     PLL_CTL register.
32316     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32318 commit dc2bfb0b58d7462b9eba68f3ae38e38cada0ad33
32319 Author: Mike Frysinger <vapier@gentoo.org>
32320 Date:   Sun Jun 1 01:21:34 2008 -0400
32322     Blackfin: use common memcpy routine during init
32324     Rather than using a local custom memcpy function, just call the existing
32325     optimized Blackfin version.
32327     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32329 commit 362c943347364e9373af4c5530778491ab56ec2e
32330 Author: Mike Frysinger <vapier@gentoo.org>
32331 Date:   Wed Apr 9 02:27:06 2008 -0400
32333     Blackfin: set default boot SPI CS for BF538/BF539
32335     The BF538/BF539 use CS2 for booting off of rather than CS1 like newer
32336     Blackfin parts.
32338     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32340 commit 74dde80bd5d55bc146630853ca191aaeea7c30f4
32341 Author: Mike Frysinger <vapier@gentoo.org>
32342 Date:   Wed Apr 9 02:20:59 2008 -0400
32344     Blackfin: punt unused BF533-STAMP definitions
32346     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32348 commit fee531eeefc3b5f2c63c7fe27b9f55d924c59c26
32349 Author: Mike Frysinger <vapier@gentoo.org>
32350 Date:   Fri Apr 18 20:44:11 2008 -0400
32352     Blackfin: resurrect BF533-STAMP video splash driver
32354     This video driver used to live in the Blackfin cpu directory, but it was
32355     lost during the unification process.  This brings it back.
32357     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32359 commit a750d038f2548d846ea1e046d873dc932d041319
32360 Author: Mike Frysinger <vapier@gentoo.org>
32361 Date:   Wed Apr 9 02:31:29 2008 -0400
32363     Blackfin: tighten up post memory coding style
32365     No functional changes here; just cleanup code style a bit.
32367     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32369 commit 0649908f92c9bd214dd139aa3d4698c1654a45c6
32370 Author: Mike Frysinger <vapier@gentoo.org>
32371 Date:   Wed Apr 9 02:29:18 2008 -0400
32373     Blackfin: bf537-stamp nand: fix more style errors in previous commit
32375     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32377 commit 41f3325ae9add641036d7cb362e884b698e53f07
32378 Author: Mike Frysinger <vapier@gentoo.org>
32379 Date:   Sat Oct 11 20:31:17 2008 -0400
32381     Blackfin: drop dead/wrong debug code in initdram()
32383     The DEBUG code in initdram() is quite old and was never really useful, so
32384     just drop it altogether.  Common Blackfin debug code does a better job.
32386     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32388 commit 65ba1abd3b90e0b2585745809b78e2651bd3bacb
32389 Author: Mike Frysinger <vapier@gentoo.org>
32390 Date:   Sat Oct 11 20:30:28 2008 -0400
32392     Blackfin: bf533-ezkit: shuffle flash defines a little
32394     Some of the flash defines weren't in the correct location and caused build
32395     problems in some configurations, so let's move types and defines to better
32396     local locations.
32398     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32400 commit be853bf86b41e91f4c422f0f56fdf87ea3191266
32401 Author: Mike Frysinger <vapier@gentoo.org>
32402 Date:   Mon Oct 6 04:16:47 2008 -0400
32404     Blackfin: overhaul i2c driver
32406     The current Blackfin i2c driver does not work properly with certain devices
32407     due to it breaking up transfers incorrectly.  This is a rewrite of the
32408     driver and relocates it to the newer place in the source tree.
32410     Also remove duplicated I2C speed defines in Blackfin board configs and
32411     disable I2C slave address usage since it isn't implemented.
32413     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32415 commit b6edc719a106ab7fa6e6950b4d97bc39c1368e45
32416 Author: Mike Frysinger <vapier@gentoo.org>
32417 Date:   Mon Oct 6 04:00:07 2008 -0400
32419     Blackfin: respect CONFIG_SYS_MONITOR_LEN for default flash protection
32421     Respect the CONFIG_SYS_MONITOR_LEN define rather than assuming a size of
32422     128kB when setting up the default flash protection region for U-Boot
32423     itself.
32425     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32427 commit 78a0ba7dc24c9682371f6ee8549b569fb573a329
32428 Author: Mike Frysinger <vapier@gentoo.org>
32429 Date:   Mon Oct 6 03:57:39 2008 -0400
32431     Blackfin: respect/check CONFIG_SYS_GBL_DATA_SIZE
32433     When setting up the global data, rather than relying on sizeof(), use the
32434     common CONFIG_SYS_GBL_DATA_SIZE define.
32436     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32438 commit 01815c2d06c5b838f2cd536703e47bd2c9148194
32439 Author: Mike Frysinger <vapier@gentoo.org>
32440 Date:   Mon Oct 6 03:52:24 2008 -0400
32442     Blackfin: implement general support for CONFIG_STATUS_LED
32444     Here are the Blackfin-specific and board-independent pieces for status leds.
32446     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32448 commit 6882b5a79a3247494b62c05015fa672557f1bfaa
32449 Author: Mike Frysinger <vapier@gentoo.org>
32450 Date:   Mon Oct 6 03:49:32 2008 -0400
32452     Blackfin: do not init i2c in Blackfin board init
32454     The common code takes care of calling i2c_init() when needed, so no point
32455     in us doing it as well.
32457     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32459 commit 1118ea73698eee6e72ef5cbfc00e41746040304f
32460 Author: Mike Frysinger <vapier@gentoo.org>
32461 Date:   Mon Oct 6 03:42:20 2008 -0400
32463     Blackfin: bfin_mac: update port muxing
32465     Adds support more Blackfin parts and fixes broken muxing for older ones.
32467     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32469 commit 05b75e48832fc4afeecf8e76d704349557dffa35
32470 Author: Mike Frysinger <vapier@gentoo.org>
32471 Date:   Mon Oct 6 03:35:44 2008 -0400
32473     Blackfin: fix dcache handling when doing dma memcpy's
32475     Our dcache invalidate function doesn't just invalidate, it also flushes.
32476     So rename the function accordingly and fix the dma_memcpy() function so it
32477     doesn't inadvertently corrupt the data destination.
32479     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32481 commit 68e5632494168095d75f120af70043b68afd2476
32482 Author: Mike Frysinger <vapier@gentoo.org>
32483 Date:   Thu Aug 7 18:56:56 2008 -0400
32485     Blackfin: dont generate ldrs with --force
32487     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32489 commit 746290dfd86a70b41fc5fdd3df1424a647d5c5e8
32490 Author: Mike Frysinger <vapier@gentoo.org>
32491 Date:   Thu Aug 7 18:55:30 2008 -0400
32493     Blackfin: pass --bmode/--initcode when creating ldr
32495     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32497 commit 0332e4df71fccf9a96c5a4393e3c5d5daa50880a
32498 Author: Mike Frysinger <vapier@gentoo.org>
32499 Date:   Thu Aug 7 18:39:27 2008 -0400
32501     Blackfin: minimize time cache is turned off when replacing cplb entries
32503     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32505 commit 21d631360430cf0ae9099612273cd4de28911ba9
32506 Author: Mike Frysinger <vapier@gentoo.org>
32507 Date:   Thu Aug 7 15:31:13 2008 -0400
32509     Blackfin: split cache handling out of dma_memcpy()
32511     Creating a new dma_memcpy() function that skips all cache checks allows us
32512     to use the function in very early init where the cache is not yet setup.
32514     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32516 commit d31eb38512bed377d5d4b3c696662e52120a2e4c
32517 Author: Mike Frysinger <vapier@gentoo.org>
32518 Date:   Thu Aug 7 15:30:49 2008 -0400
32520     Blackfin: abort dma_memcpy() for L1 scratchpad
32522     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32524 commit 81b799add709177e838466461f7b9989488b0fd5
32525 Author: Mike Frysinger <vapier@gentoo.org>
32526 Date:   Thu Aug 7 15:27:52 2008 -0400
32528     Blackfin: rename bootm.c to boot.c
32530     The boot file contains functions for more than just "bootm", so rename it
32531     accordingly.
32533     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32535 commit d7ca7dd5bfc418ac173e9d2712f6cc2d8147a091
32536 Author: Mike Frysinger <vapier@gentoo.org>
32537 Date:   Thu Aug 7 13:22:37 2008 -0400
32539     Blackfin: set more sane default board config values
32541     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32543 commit 36cd52a00794fb15ffab05d640acca92d7482993
32544 Author: Mike Frysinger <vapier@gentoo.org>
32545 Date:   Thu Aug 7 15:24:59 2008 -0400
32547     Blackfin: convert CMD_LINE_ADDR to CONFIG_LINUX_CMDLINE_{ADDR,SIZE}
32549     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32551 commit c8054bc12e00669bd7588f2b30fef48aa94babac
32552 Author: Mike Frysinger <vapier@gentoo.org>
32553 Date:   Thu Aug 7 13:21:27 2008 -0400
32555     Blackfin: add bit defines for DDR parts
32557     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32559 commit 154502fe0796f3b7a4698378c5d2080ae28a9782
32560 Author: Mike Frysinger <vapier@gentoo.org>
32561 Date:   Thu Aug 7 13:21:11 2008 -0400
32563     Blackfin: add defines to describe active bootrom behavior
32565     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32567 commit 2b6fd5c77db9c6ed3cea9799c86ff922cf0107b2
32568 Author: Kim Phillips <kim.phillips@freescale.com>
32569 Date:   Tue Jan 27 16:03:53 2009 -0600
32571     mpc83xx: fix undefined reference to `flush_cache' error in simpc8313 build
32573     extend commit c70564e6b1bd08f3230182392238907f3531a87e
32574     "NAND: Fix cache and memory inconsistency issue" to add the cache.o dependency
32575     to the simpc8313 build and fix this:
32577     ...Large Page NAND...Configuring for SIMPC8313 board...
32578     nand_boot_fsl_elbc.o: In function `nand_boot':
32579     nand_spl/board/sheldon/simpc8313/nand_boot_fsl_elbc.c:150: undefined reference to `flush_cache'
32580     make[1]: *** [/home/r1aaha/git/u-boot-mpc83xx/nand_spl/u-boot-spl] Error 1
32581     make: *** [nand_spl] Error 2
32583     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32585 commit 54a7cc4912feefa45be961cc47cc159563725d2f
32586 Author: Wolfgang Denk <wd@denx.de>
32587 Date:   Wed Jan 28 09:25:31 2009 +0100
32589     mpc8536ds.c: include sata.h to for needed function prototypes
32591     Signed-off-by: Wolfgang Denk <wd@denx.de>
32593 commit 2fb2604d5c20beb061b0a94282b7f6eb14d00cb8
32594 Author: Peter Tyser <ptyser@xes-inc.com>
32595 Date:   Tue Jan 27 18:03:12 2009 -0600
32597     Command usage cleanup
32599     Remove command name from all command "usage" fields and update
32600     common/command.c to display "name - usage" instead of
32601     just "usage". Also remove newlines from command usage fields.
32603     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
32605 commit 79621bc10ba8b8c45d348994aba5b9e4923cb77b
32606 Author: Peter Tyser <ptyser@xes-inc.com>
32607 Date:   Tue Jan 27 18:03:11 2009 -0600
32609     amcc: Clean up command usage output
32611     Update taihu and taishan commands to use cmd_usage() function
32612     to display usage messages.
32614     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
32616 commit 62c3ae7c6ef215b1afa614abdf61acf077752207
32617 Author: Peter Tyser <ptyser@xes-inc.com>
32618 Date:   Tue Jan 27 18:03:10 2009 -0600
32620     Standardize command usage messages with cmd_usage()
32622     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
32624 commit 84cde2bb409c07c6ef36a192d194359d4e9ccd70
32625 Author: Peter Tyser <ptyser@xes-inc.com>
32626 Date:   Tue Jan 27 18:03:09 2009 -0600
32628     pcs440ep: Clean up led command definition
32630     The pcs440ep's led command usage formatting is non-standard.  It
32631     was made standard in preparation for larger command usage updates.
32633     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
32635 commit 9507e7867e04dc48c80ee333c2a9a5e70e887f62
32636 Author: Peter Tyser <ptyser@xes-inc.com>
32637 Date:   Tue Jan 27 18:03:08 2009 -0600
32639     Clean up diufb command definitions
32641     The diufb command usage formatting is non-standard.  It was
32642     made standard in preparation for larger command usage updates.
32644     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
32646 commit 6450a8485836fc80615ae6de6a864c33369b44f5
32647 Author: Wolfgang Denk <wd@denx.de>
32648 Date:   Wed Jan 28 00:29:26 2009 +0100
32650     Update CHANGELOG, tiny coding style cleanup.
32652     Signed-off-by: Wolfgang Denk <wd@denx.de>
32654 commit cf7e399fb35b3aea90a27d1df72f45f5d6156204
32655 Author: Mike Frysinger <vapier@gentoo.org>
32656 Date:   Tue Jan 27 16:12:21 2009 -0500
32658     SATA: do not auto-initialize during boot
32660     Rather than have the board code initialize SATA automatically during boot,
32661     make the user manually run "sata init".  This brings the SATA subsystem in
32662     line with common U-Boot policy.
32664     Rather than having a dedicated weak function "is_sata_supported", people
32665     can override sata_initialize() to do their weird board stuff.  Then they
32666     can call the actual __sata_initialize().
32668     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32670 commit 50970839712dda35399e2fa83fe818df9354d618
32671 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
32672 Date:   Mon Jan 26 08:45:14 2009 -0500
32674     part_efi: Fix partition size calculation due to inclusive ending LBA.
32676     The ending LBA is inclusive. Hence, the partition size should be
32677     ((ending-LBA + 1) - starting-LBA) to get the proper partition size.
32679     This is confirmed against the results from the parted tool.
32680     (e.g. use parted /dev/sda -s unit S print) and observe the size.
32682     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
32684 commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042
32685 Author: Tomasz Figa <tomasz.figa@gmail.com>
32686 Date:   Tue Dec 30 18:35:57 2008 +0100
32688     jffs2: Fix zero sector_size when not using CONFIG_JFFS2_CMDLINE
32690     This patch fixes a bug (?) introduced after inclusion of the new
32691     JFFS2 code.
32693     When not using CONFIG_JFFS2_CMDLINE, the code in cmd_jffs2.c doesn't
32694     fill in part->sector_size (keeping it as 0), but a correct value is
32695     needed by the code in jffs2_1pass.c. This causes all JFFS2 accesses
32696     to be in the same place of the memory, what obviously means
32697     impossibility to use the JFFS2 partition.
32699     This problem is fixed in this patch by including sector size
32700     calculation in non-CONFIG_JFFS2_CMDLINE mtdparts_init variant.
32702     Signed-off-by: Tomasz Figa <tomasz.figa_at_gmail.com>
32704 commit ba69dc26a5fd606da49573bb2f15e756a34f3f98
32705 Author: Mike Frysinger <vapier@gentoo.org>
32706 Date:   Tue Dec 30 02:59:25 2008 -0500
32708     saveenv: standardize enablement
32710     Rather than special casing each environment type for enabling the saveenv
32711     command, have them all behave the same.  This avoids bitrot as new env
32712     sources are added/removed.
32714     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32716 commit 2ac6985a7466a1c8a7aa8b2fa24d360925a82764
32717 Author: Andrew Dyer <adyer@righthandtech.com>
32718 Date:   Mon Dec 29 17:36:01 2008 -0600
32720     soft_i2c.c add option for repeated start in i2c_read()
32722     This patch adds a #define to optionally change the behaviour of
32723     i2c_read() in soft_i2c.c to send an I2C repeated start instead of a
32724     stop-start between sending the device address pointer write and
32725     reading back the data.  The current behaviour is retained as the
32726     default.
32728     While most devices will work either way, I have a smart battery(*)
32729     that requires repeated start, and someone at some point found a
32730     device that required a stop-start.
32732     (*) http://www.inspired-energy.com/Standard_Products/NL2054/NL2054%20Rev1.0%20Data%20Sheet.pdf
32734     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
32736 commit 3429071700963ca2f944c51d695a7481af0cee33
32737 Author: Wolfgang Denk <wd@denx.de>
32738 Date:   Tue Jan 27 22:07:14 2009 +0100
32740     {delta,zylonite}/lowlevel_init.S: fix typo
32742     Commit 9d803d8c mistakenly changed some constants
32743     from 0x300 into 300 - this patch fixes it.
32745     Pointed out by Tom Evans <tom@ceos.com.au>, see
32746     http://article.gmane.org/gmane.comp.boot-loaders.u-boot/51992 for
32747     details.
32749     Signed-off-by: Wolfgang Denk <wd@denx.de>
32751 commit 1bc434373013af241835c14011ac3f291dccbf53
32752 Author: Stefan Althoefer <stefan.althoefer@web.de>
32753 Date:   Sat Dec 20 19:40:41 2008 +0100
32755     drivers/net/e1000.c: missing terminator for supported devices
32757     Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
32759 commit 65f7d41031a70b1649b35020995c505edca91533
32760 Author: Wolfgang Denk <wd@denx.de>
32761 Date:   Tue Jan 27 21:36:28 2009 +0100
32763     fat.c: fix warning: array subscript is above array bounds
32765     Fix based on suggestion by David Hawkins <dwh@ovro.caltech.edu>.
32767     Signed-off-by: Wolfgang Denk <wd@denx.de>
32769 commit 107b801cf3fe39612d69d70581ebc3bf5e215554
32770 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32771 Date:   Fri Jan 2 15:11:41 2009 +0100
32773     Fix gunzip in case of insufficient output buffer
32775     U-Boot's gunzip() function does not handle the return code
32776     of zlib's inflate() function correctly. gunzip() is implemented
32777     to uncompress all input data in one run. So the correct return
32778     code for the good case is Z_STREAM_END. In case of insufficient
32779     output buffer memory inflate returns Z_OK. For gunzip() this
32780     is an error.
32782     It also makes sense to me to call inflateEnd() also in case
32783     of an error.
32785     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32787 commit 2a61eff6a82f0d6e2335d968799b3fbeb3ff4d8e
32788 Author: Stefan Roese <sr@denx.de>
32789 Date:   Wed Jan 21 17:25:01 2009 +0100
32791     MIPS: Add VCT board series support (Part 3/3)
32793     Signed-off-by: Stefan Roese <sr@denx.de>
32795 commit ae691e5719c48f1d2826cb72722497d1d162765b
32796 Author: Stefan Roese <sr@denx.de>
32797 Date:   Wed Jan 21 17:24:49 2009 +0100
32799     MIPS: Add VCT board series support (Part 2/3)
32801     Signed-off-by: Stefan Roese <sr@denx.de>
32803 commit 50752790bc9285c0c1c5235e88f3a4ef2eec1e72
32804 Author: Stefan Roese <sr@denx.de>
32805 Date:   Wed Jan 21 17:24:39 2009 +0100
32807     MIPS: Add VCT board series support (Part 1/3)
32809     Signed-off-by: Stefan Roese <sr@denx.de>
32811 commit 03d3bfb00806b5441f1871c7408c1749863e0fdc
32812 Author: Stefan Roese <sr@denx.de>
32813 Date:   Wed Jan 21 17:20:20 2009 +0100
32815     MIPS: Add flush_dcache_range() and invalidate_dcache_range()
32817     This patch adds flush_/invalidate_dcache_range() to the MIPS architecture.
32818     Those functions are needed for the upcoming dcache support for the USB
32819     EHCI driver. I chose this API because those cache handling functions are
32820     already present in the PPC architecture.
32822     Signed-off-by: Stefan Roese <sr@denx.de>
32823     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
32825 commit de832a99414ff06a4b2cdc9f5280b387da039834
32826 Author: Stefan Roese <sr@denx.de>
32827 Date:   Mon Jan 26 10:05:20 2009 +0100
32829     nand_spl: Fix compile problem with board_nand_init() prototype
32831     This patch removes the now obsolete and additionally wrongly defined
32832     board_nand_init() prototype from nand_spl/nand_boot.c.
32834     Signed-off-by: Stefan Roese <sr@denx.de>
32835     Signed-off-by: Scott Wood <scottwood@freescale.com>
32837 commit e8eac437189430d8e04a5d254ed92c58bc534a79
32838 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
32839 Date:   Wed Jan 14 08:44:26 2009 -0500
32841     CFI: Add geometry reversal for STMicro M29W320ET
32843     Added flash_fixup_stm to fix geometry reversal on STMicro M29W320ET flash chip.
32845     Modeled after flash_fixup_amd, this patch handles the geometry reversal
32846     or erase sectors that exist for ST Micro (now Numonyx) M29W320ET flash.
32847     Since I cannot test all STM's chips, the detection is implemented as
32848     narrow as possible for now.
32850     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
32851     Signed-off-by: Stefan Roese <sr@denx.de>
32853 commit 0f8e851e897b535959a0781171910cd97f33c30c
32854 Author: Jens Gehrlein <sew_s@tqs.de>
32855 Date:   Tue Dec 16 17:25:55 2008 +0100
32857     CFI: increase performance of function find_sector()
32859     Tested on TQM5200S-BD with Samsung K8P2815UQB
32861     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
32862     Signed-off-by: Stefan Roese <sr@denx.de>
32864 commit a7292871a79cc48d98e3a708dd3c3b81580db6ef
32865 Author: Jens Gehrlein <sew_s@tqs.de>
32866 Date:   Tue Dec 16 17:25:54 2008 +0100
32868     CFI: avoid redundant function call in single word programming mode
32870     The function find_sector() doesn't need to be called twice in
32871     the case of AMD command set.
32872     Tested on TQM5200S-BD with Samsung K8P2815UQB.
32874     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
32875     Signed-off-by: Stefan Roese <sr@denx.de>
32877 commit c8901f46a71ec16e084e604596a09e23bfb0f6ac
32878 Author: Stefan Roese <sr@denx.de>
32879 Date:   Mon Jan 26 10:15:23 2009 +0100
32881     ppc4xx: Remove compilation warning in gdppc440etc.c
32883     Signed-off-by: Stefan Roese <sr@denx.de>
32885 commit 91f33534728e6416d332ad2b53ad1d6fde57f7fc
32886 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32887 Date:   Fri Jan 2 12:19:47 2009 +0100
32889     ppc4xx: Remove CONFIG_SYS_IGNORE_405_UART_ERRATA_59 from config files
32891     Lot's of 405 board config files use CONFIG_SYS_IGNORE_405_UART_ERRATA_59.
32892     Either they define or undef it. Because it's not used in any source
32893     files this patch removes any references to it.
32895     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32896     Signed-off-by: Stefan Roese <sr@denx.de>
32898 commit 89b8619aaeafc922ca0c3bb249872591050c8dcc
32899 Author: Dirk Eibach <eibach@gdsys.de>
32900 Date:   Tue Dec 9 13:12:40 2008 +0100
32902     ppc4xx: Add GDsys PowerPC 440 ETX board support.
32904     Board support for the Guntermann & Drunck PowerPC 440 ETX module.
32905     Based on the AMCC Yosemite board support by Stefan Roese.
32907     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
32908     Signed-off-by: Stefan Roese <sr@denx.de>
32910 commit 3943d2ff6cc40dd601a9feeb39eb6d3d5090ea6d
32911 Author: Dirk Eibach <eibach@gdsys.de>
32912 Date:   Tue Dec 9 11:00:07 2008 +0100
32914     ppc4xx: Improve DDR autodetect
32916     Added support for a second memory bank to DDR autodetection for 440
32917     platforms.
32918     Made hardcoded values configurable.
32920     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
32921     Signed-off-by: Stefan Roese <sr@denx.de>
32923 commit 71a040f4f556cca4d30f06805d82e717b3ef1020
32924 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32925 Date:   Fri Nov 21 12:06:26 2008 +0900
32927     sh: sh7763rdp: Update sh7763rdp config
32929     Add CONFIG_NET_MULTI in config file, because sh_eth changed new newwork API.
32931     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32932     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32934 commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56
32935 Author: Gary Jennejohn <garyj@denx.de>
32936 Date:   Thu Nov 20 12:28:38 2008 +0100
32938     mgcoge make ether_scc.c work with CONFIG_NET_MULTI
32940     This change is needed for mgcoge because it uses two ethernet drivers.
32942     Add a check for the presence of the PIGGY board on mgcoge.  Without this
32943     board networking cannot work and the initialization must be aborted.
32945     Only allocate rtx once to prevent DPRAM exhaustion.
32947     Initialize ether_scc.c and the keymile-specific HDLC driver (to be added
32948     soon) in eth.c.
32950     Signed-off-by: Gary Jennejohn <garyj@denx.de>
32951     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32953 commit bd3980cc095af1728b994cdd8bf1ac430b6289e6
32954 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32955 Date:   Fri Nov 21 12:04:18 2008 +0900
32957     sh: sh_eth: Change new network API
32959     sh_eth used old network API. This patch changed new API.
32961     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
32962     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32964 commit 890a02e8ee6b8c26a6e3e505e1a2d29cd73aa6f6
32965 Author: Stefan Roese <sr@denx.de>
32966 Date:   Wed Nov 12 13:31:02 2008 +0100
32968     net: smc911x: Make register read/write functions weak
32970     This patch changes the reg_read/_write to smc911x_reg_read/_write
32971     and defines then as weak so that they can be overridden by board
32972     specific version.
32974     This will be used by the upcoming VCTH board support.
32976     Signed-off-by: Stefan Roese <sr@denx.de>
32977     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32979 commit 8b69b563039989885969d24465c56f8ac4c07c4c
32980 Author: Heiko Schocher <hs@denx.de>
32981 Date:   Thu Nov 20 09:57:14 2008 +0100
32983     powerpc: net: support for the SMSC LAN8700 PHY
32985     Signed-off-by: Heiko Schocher <hs@denx.de>
32986     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32988 commit d5254f149da9e6cd649d887b042ce577ef3ba78d
32989 Author: Alessandro Rubini <rubini@unipv.it>
32990 Date:   Sat Jan 24 18:10:37 2009 +0100
32992     Initial support for Nomadik 8815 development board
32994     The NMDK8815 board is distributed by ST Microelectornics.
32995     Other (proprietary) code must be run to unlock the CPU before
32996     U-Boot runs. doc/README.nmdk8815 outlines the boot sequence.
32998     This is the initial port, with basic infrastructure and
32999     a working serial port.
33001     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
33002     Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
33003     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33005 commit 7d264c1ef267cfc8d928bc8577a7cc907f2f5e47
33006 Author: Dirk Behme <dirk.behme@googlemail.com>
33007 Date:   Sun Dec 14 09:47:18 2008 +0100
33009     OMAP3: Add I2C support
33011     Add I2C support.
33013     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
33015 commit b1c3bf99fb477675d464aeadb5dd69d2cbc9dc7b
33016 Author: Dirk Behme <dirk.behme@googlemail.com>
33017 Date:   Sun Dec 14 09:47:17 2008 +0100
33019     OMAP3: Add MMC support
33021     Add MMC support.
33023     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
33025 commit 12201a13547ec22ddcdae278e74465e54a3be60c
33026 Author: Dirk Behme <dirk.behme@googlemail.com>
33027 Date:   Sun Dec 14 09:47:16 2008 +0100
33029     OMAP3: Add NAND support
33031     Add NAND support.
33033     Signed-off-by: Nishanth Menon <nm@ti.com>
33034     Signed-off-by: Syed Mohammed Khasim <khasim@ti.com>
33035     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
33037 commit 91eee546737ae21d930af479530997174c342b13
33038 Author: Dirk Behme <dirk.behme@googlemail.com>
33039 Date:   Sun Dec 14 09:47:15 2008 +0100
33041     OMAP3: Add common board, interrupt and system info
33043     Add common board, interrupt and system info code.
33045     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
33047 commit 5ed3e8659e5373f6a229877ac506c0b00a054fb8
33048 Author: Dirk Behme <dirk.behme@googlemail.com>
33049 Date:   Sun Dec 14 09:47:14 2008 +0100
33051     OMAP3: Add common clock, memory and low level code
33053     Add common clock, memory and low level code
33055     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
33057 commit 0b02b184003e6a5023e05d5f31de54db279b1431
33058 Author: Dirk Behme <dirk.behme@googlemail.com>
33059 Date:   Sun Dec 14 09:47:13 2008 +0100
33061     OMAP3: Add common cpu and start code
33063     Add common cpu and start code.
33065     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
33067 commit a8b6450546cd507d331b8fde384791d84bde5651
33068 Author: Dirk Behme <dirk.behme@googlemail.com>
33069 Date:   Sun Dec 14 09:47:12 2008 +0100
33071     OMAP3: Add OMAP3, memory and function prototype headers
33073     Add OMAP3, memory and function prototype header files for OMAP3.
33075     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
33077 commit 2c803210a464abbac35752ca1c737514360b4c32
33078 Author: Dirk Behme <dirk.behme@googlemail.com>
33079 Date:   Sun Dec 14 09:47:11 2008 +0100
33081     OMAP3: Add pin mux, clock and cpu headers
33083     Add pin mux, clock and cpu header files for OMAP3.
33085     Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
33087 commit 685533646f4ff17a84ec9265cabb60af325b6e1f
33088 Author: Maxim Artamonov <scn1874@yandex.ru>
33089 Date:   Wed Dec 3 05:38:17 2008 +0300
33091     bugfix for i.mx31 CCM_UPCTL reg
33093     Signed-off-by: Maxim Artamonov <scn1874 at yandex.ru>
33095 commit 24113a44ed5cd3257a0237c3961e121812fca6db
33096 Author: Mike Frysinger <vapier@gentoo.org>
33097 Date:   Tue Dec 30 03:15:38 2008 -0500
33099     easylogo: add optional gzip support
33101     Some images can be quite large, so add an option to compress the
33102     image data with gzip in the U-Boot image. Then at runtime, the
33103     board can decompress it with the normal zlib functions.
33105     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33107 commit 7e4b9b4f6f43838fad3ad72c029a3d7fc7c7d48c
33108 Author: Bryan Wu <bryan.wu@analog.com>
33109 Date:   Fri Jan 2 20:47:45 2009 -0500
33111     fat: fix unaligned errors
33113     A couple of buffers in the fat code are declared as an array of bytes.
33114     But it is then cast up to a structure with 16bit and 32bit members.
33115     Since GCC assumes structure alignment here, we have to force the
33116     buffers to be aligned according to the structure usage.
33118     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
33119     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33121 commit 68f8718df2ed4c2f43031407ccf6cfa81125dddc
33122 Author: Brad Bozarth <bflinux@yumbrad.com>
33123 Date:   Thu Jan 1 22:45:47 2009 -0500
33125     spi flash: fix crash due to spi flash miscommunication
33127     Higher spi flash layers expect to be given back a pointer that was
33128     malloced so that it can free the result, but the lower layers return
33129     a pointer that is in the middle of the malloced memory. Reorder the
33130     members of the lower spi structures so that things work out.
33132     Signed-off-by: Brad Bozarth <bflinux@yumbrad.com>
33133     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33134     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
33136 commit ce82ff05388b5ddafdf6082ef0776cce72c40b1c
33137 Author: Yuri Tikhonov <yur@emcraft.com>
33138 Date:   Sat Dec 20 14:54:21 2008 +0300
33140     FPU POST: fix warnings when building with 2.18 binutils
33142     When compile u-boot with the 2.18 binutils the following
33143     warning messages for each object file in post/lib_ppc/fpu/ is
33144     produced at the linking stage:
33146     post/libpost.a(acc1.o) uses hard float, u-boot uses soft-float
33147     ...
33149     This is because of the fact that, in general, the soft-float and
33150     hard-float ABIs are incompatible; the 2.18 binutils do checking
33151     of the Tag_GNU_Power_ABI_FP attribute of the files to be linked, and
33152     produce the worning like above if these are not compatible.
33154     The incompatibility of ABIs is concerned only the float values:
33155     e.g. the soft-float ABI assumes the float argument passing in the
33156     pair of rX registers, and the hard-float ABI assumes passing of
33157     the float argument in the fX register. When we don't pass the float
33158     arguments between the functions compiled with different floatness,
33159     then such an application will work correctly.
33160     This is the case for the FPU POST: u-boot (compiled with soft-float)
33161     doesn't pass to (and doesn't get from) the FPU POST functions any
33162     floats; there are no functions exported from the post/lib_ppc/fpu/
33163     objects which would work with float parameters/returns too. So, we
33164     can reassure the linker not to worry about the difference in ABI
33165     attributes of linking files just by setting the 'soft-float'
33166     attribute for the objects in post/lib_ppc/fpu. And this patch does
33167     this.
33169     Also, to avoid passing both soft- and hard-float options in CFLAGS
33170     when compiling the files from post/lib_ppc/fpu (which is OK, but
33171     looks rather dirty) this patch removes the soft-float string from
33172     CFLAGS in post/lib_ppc/fpu/Makefile.
33174     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
33176 commit a7c9310457e85b4598abe5b304108edf11332e2f
33177 Author: Peter Tyser <ptyser@xes-inc.com>
33178 Date:   Wed Dec 17 16:36:22 2008 -0600
33180     Add support for Maxim's DS4510 I2C device
33182     Initial support for the DS4510, a CPU supervisor with
33183     integrated EEPROM, SRAM, and 4 programmable non-volatile
33184     GPIO pins. The CONFIG_DS4510 define enables support
33185     for the device while the CONFIG_CMD_DS4510 define
33186     enables the ds4510 command. The additional
33187     CONFIG_DS4510_INFO, CONFIG_DS4510_MEM, and
33188     CONFIG_DS4510_RST defines add additional sub-commands
33189     to the ds4510 command when defined.
33191     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
33193 commit b6fc6fd49a84543e1324e1620b9f301ff7c1f27f
33194 Author: Dirk Eibach <eibach@gdsys.de>
33195 Date:   Tue Dec 16 14:51:56 2008 +0100
33197     common: Iteration limit for memory test.
33199     The iteration limit is passed to mtest as a fourth parameter:
33200     [start [end [pattern [iterations]]]]
33201     If no fourth parameter is supplied, there is no iteration limit and the
33202     test will loop forever.
33204     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
33206 commit 97cae3a4c68d856374ccc70fd2c5f8714cc94f7d
33207 Author: Stefan Roese <sr@denx.de>
33208 Date:   Mon Dec 15 15:40:12 2008 +0100
33210     serial: Rename driver vcth to vct to support other board variants
33212     Moved driver vcth.c to vct.c to better reflect the VCT board series.
33213     This driver is now used by the VCT platforms:
33215     vct_premium
33216     vct_platinum
33217     vct_platinumsvc
33219     Signed-off-by: Stefan Roese <sr@denx.de>
33221 commit 36ede4d63e59c9277ec180b09c39b8bf46425ba2
33222 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33223 Date:   Fri Dec 12 00:45:27 2008 +0900
33225     nios: Move README.nios_CONFIG_SYS_NIOS_CPU to doc/ dir
33227     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
33229 commit c3284b030b1cd492b4f46c576aea01bef258599d
33230 Author: Peter Korsgaard <jacmet@sunsite.dk>
33231 Date:   Wed Dec 10 16:24:16 2008 +0100
33233     common/main: support bootdelay=0 for CONFIG_AUTOBOOT_KEYED
33235     Support bootdelay=0 in abortboot for the CONFIG_AUTOBOOT_KEYED case
33236     similar to the CONFIG_ZERO_BOOTDELAY_CHECK support for the
33237     !CONFIG_AUTOBOOT_KEYED case.
33239     Do this by reversing the loop so we do at least one iteration before
33240     checking for timeout.
33242     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
33244 commit 94f9279f7bbdc01bbc7cf85aedf9b545943b94c3
33245 Author: Niklaus Giger <niklaus.giger@netstal.com>
33246 Date:   Mon Dec 8 17:24:08 2008 +0100
33248     Added legacy flash ST Micro M29W040B
33250 commit 626d07348e5f9f302f4ea182161a89f7362a0488
33251 Author: Graeme Russ <graeme.russ@gmail.com>
33252 Date:   Mon Dec 8 20:04:51 2008 +1100
33254     Fixed off-by-one errors in lib_m68k/interrupts.c
33256     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33258 commit a5989c42ae5e295f274a795c426c47819bbdbfda
33259 Author: Graeme Russ <graeme.russ@gmail.com>
33260 Date:   Sun Dec 7 10:29:05 2008 +1100
33262     Removed all references to CONFIG_SYS_RESET_GENERIC
33264     Generic i386 reset - #define made redundant by weak function
33266     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33268 commit 2b5360eb2bc0b741ae5cb3c84d35ccdd17667c8a
33269 Author: Graeme Russ <graeme.russ@gmail.com>
33270 Date:   Sun Dec 7 10:29:04 2008 +1100
33272     Remove #ifdef CONFIG_SC520 in source code
33274     CONFIG_SC520 is now used for conditional compile
33276     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33278 commit ead056bc206f6b7ee6dc98766678b64635ea20b8
33279 Author: Graeme Russ <graeme.russ@gmail.com>
33280 Date:   Sun Dec 7 10:29:03 2008 +1100
33282     Added MMCR reset functionality
33284     Reset function specific to AMD SC520 microcontroller - Is more of a
33285     'hard reset' that the triple fault.
33287     Requires CONFIG_SYS_RESET_SC520 to be defined in config
33289     I would have liked to add this to a new file (cpu/i386/sc520/reset.c)
33290     but ld requires that a object file in a library arhive MUST contain
33291     at least one function which does not override a weak function (and is
33292     called from outside the object file) in order for that object file to
33293     be extracted from the archive. This would be the only function on the
33294     new file, and hence, will never get linked in.
33296     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33298 commit 3f5f18d12d32ee0661bf51dfc55752c005230d6e
33299 Author: Graeme Russ <graeme.russ@gmail.com>
33300 Date:   Sun Dec 7 10:29:02 2008 +1100
33302     Moved generic (triple fault) reset code
33304     Moved from interrupts.c to cpu.c and made into a weak function to
33305     allow vendor specific override
33307     Vendor specific CPU reset (like the AMD SC520 MMCR reset) can now be
33308     added to the vendor specific code without the need to remember to
33309     #undef usage of the generic method and if you forget to include your
33310     custom reset method, you will always get the default.
33312     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33314 commit 9933d609020c297788f53f334c8465fa7a99b10c
33315 Author: Graeme Russ <graeme.russ@gmail.com>
33316 Date:   Sun Dec 7 10:29:01 2008 +1100
33318     Moved definition of set_vector() to new header file
33320     This allows for future tidy ups and functionality that will require
33321     set_vector ()
33323     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33325 commit 407976185e0dda2c90e89027121a1071b9c77bfb
33326 Author: Graeme Russ <graeme.russ@gmail.com>
33327 Date:   Sun Dec 7 10:29:00 2008 +1100
33329     Moved sc520 specific code into new cpu/i386/sc520 folder
33331     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33332     Signed-off-by: Wolfgang Denk <wd@denx.de>
33334 commit 85ffbbd51914925a542d8528be7f072e5ab02157
33335 Author: Graeme Russ <graeme.russ@gmail.com>
33336 Date:   Sun Dec 7 10:28:58 2008 +1100
33338     Renamed cpu/i386/reset.S to resetvec.S
33340     Brings i386 in line with other CPUs with a reset vector and frees up reset.c
33341     for CPU reset functions
33343     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33345 commit a3f4c123f569474e80ea012b8db0de46afdb6443
33346 Author: Wolfgang Denk <wd@denx.de>
33347 Date:   Sat Jan 24 01:01:49 2009 +0100
33349     Makefile: keep lists sorted.
33351     Signed-off-by: Wolfgang Denk <wd@denx.de>
33353 commit c620c01e96814558470698ed5cab1bf2f504d1b5
33354 Author: Graeme Russ <graeme.russ@gmail.com>
33355 Date:   Sun Dec 7 10:28:57 2008 +1100
33357     Added initial eNET board support
33359     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
33361 commit 0c0ccf401ee03a5008fc2c19b05a662bce1a1086
33362 Author: Gary Jennejohn <garyj@denx.de>
33363 Date:   Thu Nov 20 11:37:26 2008 +0100
33365     POWERPC 82xx: add the SCC as an HDLC controller
33367     Right now this is only used by keymile.
33369     Signed-off-by: Gary Jennejohn <garyj@denx.de>
33371 commit 1e8f4e78ca393b3d8e86bd8055758dd465d9113f
33372 Author: Heiko Schocher <hs@denx.de>
33373 Date:   Thu Nov 20 09:59:09 2008 +0100
33375     powerpc, keymile boards: extract identical config options
33377     This patch extracts the identical config options for the
33378     keymile boards mgcoge, mgsuvd and kmeter1 in a new
33379     common config file keymile-common.h.
33381     Signed-off-by: Heiko Schocher <hs@denx.de>
33383 commit 210c8c00aad3328145204adab434bb7d70b06b75
33384 Author: Heiko Schocher <hs@denx.de>
33385 Date:   Fri Nov 21 08:29:40 2008 +0100
33387     powerpc: keymile: Add a check for the PIGGY debug board
33389     Check the presence of the PIGGY on the keymile boards mgcoge,
33390     mgsuvd and kmeter1. If the PIGGY is not present, dont register
33391     this Ethernet device.
33393     Signed-off-by: Heiko Schocher <hs@denx.de>
33394     Acked-by: Ben Warren <biggerbadderben@gmail.com>
33396 commit de0443614af4d16675ab436665aeb11ddc9f7214
33397 Author: Heiko Schocher <hs@denx.de>
33398 Date:   Thu Nov 20 09:57:47 2008 +0100
33400     powerpc: 83xx: add support for the kmeter1 board
33402     This patch adds support for the kmeter1 board from Keymile,
33403     based on a Freescale MPC8360 CPU.
33405     - serial console on UART 1
33406     - 256 MB DDR2 RAM
33407     - 64 MB NOR Flash
33408     - Ethernet RMII Mode over UCC4
33409     - PHY SMSC LAN8700
33411     Signed-off-by: Heiko Schocher <hs@denx.de>
33413 commit 3feb647f3fd0881382c7a29f4cf280b66473ae0a
33414 Author: Sergei Poselenov <sposelenov@emcraft.com>
33415 Date:   Tue Nov 4 13:51:18 2008 +0100
33417     Add a do_div() wrapper macro, lldiv().
33419     Add a do_div() wrapper, lldiv(). The new inline function doesn't modify
33420     the dividend and returns the result of division, so it is useful
33421     in complex expressions, i.e. "return(a/b)" -> "return(lldiv(a,b))"
33423     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
33425 commit 18af1c5f0f7402dc0d6a71b012c68025dd97cf72
33426 Author: Kumar Gala <galak@kernel.crashing.org>
33427 Date:   Fri Jan 23 14:22:14 2009 -0600
33429     85xx: Add a 36-bit physical configuration for MPC8572DS
33431     We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
33432     to allow for larger memory sizes.
33434     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33436 commit c51fc5d53c4560abc4d0a6126c06fc68133d1528
33437 Author: Kumar Gala <galak@kernel.crashing.org>
33438 Date:   Fri Jan 23 14:22:13 2009 -0600
33440     85xx: Handle eLBC difference w/36-bit physical
33442     The eLBC only handles 32-bit physical address in systems with 36-bit
33443     physical.  The previos generation of LBC handled 34-bit physical
33444     address in 36-bit systems.  Added a new CONFIG option to convey
33445     the difference between the LBC and eLBC.
33447     Also added defines for XAM bits used in LBC for the extended 34-bit
33448     support.
33450     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33452 commit 72a9414a8e21e9536822c7353bc08d21ce5ad53d
33453 Author: Kumar Gala <galak@kernel.crashing.org>
33454 Date:   Fri Jan 23 14:22:12 2009 -0600
33456     85xx: Use BR_ADDR macro for NAND chipselects
33458     Use the new BR_ADDR macro to properly setup the address field of the
33459     localbus chipselects used by NAND.
33461     This allows us to deal with 36-bit phys on these boards in the future.
33463     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33465 commit 2fc7eb0cfc608c9369001d57a0411af5e6a58f7c
33466 Author: Haiying Wang <Haiying.Wang@freescale.com>
33467 Date:   Thu Jan 15 11:58:35 2009 -0500
33469     Add secondary CPUs processor frequency for e500 core
33471     This patch updates e500 freqProcessor to array based on CONFIG_NUM_CPUS,
33472     and prints each CPU's frequency separately. It also fixes up each CPU's
33473     frequency in "clock-frequency" of fdt blob.
33475     Signed-off-by: James Yang <James.Yang@freescale.com>
33476     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33478 commit bf5b1f0c0d28ce062e1d368680632dfb099de692
33479 Author: Dave Liu <daveliu@freescale.com>
33480 Date:   Fri Nov 21 16:31:53 2008 +0800
33482     85xx: enable the auto self refresh for wake up ARP
33484     The wake up ARP feature need use the memory to process
33485     wake up packet, we enable auto self refresh to support it.
33487     Signed-off-by: Dave Liu <daveliu@freescale.com>
33488     Acked-by: Andy Fleming <afleming@freescale.com>
33490 commit b4983e16d150ab7d039704c310aacbd2f4dc1e0f
33491 Author: Dave Liu <daveliu@freescale.com>
33492 Date:   Fri Nov 21 16:31:43 2008 +0800
33494     fsl-ddr: use the 1T timing as default configuration
33496     For light loaded system, we use the 1T timing to gain better
33497     memory performance, but for some heavily loaded system,
33498     you have to add the 2T timing options to board files.
33500     Signed-off-by: Dave Liu <daveliu@freescale.com>
33501     Acked-by: Andy Fleming <afleming@freescale.com>
33503 commit 22cca7e1cd54590e967c73558b07ffbdccd39504
33504 Author: Dave Liu <daveliu@freescale.com>
33505 Date:   Fri Nov 21 16:31:35 2008 +0800
33507     fsl-ddr: make the self refresh idle threshold configurable
33509     Some 85xx processors have the advanced power management feature,
33510     such as wake up ARP, that needs enable the automatic self refresh.
33512     If the DDR controller pass the SR_IT (self refresh idle threshold)
33513     idle cycles, it will automatically enter self refresh. However,
33514     anytime one transaction is issued to the DDR controller, it will
33515     reset the counter and exit self refresh state.
33517     Signed-off-by: Dave Liu <daveliu@freescale.com>
33518     Acked-by: Andy Fleming <afleming@freescale.com>
33520 commit 22ff3d01348e0a2dc369b7efcbac30e4ce86d178
33521 Author: Dave Liu <daveliu@freescale.com>
33522 Date:   Fri Nov 21 16:31:29 2008 +0800
33524     fsl-ddr: clean up the ddr code for DDR3 controller
33526     - The DDR3 controller is expanding the bits for timing config
33527     - Add the DDR3 32-bit bus mode support
33529     Signed-off-by: Dave Liu <daveliu@freescale.com>
33530     Acked-by: Andy Fleming <afleming@freescale.com>
33532 commit 80ee3ce6d7fe9441b4352d7cfaf6afc2507b1106
33533 Author: Dave Liu <daveliu@freescale.com>
33534 Date:   Fri Nov 21 16:31:22 2008 +0800
33536     fsl-ddr: update the bit mask for DDR3 controller
33538     According to the latest 8572 UM, the DDR3 controller
33539     is expanding the bit mask, and we use the extend ACTTOPRE
33540     mode when tRAS more than 19 MCLK.
33542     Signed-off-by: Dave Liu <daveliu@freescale.com>
33544 commit aca5f018a8386b85469482ed9867e3e29a2437d0
33545 Author: Kumar Gala <galak@kernel.crashing.org>
33546 Date:   Tue Dec 2 16:08:40 2008 -0600
33548     85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards
33550     Introduce a new define to seperate out the virtual address that PCI
33551     IO space is at from the physical address.  In most situations these are
33552     mapped 1:1.  However any code accessing the bus should use VIRT.
33554     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33555     Acked-by: Andy Fleming <afleming@freescale.com>
33557 commit 5af0fdd81c3370c3a51421208fda568bdcbbec23
33558 Author: Kumar Gala <galak@kernel.crashing.org>
33559 Date:   Tue Dec 2 16:08:39 2008 -0600
33561     85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards
33563     Introduce a new define to seperate out the virtual address that PCI
33564     memory is at from the physical address.  In most situations these are
33565     mapped 1:1.  However any code accessing the bus should use VIRT.
33567     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33568     Acked-by: Andy Fleming <afleming@freescale.com>
33570 commit a6e04c344ad1eefd47a75484441b385da815b8df
33571 Author: Kumar Gala <galak@kernel.crashing.org>
33572 Date:   Tue Dec 2 16:08:38 2008 -0600
33574     85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
33576     Use the _MEM_PHYS defines instead of _MEM_BUS for LAW and real address fields
33577     of TLBs.  This is what we should have always been using from the start.
33579     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33580     Acked-by: Andy Fleming <afleming@freescale.com>
33582 commit 5f91ef6acdbadec33e0192049e2b24a1d9692f1d
33583 Author: Kumar Gala <galak@kernel.crashing.org>
33584 Date:   Tue Dec 2 16:08:37 2008 -0600
33586     85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
33588     Use CONFIG_SYS_PCI*_IO_BUS for the bus relative address instead
33589     of _IO_BASE so we are more explicit.
33591     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33593 commit 10795f42cb94e71bcb262b615084f69dd886399a
33594 Author: Kumar Gala <galak@kernel.crashing.org>
33595 Date:   Tue Dec 2 16:08:36 2008 -0600
33597     85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
33599     Use CONFIG_SYS_{PCI,RIO}_MEM_BUS for the bus relative address instead
33600     of _MEM_BASE so we are more explicit.
33602     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33603     Acked-by: Andy Fleming <afleming@freescale.com>
33605 commit c953ddfd56b3ae3f28910fe3aed6de6968d1c9aa
33606 Author: Kumar Gala <galak@kernel.crashing.org>
33607 Date:   Tue Dec 2 14:19:34 2008 -0600
33609     85xx: separate FLASH BASE virtual from physical address
33611     Added a CONFIG_SYS_FLASH_BASE_PHYS for use as the physical address and
33612     maintain CONFIG_SYS_FLASH_BASE as the virtual address of the flash.
33614     This allows us to deal with 36-bit phys on these boards in the future.
33616     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33617     Acked-by: Andy Fleming <afleming@freescale.com>
33619 commit 52b565f5ad23b682489055b187767d8bf1c2e444
33620 Author: Kumar Gala <galak@kernel.crashing.org>
33621 Date:   Tue Dec 2 14:19:33 2008 -0600
33623     85xx: separate PIXIS virtual from physical address
33625     Added a PIXIS_BASE_PHYS for use as the physical address and maintain
33626     PIXIS_BASE as the virtual address of the PIXIS fpga registers.
33628     This allows us to deal with 36-bit phys on these boards in the future.
33630     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33631     Acked-by: Andy Fleming <afleming@freescale.com>
33633 commit 30837e5b21d5a742983581ab9ee3fac085311d19
33634 Author: Haiying Wang <Haiying.Wang@freescale.com>
33635 Date:   Tue Nov 11 08:52:09 2008 -0500
33637     Add README file for MPC8572DS board
33639     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33640     Acked-by: Andy Fleming <afleming@freescale.com>
33642 commit 6dadc9195ad642cc662632f4d92f92d3d71e8bf2
33643 Author: Mike Frysinger <vapier@gentoo.org>
33644 Date:   Mon Oct 20 16:15:04 2008 -0400
33646     Blackfin: use common strmhz() in system output
33648     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33650 commit 5bb907a4925397789c90d074f4f7e92ce6b39402
33651 Author: Ron Madrid <ron_madrid@sbcglobal.net>
33652 Date:   Thu Jan 22 15:05:24 2009 -0800
33654     mpc83xx: New board support for SIMPC8313
33656     This patch will create a new board, SIMPC8313, from Sheldon Instruments.  This
33657     board boots from NAND devices and is configureable for either large or small
33658     page devices.  The board supports non-soldered DDR2, one ethernet port, a
33659     Marvell 88E1118 PHY, and PCI host support.  The board also has a FPGA connected
33660     to the eLBC providing glue logic to a TMS320C67xx DSP.
33662     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
33663     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33665 commit d4bade8d77aa20e2846fa4accff0e7fa7961a134
33666 Author: Mike Frysinger <vapier@gentoo.org>
33667 Date:   Sun Jan 18 19:46:06 2009 -0500
33669     nand: fixup printf modifiers to match types used
33671     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33672     Signed-off-by: Scott Wood <scottwood@freescale.com>
33674 commit 389e6620e2271096df3316917528003627db4021
33675 Author: Schlaegl Manfred jun <manfred.schlaegl@gmx.at>
33676 Date:   Tue Jan 20 16:57:55 2009 +0100
33678     nand read.jffs2 (nand_legacy) in common/cmd_nand.c
33680     Error with CONFIG_NAND_LEGACY in common/cmd_nand.c:
33681     With current code "nand read.jffs2s" (read and skip bad blocks) is always interpreted as
33682     "nand read.jffs2" (read and fill bad blocks with 0xff). This is because ".jffs2" is
33683     tested before ".jffs2s" and only the first two characters are compared.
33685     Correction:
33686     Test for ".jffs2s" first and compare the first 7 characters.
33688     Signed-off-by: Scott Wood <scottwood@freescale.com>
33690 commit 6c869637fef31e66380f0ea1d49690a2e26ec0d7
33691 Author: Wolfgang Grandegger <wg@grandegger.com>
33692 Date:   Fri Jan 16 18:55:54 2009 +0100
33694     NAND: rename NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS
33696     This patch renames NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS and
33697     changes the default from 8 to 1 for the legacy and the new MTD
33698     NAND layer. This allows to remove all NAND_MAX_CHIPS definitions
33699     in the board config files because none of the boards use multi
33700     chip support (NAND_MAX_CHIPS > 1) so far. The bamboo and the DU440
33701     define
33703      #define NAND_MAX_CHIPS          CONFIG_SYS_MAX_NAND_DEVICE
33705     but that's bogus and did not work anyhow.
33707     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
33708     Signed-off-by: Scott Wood <scottwood@freescale.com>
33710 commit c70564e6b1bd08f3230182392238907f3531a87e
33711 Author: Dave Liu <daveliu@freescale.com>
33712 Date:   Tue Dec 2 11:48:51 2008 +0800
33714     NAND: Fix cache and memory inconsistency issue
33716     We load the secondary stage u-boot image from NAND to
33717     system memory by nand_load, but we did not flush d-cache
33718     to memory, nor invalidate i-cache before we jump to RAM.
33719     When the system has cache enabled and the TLB/page attribute
33720     of system memory is cacheable, it will cause issues.
33722     - 83xx family is using the d-cache lock, so all of d-cache
33723       access is cache-inhibited. so you can't see the issue.
33724     - 85xx family is using d-cache, i-cache enable, partial
33725       cache lock. you will see the issue.
33727     This patch fixes the cache issue.
33729     Signed-off-by: Dave Liu <daveliu@freescale.com>
33730     Signed-off-by: Scott Wood <scottwood@freescale.com>
33732 commit 50657c273278f74378e1ac39b41d612b92fdffa0
33733 Author: Nishanth Menon <menon.nishanth@gmail.com>
33734 Date:   Sat Dec 13 09:43:06 2008 -0600
33736     NAND: Enable nand lock, unlock feature
33738     Enable nand lock, unlock and status of lock feature.
33739     Not every device and platform requires this, hence,
33740     it is under define for CONFIG_CMD_NAND_LOCK_UNLOCK
33742     Nand unlock and status operate on block boundary instead
33743     of page boundary. Details in:
33744     http://www.micron.com/products/partdetail?part=MT29C2G24MAKLAJG-6%20IT
33746     Intial solution provided by Vikram Pandita <vikram.pandita@ti.com>
33747     Includes preliminary suggestions from Scott Wood
33749     Signed-off-by: Nishanth Menon <nm@ti.com>
33750     Signed-off-by: Scott Wood <scottwood@freescale.com>
33752 commit 69fb8be4fc07162fdf6edf04bdc7233b0e9a920e
33753 Author: Mike Frysinger <vapier@gentoo.org>
33754 Date:   Sat Dec 6 02:40:55 2008 -0500
33756     NAND: move board_nand_init to nand.h
33758     Rather than putting the function prototype for board_nand_init() in the one
33759     place where it gets called, put it into nand.h so that every place that also
33760     defines it gets the prototype.  Otherwise, errors can go silently unnoticed
33761     such as using the wrong return value (void rather than int) when defining
33762     the function.
33764     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33765     Signed-off-by: Scott Wood <scottwood@freescale.com>
33767 commit 1ae39862044ebb1e682234b51f94421e3f871d6a
33768 Author: Stefan Roese <sr@denx.de>
33769 Date:   Tue Dec 2 11:06:47 2008 +0100
33771     OneNAND: Additional sync with 2.6.27
33773     - Add subpage write support
33774     - Add onenand_oob_64/32 ecclayout
33776     This has been missing and without it UBI has some incompatibilies issues
33777     with the current (>= 2.6.27) Linux kernel version. vid_hdr_offset is
33778     placed differently (2048 instead of 512) without this fix.
33780     Signed-off-by: Stefan Roese <sr@denx.de>
33781     Signed-off-by: Scott Wood <scottwood@freescale.com>
33783 commit 1714f51a2009baaecf3d4f6e3bd8c4e93a8d3f23
33784 Author: Kyungmin Park <kmpark@infradead.org>
33785 Date:   Thu Nov 13 15:14:33 2008 +0900
33787     Add markbad function
33789     Add missing markbad function
33790     If not, it's hang when it entered the mtd->mark_bad().
33792     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33794 commit c438ea175d8d002c1063b7a94b0c0e26668d1ac9
33795 Author: Stefan Roese <sr@denx.de>
33796 Date:   Wed Nov 12 13:47:24 2008 +0100
33798     OneNAND: Bad block aware read/write command support
33800     Update OneNAND command to support bad block awareness.
33801     Also change the OneNAND command style to better match the
33802     NAND version.
33804     Signed-off-by: Stefan Roese <sr@denx.de>
33805     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
33807 commit 8cf11f3aa78673730e9ecbbe4b75213b53f212c8
33808 Author: Stefan Roese <sr@denx.de>
33809 Date:   Tue Nov 11 10:29:09 2008 +0100
33811     OneNAND: Save version_id in onenand_chip struct
33813     The version (ver_id) was not stored in the onenand_chip structure and
33814     because of this the continuous locking scheme could be enabled on some
33815     chips.
33817     Signed-off-by: Stefan Roese <sr@denx.de>
33819 commit 4fca3310d611cc0f51d7295ef3557afbdbd91dc3
33820 Author: Stefan Roese <sr@denx.de>
33821 Date:   Tue Nov 11 10:28:53 2008 +0100
33823     OneNAND: Fix compiler warnings
33825     Signed-off-by: Stefan Roese <sr@denx.de>
33827 commit 1ac5744e33ee0aa6d6ddab3b99f9e70953156e69
33828 Author: Dave Liu <daveliu@freescale.com>
33829 Date:   Tue Nov 4 14:55:06 2008 +0800
33831     mpc83xx: enable eLBC NAND support for MPC8315ERDB board
33833     Signed-off-by: Dave Liu <daveliu@freescale.com>
33835 commit ef0921d6b05aeb9034158f9bef5323d6da9c925e
33836 Author: Kyungmin Park <kmpark@infradead.org>
33837 Date:   Tue Nov 4 09:24:07 2008 +0900
33839     Sync with 2.6.27
33841     Sync with OneNAND kernel codes
33843     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33845 commit e7f325be9edeb84bb457301776bbac1f7257dafc
33846 Author: Michal Simek <monstr@monstr.eu>
33847 Date:   Mon Jan 5 13:35:31 2009 +0100
33849     microblaze: Use cache functions (especially cache status)
33850     in systems which are configured without flash
33852 commit e9b737deb2c30125362d20e24170617476026e94
33853 Author: Michal Simek <monstr@monstr.eu>
33854 Date:   Mon Jan 5 13:29:32 2009 +0100
33856     microblaze: Add cache flush
33858 commit b4f8dda35bfad447b4106828232705b2e878d168
33859 Author: Michal Simek <monstr@monstr.eu>
33860 Date:   Mon Jan 5 13:28:40 2009 +0100
33862     microblaze: Add bootup messages to board.c
33864 commit 330e55459bc9983341da6c1d5c7fe00a664436fe
33865 Author: Michal Simek <monstr@monstr.eu>
33866 Date:   Fri Dec 19 13:25:55 2008 +0100
33868     microblaze: Change microblaze-generic config file
33870     Signed-off-by: Michal Simek <monstr@monstr.eu>
33872 commit 52a822ed9c37a2ea0ed112a26d8ff5a6cb1c6f10
33873 Author: Michal Simek <monstr@monstr.eu>
33874 Date:   Fri Dec 19 13:14:05 2008 +0100
33876     microblaze: Rename ml401 to microblaze-generic
33878     Signed-off-by: Michal Simek <monstr@monstr.eu>
33880 commit 6677876181cc8772bca8a372479a500d160f3993
33881 Author: Scott Wood <scottwood@freescale.com>
33882 Date:   Tue Jan 20 11:56:11 2009 -0600
33884     83xx: Use the proper sequence for updating IMMR.
33886     This ensures that subsequent accesses properly hit the new window.
33888     The dcbi during the NAND loop was accidentally working around this;
33889     it's no longer necessary, as the cache is not enabled.
33891     Reported-by: Suchit Lepcha <Suchit.Lepcha@freescale.com>
33892     Signed-off-by: Scott Wood <scottwood@freescale.com>
33893     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33895 commit 8b34557c546e5e9f34ebf83c93413dad973d93df
33896 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
33897 Date:   Thu Jan 8 04:26:19 2009 +0300
33899     mpc83xx: Add PCI-E support for MPC837XEMDS boards
33901     MPC837XEMDS boards can support PCI-E via "PCI-E riser card". The card
33902     provides two PCI-E (x2) ports. Though, only one port can be used in x2
33903     mode. Two ports can function simultaneously in x1 mode.
33905     PCI-E x1/x2 modes can be switched via "pex_x2" environment variable.
33907     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
33908     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33910 commit 8f11e34b31a7be124a3239653f33af9510502045
33911 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
33912 Date:   Thu Jan 8 04:26:17 2009 +0300
33914     mpc83xx: Add PCI-E support for MPC8315ERDB boards
33916     MPC8315ERDB boards features PCI-E x1 and Mini PCI-E x1 ports. Let's
33917     support them.
33919     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
33920     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33922 commit fd6646c0b9ebe7e5afc4ae4c78097d9cd317a5e8
33923 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
33924 Date:   Thu Jan 8 04:26:12 2009 +0300
33926     mpc83xx: Add support for MPC83xx PCI-E controllers
33928     This patch adds support for MPC83xx PCI-E controllers in Root Complex
33929     mode.
33931     The patch is based on Tony Li and Dave Liu work[1].
33933     Though unlike the original patch, by default we don't register PCI-E
33934     buses for use in U-Boot, we only configure the controllers for future
33935     use in other OSes (Linux). This is done because we don't have enough
33936     of spare BATs to map all the PCI-E regions.
33938     To actually use PCI-E in U-Boot, users should explicitly define
33939     CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES symbol in the board file. And
33940     only then U-Boot will able to access PCI-E, but at the cost of disabled
33941     address translation.
33943     [1] http://lists.denx.de/pipermail/u-boot/2008-January/027630.html
33945     Signed-off-by: Tony Li <tony.li@freescale.com>
33946     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
33947     Acked-by: Dave Liu <daveliu@freescale.com>
33948     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33950 commit 88ecf55cabd7aea28fe8093720e208f53ccfdcf5
33951 Author: Ira Snyder <iws@ovro.caltech.edu>
33952 Date:   Mon Jan 12 13:33:17 2009 -0800
33954     MPC8349EMDS: do not setup unused PCI clock outputs in PCI agent mode
33956     When running in PCI agent mode, the PCI_CLK_OUT signals are not used, so do
33957     not enable them. See the MPC8349EA Reference Manual, Section 4.4.2
33958     "Clocking in PCI Agent Mode".
33960     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
33961     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33963 commit 75f35209f702bb26826855ed8c8e4d108ab5f412
33964 Author: Ira Snyder <iws@ovro.caltech.edu>
33965 Date:   Mon Jan 12 13:32:26 2009 -0800
33967     83xx: PCI agent mode fixes for multi-board systems
33969     When running a system with 2 or more MPC8349EMDS boards in PCI agent mode,
33970     the boards will lock up the PCI bus by scanning against each other.
33972     The boards lock against each other by trying to access the PCI bus before
33973     clearing their configuration lock bit. Both boards end up in a loop,
33974     sending and receiving "Target Not Ready" messages forever.
33976     When running in PCI agent mode, the scanning now takes place after the
33977     boards have cleared their configuration lock bit.
33979     Also, add a missing declaration to the mpc83xx.h header file, fixing a
33980     build warning.
33982     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
33983     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33985 commit 455a46915b82896cc2070eb326d075555c2bc580
33986 Author: Ron Madrid <ron_madrid@sbcglobal.net>
33987 Date:   Fri Dec 12 13:12:45 2008 -0800
33989     mpc83xx: Size optimization of start.S
33991     Currently there are in excess of 100 bytes located at the beginning of the image
33992     built by start.S that are not being utilized.  This patch moves a few functions
33993     into this part of the image.  This will create a greater number of *available*
33994     bytes that can be used by board specific code in NAND builds and will decrease
33995     the size of the assembled code in other builds.
33997     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
33998     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34000 commit 72d15e705bc3983884105cb7755c7ba80e74a0a5
34001 Author: Wolfgang Denk <wd@denx.de>
34002 Date:   Wed Jan 21 23:08:12 2009 +0100
34004     Prepare v2009.01
34006     Signed-off-by: Wolfgang Denk <wd@denx.de>
34008 commit 635e5f8fc82365e6e9734b3132bc95135a6de679
34009 Author: Wolfgang Denk <wd@denx.de>
34010 Date:   Sun Jan 18 21:37:48 2009 +0100
34012     Prepare 2009.01-rc3
34014     Update CHANGELOG
34016     Signed-off-by: Wolfgang Denk <wd@denx.de>
34018 commit 4cda437898f7873752f0201757cd33f12196ce87
34019 Author: Mike Frysinger <vapier@gentoo.org>
34020 Date:   Sat Jan 17 13:32:42 2009 -0500
34022     build system: treat all Darwin's alike
34024     The x86 based version of Darwin behaves the same quirky way as the powerpc
34025     Darwin, so only check HOSTOS when setting up Darwin workarounds.
34027     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34029 commit c088a108c75db565e07292fd668dfa5491e85bc2
34030 Author: Peter Korsgaard <jacmet@sunsite.dk>
34031 Date:   Wed Jan 14 13:52:24 2009 +0100
34033     fdt_resize(): fix actualsize calculations with unaligned blobs
34035     The code in fdt_resize() to extend the fdt size to end on a page boundary
34036     is wrong for fdt's not located at an address aligned on a page boundary.
34037     What's even worse, the code would make actualsize shrink rather than grow
34038     if (blob & 0xfff) was bigger than the amount of padding added by ALIGN(),
34039     causing fdt_add_mem_rsv to fail.
34041     Fix it by aligning end address (blob + size) to a page boundary instead.
34042     For aligned fdt's this is equivalent to what we had before.
34044     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
34046 commit fadad1573fb16c90025f08a2861d6047d093cba7
34047 Author: Mike Frysinger <vapier@gentoo.org>
34048 Date:   Fri Jan 9 04:38:17 2009 -0500
34050     ncb: use socklen_t
34052     The recvfrom() function takes a socklen_t, not an int.
34054     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34056 commit fc83c9273cec6e6e542f4a0ea3b653b7d0513ffa
34057 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34058 Date:   Sun Jan 11 16:35:16 2009 +0100
34060     sh: serial: use readx/writex accessors
34062     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34063     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34065 commit 9e1fa628bdb64745811cdd26c4f953846c076180
34066 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34067 Date:   Sun Jan 11 16:35:15 2009 +0100
34069     sh: serial: coding style cleanup
34071     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34072     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34074 commit c9935c992575922b7ef13eec0656ed8665d324e3
34075 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34076 Date:   Sun Jan 11 17:48:56 2009 +0900
34078     sh: Fix compile error on lowlevel_init file
34080     lowlevel_init of SH was corrected to use the write/readXX macro.
34081     However, there was a problem that was not able to be compiled partially.
34082     This patch corrected this.
34084     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34086 commit a5b04d00bfeb940c62232972ce644d50b45797f9
34087 Author: Kieran Bingham <kieranbingham@gmail.com>
34088 Date:   Tue Dec 30 01:16:03 2008 +0000
34090     sh: Fix up rsk7203 target for out of tree build
34092     Fix up rsk7203 target to build successfully using out-of-tree build.
34094     Signed-off-by: Kieran Bingham <kbingham@mpc-data.co.uk>
34095     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34097 commit f7e78f3b74aae9caca2997bad865a72338326c0a
34098 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34099 Date:   Sat Dec 20 19:29:49 2008 +0100
34101     sh: use write{8,16,32} in all lowlevel_init
34103     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34104     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34106 commit e4430779623af500de1cee7892c379f07ef59813
34107 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34108 Date:   Sat Dec 20 19:29:48 2008 +0100
34110     sh: lowlevel_init coding style cleanup
34112     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34113     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34115 commit 85cb052ee41675ca361e6a4c69455dc715c8f2d9
34116 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34117 Date:   Sat Dec 20 15:27:45 2008 +0100
34119     sh: update sh2/sh2a timer coding style
34121     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34122     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34124 commit 1e15ff999322e81af4c0c0c548908f38944ba39c
34125 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34126 Date:   Sat Dec 20 15:25:22 2008 +0100
34128     sh: update sh timer coding style
34130     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34131     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34133 commit 0e3ece33801e377be67ffa29f083421ad820f28b
34134 Author: Wolfgang Denk <wd@denx.de>
34135 Date:   Wed Jan 14 23:26:05 2009 +0100
34137     Prepare 2009.01-rc2
34139     Update CHANGELOG.
34141     Signed-off-by: Wolfgang Denk <wd@denx.de>
34143 commit e92c9a860e44c14513c8909ce4299e253a775eeb
34144 Author: Wolfgang Denk <wd@denx.de>
34145 Date:   Wed Jan 14 22:35:30 2009 +0100
34147     cpu/mpc824x/Makefile: fix warning with parallel builds
34149     Parallel builds would occasionally issue this build warning:
34151         ln: creating symbolic link `cpu/mpc824x/bedbug_603e.c': File exists
34153     Use "ln -sf" as quick work around for the issue.
34155     Signed-off-by: Wolfgang Denk <wd@denx.de>
34157 commit 3ba605d4beec649438539e7df97b5fedb26592fb
34158 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34159 Date:   Fri Jan 2 12:18:49 2009 +0100
34161     ppc4xx: Add loadpci command to esd's CPCI4052 and CPCI405AB boards
34163     This patch adds esd's loadpci BSP command to CPCI4052 and
34164     CPCI405AB board. This requires CONFIG_CMD_BSP and CONFIG_PRAM.
34166     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34167     Signed-off-by: Stefan Roese <sr@denx.de>
34169 commit 600fe46fb3dab7f07604f9009904f31584415114
34170 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34171 Date:   Fri Jan 2 12:18:12 2009 +0100
34173     ppc4xx: Disable pci node in device tree on CPCI405 pci adapters
34175     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34176     Signed-off-by: Stefan Roese <sr@denx.de>
34178 commit f6a1f490d224c600a09137e58d1026d150b8e679
34179 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34180 Date:   Fri Jan 2 12:17:36 2009 +0100
34182     ppc4xx: Cleanup CPCI405 board code
34184     This patch cleans up CPCI405 board support:
34185     - wrap long lines
34186     - unification of spaces in function calls
34187     - remove dead code
34189     Use correct io accessors on peripherals.
34191     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34192     Signed-off-by: Stefan Roese <sr@denx.de>
34194 commit fceebb45a0b97e92f9889861f8c3b9cb885e706f
34195 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34196 Date:   Fri Jan 2 12:16:35 2009 +0100
34198     ppc4xx: Enable auto RS485 mode on PLU405 boards
34200     This patch turns on the auto RS485 mode in the 2nd external
34201     uart on PLU405 boards. This is a special mode of the used
34202     Exar XR16C2850 uart. Because these boards only have a 485 physical
34203     layer connected it's a good idea to turn it on by default.
34205     Signed-off-by: Matthias Fuchs <mf@esd.eu>
34206     Signed-off-by: Stefan Roese <sr@denx.de>
34208 commit b5f65dfa9aa8e068e62aba4733dc4fd97b1d9bf6
34209 Author: Haiying Wang <Haiying.Wang@freescale.com>
34210 Date:   Tue Jan 13 16:29:28 2009 -0500
34212     Some changes of TLB entry setting for MPC8572DS
34214     - Move the TLB entry of PIXIS_BASE from TLB0 to TLB1[8], because in CAMP mode,
34215     all the TLB0 entries will be invalidated after cpu1 brings up kernel, thus cpu0
34216     can not access PIXIS_BASE anymore (any access will cause DataTLBError exception)
34218     - Set CONFIG_SYS_DDR_TLB_START to 9 for MPC8572DS board.
34220     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
34222 commit 950264317eb9594b2b5ee2fb65206200a1c6007a
34223 Author: Haiying Wang <Haiying.Wang@freescale.com>
34224 Date:   Tue Jan 13 16:29:22 2009 -0500
34226     Change DDR tlb start entry to CONFIG param for 85xx
34228     So that we can locate the DDR tlb start entry to the value other than 8. By
34229     default, it is still 8.
34231     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
34233 commit 6d3a10f73ece7ffb736890c10e023222612a4aa0
34234 Author: Roy Zang <tie-fei.zang@freescale.com>
34235 Date:   Fri Jan 9 16:02:35 2009 +0800
34237     Change PCIE1&2 deciide logic on MPC8544DS board more readable
34239     The IO port selection for MPC8544DS board:
34240      Port                       cfg_io_ports
34241      PCIE1              0x2, 0x3, 0x4, 0x5, 0x6, 0x7
34242      PCIE2              0x4, 0x5, 0x6, 0x7
34243      PCIE3              0x6, 0x7
34244      This patch changes the PCIE12 and PCIE2 logic more readable.
34245     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
34247 commit 028e116811d28a031660f1ad9e20ac1293b3c5c7
34248 Author: Roy Zang <tie-fei.zang@freescale.com>
34249 Date:   Fri Jan 9 16:01:52 2009 +0800
34251     PCIE2 and PCIE3 are decided by corresponing bit in devdisr instead of PCIE1 bit
34253     PCIE2 and PCIE3 should be decided by corresponing bit in devdisr instead of
34254     PCIE1 bit.
34255     On MPC8572DS board, PCIE refers to PCIE1.
34256     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
34258 commit 9afc2ef0307aecf52482df67c31b75d5f9e66b47
34259 Author: Roy Zang <tie-fei.zang@freescale.com>
34260 Date:   Fri Jan 9 16:00:55 2009 +0800
34262     Fix IO port selection issue on MPC8544DS and MPC8572DS boards
34264     The IO port selection is not correct on MPC8572DS and MPC8544DS board.
34265      This patch fixes this issue.
34266      For MPC8572
34267      Port                       cfg_io_ports
34268      PCIE1              0x2, 0x3, 0x7, 0xb, 0xc, 0xf
34269      PCIE2              0x3, 0x7
34270      PCIE3              0x7
34272     For MPC8544
34273     Port                        cfg_io_ports
34274     PCIE1               0x2, 0x3, 0x4, 0x5, 0x6, 0x7
34275     PCIE2               0x4, 0x5, 0x6, 0x7
34276     PCIE3               0x6, 0x7
34277     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
34279 commit 3e3fffe3baf3befde287fec1fcbfe55052fb8946
34280 Author: Becky Bruce <beckyb@kernel.crashing.org>
34281 Date:   Wed Dec 3 22:36:44 2008 -0600
34283     mpc8610hpcd: Fix PCI mapping concepts
34285     Rename _BASE to _BUS, as it's actually a PCI bus address,
34286     separate virtual and physical addresses into _VIRT and _PHYS,
34287     and use each appopriately.  This makes the code easier to read
34288     and understand, and facilitates mapping changes going forward.
34290     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
34292 commit 79e436cad3b4a7db88408c3f05175028f30d700d
34293 Author: Becky Bruce <beckyb@kernel.crashing.org>
34294 Date:   Wed Dec 3 22:36:26 2008 -0600
34296     sbc8641d: Fix PCI mapping concepts
34298     Rename _BASE to _BUS, as it's actually a PCI bus address,
34299     separate virtual and physical addresses into _VIRT and _PHYS,
34300     and use each appopriately.  This makes the code easier to read
34301     and understand, and facilitates mapping changes going forward.
34303     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
34305 commit a9f3acbcd07da72b5446ce557531a3ed8b8beff0
34306 Author: Wolfgang Denk <wd@denx.de>
34307 Date:   Mon Jan 12 14:50:35 2009 +0100
34309     MPC86xx: fix build warnings
34311     Signed-off-by: Wolfgang Denk <wd@denx.de>
34313 commit 032a1c934ef4dc003281f57302b6e693062c1868
34314 Author: Mike Frysinger <vapier@gentoo.org>
34315 Date:   Mon Jan 5 16:09:44 2009 -0500
34317     bf537-stamp/nand: fix board_nand_init prototype
34319     The board_nand_init() function should return an int, not void.
34321     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34323 commit 687f952e4119594ab913be11c90f7f018c2a7a79
34324 Author: Mike Frysinger <vapier@gentoo.org>
34325 Date:   Thu Dec 11 07:04:48 2008 -0500
34327     Blackfin: drop CONFIG_SPI handling in board init
34329     The eeprom SPI init functions are duplicated as the common code already
34330     executes these for us.
34332     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34334 commit e7e684b10d73a303902208594c7c3e7e0d753282
34335 Author: Mike Frysinger <vapier@gentoo.org>
34336 Date:   Fri Oct 24 17:51:57 2008 -0400
34338     Blackfin: fix out-of-tree building with ldscripts
34340     Many of the Blackfin board linker scripts are preprocessed, so make sure we
34341     output the linker script into the build tree rather than the source tree.
34343     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34345 commit b9eecc342f767b50e1476fbc1aad7d88dd4ce5eb
34346 Author: Mike Frysinger <vapier@gentoo.org>
34347 Date:   Fri Oct 24 17:48:54 2008 -0400
34349     Blackfin: fix linker scripts to work with --gc-sections
34351     Make sure all .text sections get pulled in and the entry point is properly
34352     referenced so they don't get discarded when linking with --gc-sections.
34354     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34356 commit 509fc553bc6087a6f705b3bf52f3950d7d1eaa58
34357 Author: Mike Frysinger <vapier@gentoo.org>
34358 Date:   Sat Oct 11 20:45:44 2008 -0400
34360     Blackfin: set proper LDRFLAGS for parallel booting LDRs
34362     In order to boot an LDR out of parallel flash, the ldr utility needs a few
34363     flags to tell it to generate the right header.
34365     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34367 commit 3dd9395a0d7ce69a335d0e743c04b9caedd681d3
34368 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34369 Date:   Tue Jan 6 21:41:59 2009 +0100
34371     at91rm9200: move define from lowlevel_init to header
34373     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34375 commit 8a48686fac2030287765f1970ea046bd5734b733
34376 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34377 Date:   Sat Jan 3 17:22:26 2009 +0100
34379     m501sk: move to the common memory setup
34381     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34383 commit d481c80d78f954133c035dae6c7d22de3625795d
34384 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34385 Date:   Sat Jan 3 17:22:25 2009 +0100
34387     at91rm9200: rename lowlevel init value to CONFIG_SYS_
34389     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34391 commit 4e170b16625291aa10d0d9abc3f34e8a5945d157
34392 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
34393 Date:   Tue Jan 6 21:13:14 2009 +0100
34395     at91: add at91sam9xeek board support
34397     At91sam9xe is basically an at91sam9260 with embedded flash. We can manage
34398     it as another entry for at91sam9260 in the Makefile.
34400     Check documentation at :
34401     http://www.atmel.com/dyn/products/product_card.asp?part_id=4263
34403     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
34404     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34406 commit 9ffd53db870a7da134f9a1ae76894a6b31237be5
34407 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34408 Date:   Tue Jan 6 21:15:57 2009 +0100
34410     fix bmp_logo.h make dependencies to allow parallel build
34412     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34414 commit e12d9a8fb48d24176efffccc072b445e60a3afe4
34415 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34416 Date:   Sat Jan 3 17:22:24 2009 +0100
34418     at91: Fix Atmel's at91sam9 boards out of tree build
34420     introduced in commit 89a7a87f084c
34422     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34424 commit 0668236bafaa1c11c521652a2facebc74beecbf0
34425 Author: Wolfgang Denk <wd@denx.de>
34426 Date:   Tue Dec 30 22:56:11 2008 +0100
34428     README: update mailing list name and hits to patch submission.
34430     Signed-off-by: Wolfgang Denk <wd@denx.de>
34432 commit d9011f9b75561a0bd9254934c2bb2bc799d4f645
34433 Author: Peter Tyser <ptyser@xes-inc.com>
34434 Date:   Tue Dec 23 16:32:01 2008 -0600
34436     85xx: Enable inbound PCI config cycles for X-ES boards cleanup
34438     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34440 commit 1f03cbfae221b24ba1341a0a3f62ff01c5c874df
34441 Author: Peter Tyser <ptyser@xes-inc.com>
34442 Date:   Tue Dec 23 16:32:00 2008 -0600
34444     XPedite5200 board support cleanup
34446     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34448 commit fea91edee8ae0295e3c30b1ff544df51f4d668e1
34449 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34450 Date:   Tue Dec 2 21:58:04 2008 +0100
34452     usb_kbd: fix usb_kbd_deregister when DEVICE_DEREGISTER not enable
34454     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34455     Signed-off-by: Remy Böhmer <linux@bohmer.net>
34457 commit ada591d2a0ecff5f9bc5ed1ebf310f439c3d0a28
34458 Author: Trent Piepho <tpiepho@freescale.com>
34459 Date:   Wed Dec 3 15:16:37 2008 -0800
34461     mpc8[56]xx: Put localbus clock in sysinfo and gd
34463     Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
34464     and print it out, but don't save it.
34466     This changes where its calculated and stored to be more consistent with the
34467     CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
34469     The localbus frequency is added to sysinfo and calculated when sysinfo is
34470     set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
34472     get_clocks() copies the frequency into the global data, as the other
34473     frequencies are, into a new field that is only enabled for MPC85xx and
34474     MPC86xx.
34476     checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
34477     from sysinfo, like the other frequencies, instead of calculating it on the
34478     spot.
34480     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
34481     Acked-by: Kumar Gala <galak@kernel.crashing.org>
34482     Acked-by: Jon Loeliger <jdl@freescale.com>
34484 commit 9863d6aca11405e1e0d8aba2045d78aeec4d4ee7
34485 Author: Trent Piepho <tpiepho@freescale.com>
34486 Date:   Wed Dec 3 15:16:36 2008 -0800
34488     mpc86xx: Double local bus clock divider
34490     The local bus clock divider should be doubled for both 8610 and 8641.
34492     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
34493     Acked-by: Kumar Gala <galak@kernel.crashing.org>
34494     Acked-by: Jon Loeliger <jdl@freescale.com>
34496 commit 446c381e3e16f19857b72ea0d06241267b8b9d58
34497 Author: Trent Piepho <tpiepho@freescale.com>
34498 Date:   Wed Dec 3 15:16:35 2008 -0800
34500     mpc8568: Double local bus clock divider
34502     The clock divider for the MPC8568 local bus should be doubled, like the
34503     other newer MPC85xx chips.
34505     Since there are now more chips with a 2x divider than a 1x, and any new
34506     85xx chips will probably be 2x, invert the sense of the #if so that it
34507     lists the 1x chips instead of the 2x ones.
34509     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
34510     Acked-by: Kumar Gala <galak@kernel.crashing.org>
34511     Acked-by: Jon Loeliger <jdl@freescale.com>
34513 commit f51f07eb58fad12de9294ba4ee6c09a0ddeaee03
34514 Author: Dave Liu <daveliu@freescale.com>
34515 Date:   Tue Dec 16 12:09:27 2008 +0800
34517     85xx: Fix the boot window issue
34519     If one custom board is using the 8MB flash, it is set
34520     as FLASH_BASE = 0xef000000, TEXT_BASE = 0xef780000.
34521     The current start.S code will be broken at switch_as.
34523     It is because the TLB1[15] is set as 16MB page size,
34524     EPN = TEXT_BASE & 0xff000000, RPN = 0xff000000.
34526     For the 8MB flash case, the EPN = 0xefxxxxxx,
34527     RPN = 0xffxxxxxx. Assume the virt address of switch_as
34528     is 0xef7ff18c, the real address of the instruction at
34529     switch_as should be 0xff7ff18c. the 0xff7ff18c is out
34530     of the range of the default 8MB boot LAW window
34531     0xff800000 - 0xffffffff.
34533     So when we switch to AS1 address space at switch_as,
34534     the core can't fetch the instruction at switch_as any
34535     more. It will cause broken issue.
34537     Signed-off-by: Dave Liu <daveliu@freescale.com>
34539 commit 58da8890d5fbd074746037722a423de9ac408616
34540 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
34541 Date:   Thu Dec 11 15:47:50 2008 -0500
34543     sbc8548: use proper PHY address
34545     The values given for the PHY address were wrong, so the code
34546     read no valid PHY ID, and fell through to the generic PHY
34547     support, which would work on 1000M but would not auto negotiate
34548     down to 100M or 10M.
34550     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
34552 commit ad22f9273c6f24fbfa917e867680e9688e0c59c5
34553 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
34554 Date:   Thu Dec 11 15:47:51 2008 -0500
34556     sbc8548: enable command line editing by default.
34558     Lets make things a bit more user friendly.  It isn't 1985 anymore.
34560     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
34562 commit bd93105fa171184a71ca8b22be03dc2705cfbd3f
34563 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
34564 Date:   Thu Dec 11 15:47:49 2008 -0500
34566     sbc8548: don't enable the 3rd and 4th eTSEC
34568     These interfaces don't have usable connectors on the board, so don't
34569     bother enumerating or configuring them.
34571     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
34573 commit 181a3650113883728927928b3ac81ad6dade4b2c
34574 Author: Haiying Wang <Haiying.Wang@freescale.com>
34575 Date:   Wed Dec 3 10:08:19 2008 -0500
34577     Set IVPR to kenrel entry point in second core boot page
34579     Assuming the OSes exception vectors start from the base of kernel address, and
34580     the kernel physical starting address can be relocated to an non-zero address.
34581     This patch enables the second core to have a valid IVPR for debugger before
34582     kernel setting IVPR in CAMP mode. Otherwise, IVPR is 0x0 and it is not a valid
34583     value for second core which runs kernel at different physical address other
34584     than 0x0.
34586     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
34588 commit a5d212a263c58cc746481bf1fc878510533ce7d6
34589 Author: Trent Piepho <tpiepho@freescale.com>
34590 Date:   Wed Dec 3 15:16:34 2008 -0800
34592     mpc8xxx: LCRR[CLKDIV] is sometimes five bits
34594     On newer CPUs, 8536, 8572, and 8610, the CLKDIV field of LCRR is five bits
34595     instead of four.
34597     In order to avoid an ifdef, LCRR_CLKDIV is set to 0x1f on all systems.  It
34598     should be safe as the fifth bit was defined as reserved and set to 0.
34600     Code that was using a hard coded 0x0f is changed to use LCRR_CLKDIV.
34602     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
34603     Acked-by: Kumar Gala <galak@kernel.crashing.org>
34604     Acked-by: Jon Loeliger <jdl@freescale.com>
34606 commit 58ec4866ed916c7e422f5107bb27b0822084728e
34607 Author: Trent Piepho <tpiepho@freescale.com>
34608 Date:   Wed Dec 3 15:16:38 2008 -0800
34610     mpc8[56]xx: Put localbus clock in device tree
34612     Export the localbus frequency in the device tree, the same way the CPU, TB,
34613     CCB, and various other frequencies are exported in their respective device
34614     tree nodes.
34616     Some localbus devices need this information to be programed correctly, so
34617     it makes sense to export it along with the other frequencies.
34619     Unfortunately, when someone wrote the localbus dts bindings, they didn't
34620     bother to define what the "compatible" property should be.  So it seems no
34621     one was quite sure what to put in their dts files.
34623     Based on current existing dts files in the kernel source, I've used
34624     "fsl,pq3-localbus" and "fsl,elbc" for MPC85xx, which are used by almost all
34625     of the 85xx devices, and are looked for by the Linux code.  The eLBC is
34626     apparently not entirely backward compatible with the pq3 LBC and so eLBC
34627     equipped platforms like 8572 won't use pq3-localbus.
34629     For MPC86xx, I've used "fsl,elbc" which is used by some of the 86xx systems
34630     and is also looked for by the Linux code.  On MPC8641, I've also used
34631     "fsl,mpc8641-localbus" as it is also commonly used in dts files, some of
34632     which don't use "fsl,elbc" or any other acceptable name to match on.
34634     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
34635     Acked-by: Kumar Gala <galak@kernel.crashing.org>
34636     Acked-by: Jon Loeliger <jdl@freescale.com>
34638 commit 9d94aff699eed38b286814fcbb335f3eb8516a0e
34639 Author: Kumar Gala <galak@kernel.crashing.org>
34640 Date:   Tue Dec 16 14:59:22 2008 -0600
34642     NAND FSL elbc: Use virt_to_phys to determine which bank is in use
34644     The current code that determines which bank/chipselect is used for a
34645     given NAND instance only worked for 32-bit addresses and assumed
34646     a 1:1 mapping.  This breaks in 36-bit physical configs.
34648     The proper way to handle this is to use the virt_to_phys() and
34649     BR_PHYS_ADDR() routinues to match the 34-bit lbc bus address
34650     with the the virtual address the NAND code uses.
34652     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34653     Acked-by: Scott Wood <scottwood@freescale.com>
34655 commit 77c8115b1f1871811633eae77a5a700fac1f0e50
34656 Author: Kumar Gala <galak@kernel.crashing.org>
34657 Date:   Tue Dec 16 14:59:21 2008 -0600
34659     ppc: Use addrmap in virt_to_phys and map_physmem.
34661     If we have addr map support enabled use the mapping functions to
34662     implement virt_to_phys() and map_physmem().
34664     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34666 commit ecf5b98c7a6a2e2256dfddd48fab26678dcd6b90
34667 Author: Kumar Gala <galak@kernel.crashing.org>
34668 Date:   Tue Dec 16 14:59:20 2008 -0600
34670     85xx: Add support to populate addr map based on TLB settings
34672     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34674 commit 78bbc5ce151c5a484bb51bf1866b4a993ffc16ec
34675 Author: Peter Tyser <ptyser@xes-inc.com>
34676 Date:   Mon Dec 1 13:47:13 2008 -0600
34678     XPedite5200 board support
34680     Initial support for Extreme Engineering Solutions XPedite5200 -
34681     a MPC8548-based PMC single board computer.
34683     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34685 commit 487dcb4fb89be0992bc06ec1341090017bd9cf2f
34686 Author: Peter Tyser <ptyser@xes-inc.com>
34687 Date:   Wed Oct 29 12:39:27 2008 -0500
34689     85xx: Enable inbound PCI config cycles for X-ES boards
34691     Update X-ES Freescale boards to allow inbound PCI configuration
34692     cycles when configured as agent/endpoint.
34694     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34696 commit ccf0fdd02b97323f8caae18d06cc9daeac2f192f
34697 Author: Peter Tyser <ptyser@xes-inc.com>
34698 Date:   Wed Dec 17 16:36:23 2008 -0600
34700     XPedite5370 board support
34702     Initial support for Extreme Engineering Solutions XPedite5370 -
34703     a MPC8572-based 3U VPX single board computer with a PMC/XMC
34704     site.
34706     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34708 commit e92739d34e2d6b6aca93b2598248210710897ce8
34709 Author: Peter Tyser <ptyser@xes-inc.com>
34710 Date:   Wed Dec 17 16:36:21 2008 -0600
34712     Add support for PCA953x I2C gpio devices
34714     Initial support for NXP's 4 and 8 bit I2C gpio expanders
34715     (eg pca9537, pca9557, etc). The CONFIG_PCA953X define
34716     enables support for the devices while the CONFIG_CMD_PCA953X
34717     define enables the pca953x command. The CONFIG_CMD_PCA953X_INFO
34718     define enables an 'info' sub-command which provides summary
34719     information for the given pca953x device.
34721     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34723 commit 7a8979591171676417ab36852d8811a8c46accd8
34724 Author: Peter Tyser <ptyser@xes-inc.com>
34725 Date:   Wed Oct 29 12:39:26 2008 -0500
34727     pci/fsl_pci_init: Enable inbound PCI config cycles
34729     Add fsl_pci_config_unlock() function to enable a
34730     PCI/PCIe interface configured in agent/endpoint mode to
34731     respond to inbound PCI configuration cycles.
34733     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34735 commit 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb
34736 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34737 Date:   Wed Dec 17 16:43:18 2008 +0100
34739     avr32: Remove second definition of virt_to_phys()
34741     The second definition introduced by 65e43a1063 conflicts with the
34742     existing one.
34744     Also, convert the existing definition to use phys_addr_t. The volatile
34745     qualifier is still needed due to brain damage elsewhere.
34747     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34749 commit b616f2b545f73757669b37386f0b37bb61fc6797
34750 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34751 Date:   Mon Sep 8 22:27:18 2008 +0200
34753     MIPS: qemu_mips: update doc to generate and to use qemu flash, ide file
34755     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34756     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34758 commit 16cdf816779f5b602a9b3b4d2ea4dea05095c35b
34759 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34760 Date:   Tue Dec 16 22:10:31 2008 +0100
34762     MIPS: qemu_mips: update doc to use all disk and boot linux kernel
34764     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34765     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34767 commit 13095b2f07dacb1f863772266c1789d47a523a8a
34768 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34769 Date:   Tue Dec 16 22:10:30 2008 +0100
34771     MIPS: qemu_mips: move env storage just after u-boot
34773     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34774     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34776 commit aced78d852d0b009e8aaa1445af8cb40861ee549
34777 Author: Wolfgang Denk <wd@denx.de>
34778 Date:   Tue Dec 16 23:48:27 2008 +0100
34780     Prepare 2009.01-rc1
34782     Signed-off-by: Wolfgang Denk <wd@denx.de>
34784 commit 9e2a79b4c585ad31138fb90b68fd0234d64a8da8
34785 Author: Wolfgang Denk <wd@denx.de>
34786 Date:   Tue Dec 16 23:13:46 2008 +0100
34788     include/configs/at91cap9adk.h: fix typo.
34790     Signed-off-by: Wolfgang Denk <wd@denx.de>
34792 commit 45ca04f2377361593151d2d4da51f8ba4832d233
34793 Author: Wolfgang Denk <wd@denx.de>
34794 Date:   Tue Dec 16 22:32:25 2008 +0100
34796     board/trab/memory.c: Fix compile problems.
34798     Apply changes from commit 44b4dbed to board/trab/memory.c, too.
34800     Actually we'd need a major cleanup here - as it turns out,
34801     board/trab/memory.c is more or less a verbatim copy of
34802     post/drivers/memory.c ... but then, trab is EOL anyway,r
34803     so this is not worth the effort.
34805     Signed-off-by: Wolfgang Denk <wd@denx.de>
34807 commit ff49ea8977b56916edd5b1766d9939010e30b181
34808 Author: Scott Wood <scottwood@freescale.com>
34809 Date:   Tue Dec 16 14:24:16 2008 -0600
34811     NAND: Mark the BBT as scanned prior to calling scan_bbt.
34813     Otherwise, recursion can occur if scan_bbt does not find a bad block
34814     table, and tries to write one, and the attempt to erase the BBT area
34815     causes a bad block check.
34817     Signed-off-by: Scott Wood <scottwood@freescale.com>
34819 commit 584eedab66d0828f2d571a24b10526c4e65f547b
34820 Author: Ilya Yanok <yanok@emcraft.com>
34821 Date:   Thu Dec 11 05:51:57 2008 +0300
34823     jffs2: include <linux/mtd/compat.h> instead of defining own min_t
34825     Include <linux/mtd/compat.h> header for min_t definition instead of
34826     providing our own one. Removes warnings in case of OneNAND support
34827     enabled.
34829     Although I thinks it's a bit silly to include <linux/mtd/compat.h>
34830     just for min_t...
34832     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
34833     Acked-by: Stefan Roese <sr@denx.de>
34835 commit b1ffecec37b57a59c139042267faac458e5324e9
34836 Author: Becky Bruce <beckyb@kernel.crashing.org>
34837 Date:   Wed Dec 3 23:04:37 2008 -0600
34839     powerpc: fix io.h build warning with CONFIG_PHYS_64BIT
34841     Casting a pointer to a phys_addr_t when it's an unsigned long long
34842     on a 32-bit system without first casting to a non-pointer type
34843     generates a compiler warning. Fix this.
34845     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
34847 commit 6cdadcb3f1b6eac4a1c4256acaa1438413f95351
34848 Author: Wolfgang Denk <wd@denx.de>
34849 Date:   Tue Dec 16 16:22:50 2008 +0100
34851     trab: make trab_fkt standalone code independent of libgcc
34853     Use our own local functions in lib_arm/ instead.
34855     Signed-off-by: Wolfgang Denk <wd@denx.de>
34857 commit aa1bcca3d2e22af4dea9f02132f9b56a30378ded
34858 Author: Wolfgang Denk <wd@denx.de>
34859 Date:   Tue Dec 16 14:44:06 2008 +0100
34861     post/Makefile: fix dependency problem with parallel builds
34863     Parallel builds (using "make -jN") would occasionally fail with error
34864     messages like
34865         ppc_4xxFP-objdump: string.o: File format not recognized
34866     or
34867         post/libpost.a(cpu.o): In function `cpu_post_test':
34868         /home/wd/git/u-boot/work/post/lib_ppc/cpu.c:130: undefined reference to `cpu_post_test_string'
34869     or similar. We now make sure to run the 'postdeps" step before
34870     attempting to build the specific POST libraries.
34872     Signed-off-by: Wolfgang Denk <wd@denx.de>
34874 commit 4a0f7538c5c0805fd9a791967bbabacc41deadd9
34875 Author: Wolfgang Denk <wd@denx.de>
34876 Date:   Tue Dec 16 14:41:02 2008 +0100
34878     Makefile: fix dependency problem with parallel builds
34880     Parallel builds (using "make -jN") would occasionally fail with error
34881     messages like
34882         include/autoconf.mk:212: *** missing separator.  Stop.
34883     Line numbers and affected boards were changing. Obviously some
34884     Makefiles included autoconf.mk while it was still being written to.
34885     As a fix, we now write to a temporary file first and then rename it,
34886     so that it is really ready to use as soon as it appears.
34888     Signed-off-by: Wolfgang Denk <wd@denx.de>
34890 commit 455ae7e87f67c44e6aea68865c83acadd3fcd36c
34891 Author: Wolfgang Denk <wd@denx.de>
34892 Date:   Tue Dec 16 01:02:17 2008 +0100
34894     Coding style cleanup, update CHANGELOG.
34896     Signed-off-by: Wolfgang Denk <wd@denx.de>
34898 commit 84bc72d90c505fec3ef4b693995407a0bd4064e5
34899 Author: Mike Frysinger <vapier@gentoo.org>
34900 Date:   Thu Dec 11 18:39:08 2008 -0500
34902     spi/stmicro: fix debug() display of cmd
34904     The stmicro_wait_ready() func tries to show the actual opcode that was sent
34905     to the device, but instead it displays the array pointer.  Fix it to pull
34906     out the opcode from the start of the array.
34908     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34910 commit 5b3375ac8c36c29c87abb132fede0509eb21e5c9
34911 Author: Mike Frysinger <vapier@gentoo.org>
34912 Date:   Thu Dec 11 06:23:37 2008 -0500
34914     env_sf: support embedded environments
34916     If both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE are defined, and the sect
34917     size is larger than the env size, then it means the env is embedded in a
34918     block.  So we have to save/restore the part of the sector which is not the
34919     environment.  Previously, saving the environment in SPI flash in this
34920     setup would probably brick the board as the rest of the sector tends to
34921     contain actual U-Boot data/code.
34923     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34924     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34926 commit ecf5f077c8e77454f532eaac3e3afb7cfc48c62d
34927 Author: Timur Tabi <timur@freescale.com>
34928 Date:   Wed Dec 3 11:28:30 2008 -0600
34930     i2c: merge all i2c_reg_read() and i2c_reg_write() into inline functions
34932     All implementations of the functions i2c_reg_read() and
34933     i2c_reg_write() are identical. We can save space and simplify the
34934     code by converting these functions into inlines and putting them in
34935     i2c.h.
34937     Signed-off-by: Timur Tabi <timur@freescale.com>
34938     Acked-By: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34940 commit e39cd81c44740d7355d277ed3d38536cbe1e003d
34941 Author: Dave Liu <daveliu@freescale.com>
34942 Date:   Fri Dec 5 15:36:14 2008 +0800
34944     lib_ppc: rework the flush_cache
34946     - It is possible to miss flush/invalidate the last
34947       cache line, we fix it at here.
34948     - add the volatile and memory clobber.
34950     They are pointed by Scott Wood.
34952     Signed-off-by: Dave Liu <daveliu@freescale.com>
34954 commit 63240ba88cd6a220057a0f28e5bf97f5b17ac84b
34955 Author: Kumar Gala <galak@kernel.crashing.org>
34956 Date:   Sat Dec 13 17:20:28 2008 -0600
34958     Introduce addr_map library
34960     Add a library that helps in translating between virtual and physical
34961     addresses.  This library can be useful as a simple means to implement
34962     map_physmem() and virt_to_phys() for platforms that need functionality
34963     beyond the simple 1:1 mapping.
34965     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34967 commit 65e43a10631537dcb92c302d36301a12308216c3
34968 Author: Kumar Gala <galak@kernel.crashing.org>
34969 Date:   Sat Dec 13 17:20:27 2008 -0600
34971     Introduce virt_to_phys()
34973     virt_to_phys() returns the physical address given a virtual. In most
34974     cases this will be just the input value as the vast majority of
34975     systems run in a 1:1 mode.
34977     However in systems that are not running this way it should report the
34978     physical address or ~0 if no mapping exists for the given virtual
34979     address.
34981     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34983 commit 45845301af3de8675c1f7bbc815c6de35452605a
34984 Author: Yuri Tikhonov <yur@emcraft.com>
34985 Date:   Sun Dec 7 22:12:50 2008 +0100
34987     POST Make: fix the sub-dir dependencies missing.
34989     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
34991 commit 22525779cb51f1bbe4e96fea7b778de1935a5a69
34992 Author: Martin Michlmayr <tbm@cyrius.com>
34993 Date:   Wed Aug 6 14:44:05 2008 +0300
34995     Fix a typo in fw_env.config
34997     Reported-by: Martin Michlmayr <tbm@cyrius.com>
34998     Signed-off-by: Wolfgang Denk <wd@denx.de>
35000 commit ba490b7761c62b549c222a9723e532dc801a3899
35001 Author: Peter Tyser <ptyser@xes-inc.com>
35002 Date:   Mon Dec 1 16:22:45 2008 -0600
35004     Remove unused CONFIG_ADDR_STREAMING defines
35006     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35008 commit d16da93430520d3e46c1ab52eedacf36ab7a2311
35009 Author: Peter Tyser <ptyser@xes-inc.com>
35010 Date:   Mon Nov 24 11:54:47 2008 -0600
35012     cmd_mem: Remove unused variable
35014     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35016 commit 3aed3aa2c128ce9fb39ca3f4e9385a7499e93dbf
35017 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35018 Date:   Sun Dec 14 10:29:39 2008 +0100
35020     Fix new found CFG_
35022     Also fix some minor typos.
35024     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35025     Signed-off-by: Wolfgang Denk <wd@denx.de>
35027 commit 0e0c862efe7279e9609db74d758cd1b84c6c7209
35028 Author: Sergei Poselenov <sposelenov@emcraft.com>
35029 Date:   Fri Sep 19 12:07:34 2008 +0200
35031     Remove compiler warning: target CPU does not support interworking
35033     This warning is issued by modern ARM-EABI GCC on non-thumb targets.
35035     Signed-off-by: Vladimir Panfilov <pvr@emcraft.com>
35036     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35038 commit cd6734510a9ff0f41c4a73567d4080ea0033d2c1
35039 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35040 Date:   Mon Nov 24 13:33:51 2008 +0100
35042     Fix FIT and FDT support to have CONFIG_OF_LIBFDT and CONFIG_FIT independent
35044     FDT support is used for both FIT style images and for architectures
35045     that can pass a fdt blob to an OS (ppc, m68k, sparc).
35047     For other architectures and boards which do not pass a fdt blob to an
35048     OS but want to use the new uImage format, we just need FIT support.
35050     Now we can have the 4 following configurations :
35052     1) FIT only             CONFIG_FIT
35053     2) fdt blob only        CONFIG_OF_LIBFDT
35054     3) both                 CONFIG_OF_LIBFDT & CONFIG_FIT
35055     4) none                 none
35057     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35059 commit 19ef4f7a6ef3b725aa9fe4b4f5fb676a84160172
35060 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35061 Date:   Wed Dec 10 15:13:32 2008 +0100
35063     ppc4xx: Disable EEPROM write access on PMC440 boards
35065     This patch disables EEPROM wrtie access by default on PMC440 board.
35067     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35069 commit 5b67a1439a73ba6c34007d9ff60a2c6aa90265df
35070 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35071 Date:   Wed Dec 10 15:12:56 2008 +0100
35073     ppc4xx: Fix Ethernet PHY LED configuration on PMC440 boards
35075     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35077 commit 71fa0714fe5134bc8718c38d5261d267e88582ba
35078 Author: Stefan Roese <sr@denx.de>
35079 Date:   Tue Nov 18 16:36:12 2008 +0100
35081     MIPS: Flush data cache upon relocation
35083     This patch now adds a flush to the data cache upon relocation. The
35084     current implementation is missing this. Only a comment states that it
35085     should be done. So let's really do it now.
35087     Signed-off-by: Stefan Roese <sr@denx.de>
35088     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35090 commit 44174343688dba32571a34550dba08971c65fef1
35091 Author: Stefan Roese <sr@denx.de>
35092 Date:   Tue Nov 18 16:36:22 2008 +0100
35094     MIPS: Add CONFIG_SKIP_LOWLEVEL_INIT
35096     This patch adds the CONFIG_SKIP_LOWLEVEL_INIT option to start.S. This
35097     enables support for boards where the lowlevel initialization is
35098     already done when U-Boot runs (e.g. via OnChip ROM).
35100     This will be used in the upcoming VCTH board support.
35102     Signed-off-by: Stefan Roese <sr@denx.de>
35103     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35105 commit db08ecaa6eb8176904b3bae103a85ee8f735dc40
35106 Author: Stefan Roese <sr@denx.de>
35107 Date:   Wed Nov 12 13:18:02 2008 +0100
35109     MIPS: Add board_early_init_f() to init_sequence
35111     This patch adds the board_early_init_f() call to the MIPS init
35112     sequence. A weak dummy implementation is also added which can be
35113     overridden by a board specific version.
35115     This will be used by the upcoming VCTH board support.
35117     Signed-off-by: Stefan Roese <sr@denx.de>
35118     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35120 commit 9d23fc584c4b7b8bb9ecbee48920b1b04b08fa1b
35121 Author: Stefan Roese <sr@denx.de>
35122 Date:   Wed Nov 12 13:18:19 2008 +0100
35124     MIPS: Add onenand_init() to board.c and move nand_init()
35126     This patch adds a call to onenand_init() for OneNAND support and moves
35127     the nand_init() call to an earlier place, so that the environment can
35128     be used from NAND and OneNAND.
35130     Signed-off-by: Stefan Roese <sr@denx.de>
35131     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35133 commit d8bbc51c7ba9b737a20984333d19fe28a3526431
35134 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35135 Date:   Tue Dec 9 11:32:46 2008 +0900
35137     sh: Update sh2/sh2a timer
35139     Renesas SH2/SH2A timer broken.
35140     This patch fix timer function.
35142     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35143     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35145 commit a319f1496210117b73198e3d889ffffaf6825d00
35146 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35147 Date:   Fri Dec 5 07:27:37 2008 +0100
35149     sh: r2dplus fix register access
35151     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35152     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35154 commit 4d4a96055f6917335a89dbdf2e5556fa5ac329f6
35155 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35156 Date:   Tue Dec 2 07:40:03 2008 +0100
35158     sh: r2dplus/lowlevel_init: coding style fix
35160     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35161     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35163 commit c54b9a42d8f5ab5b2a039b3a2e6fde8b427745e5
35164 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35165 Date:   Tue Nov 25 11:05:19 2008 +0900
35167     sh: Changed value of CACHE_OC_NUM_ENTRIES and CACHE_OC_WAY_SHIFT
35169     SH4 is different a value of CACHE_OC_NUM_ENTRIES and
35170     CACHE_OC_WAY_SHIFT every CPU.
35171     This patch corrects these values.
35173     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35174     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35176 commit e9d5f35497885b3c65d494d09a525d443dcccd3b
35177 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35178 Date:   Thu Nov 20 16:44:42 2008 +0900
35180     sh: Update sh timer function
35182     Change to write/readX function and fix timer problem.
35184     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35185     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35187 commit b81786cff476c41e332eaeb679158f6527cd67d4
35188 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35189 Date:   Tue Nov 4 11:58:58 2008 +0900
35191     sh: Migo-R: Update BSC value
35193     A value of BSC CS4 was wrong, Fixed it.
35195     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35196     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35198 commit 5783758fd260a02f44566ad8f29f899565cd0403
35199 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35200 Date:   Mon Nov 17 16:52:09 2008 +0900
35202     sh: Update ms7722se board config
35204     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35205     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35207 commit 15e2697c9f7fb2ba672a1a70f07cd6d9d4e92b51
35208 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35209 Date:   Mon Nov 17 16:53:09 2008 +0900
35211     sh: Update SuperH serial driver
35213     The address of SCFSR register is wrong at SH7720/SH7721.
35214     This patch fix this.
35216     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
35217     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35219 commit 9a1d3557dcd47365c12eeab584b822e57d994352
35220 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35221 Date:   Tue Nov 11 22:20:15 2008 +0100
35223     sh: fix rsk7203 and MigoR out of tree build
35225     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35226     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
35228 commit 1951f847f0a851853871b613ad7cf21a5242226c
35229 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35230 Date:   Wed Dec 10 14:41:25 2008 +0100
35232     ppc4xx: Update TEXT_BASE for CPCI405 boards
35234     This patch fixes building U-Boot for CPCI405 boards.
35236     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35237     Signed-off-by: Stefan Roese <sr@denx.de>
35239 commit 8c92af7b2fbd60ae87379477f93c7ec9441b7452
35240 Author: Stefan Roese <sr@denx.de>
35241 Date:   Tue Dec 9 20:08:01 2008 +0100
35243     ppc4xx: Remove some features from ALPR to fit into 256k again
35245     Signed-off-by: Stefan Roese <sr@denx.de>
35247 commit 3b089e4f889a2902449d55e081c886ae607cae89
35248 Author: Stefan Roese <sr@denx.de>
35249 Date:   Wed Dec 10 10:32:59 2008 +0100
35251     UBI: Set ubi_dev.type back to DEV_TYPE_NONE upon failing initialization
35253     With this patch we set the type back to NONE upon failing UBI partition
35254     initialization. Otherwise further calls to the UBI subsystem would try
35255     to really access the non-existing UBI partition.
35257     Thanks to Michael Lawnick for pointing this out.
35259     Signed-off-by: Stefan Roese <sr@denx.de>
35261 commit 817329351639a8895cd9b87b33aeff043f3d5a44
35262 Author: Stefan Roese <sr@denx.de>
35263 Date:   Wed Dec 10 10:28:33 2008 +0100
35265     UBI: Return -ENOMEM upon failing malloc
35267     Return with correct error code (-ENOMEM) from ubi_attach_mtd_dev() upon
35268     failing malloc().
35270     Signed-off-by: Stefan Roese <sr@denx.de>
35272 commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae
35273 Author: Ben Warren <biggerbadderben@gmail.com>
35274 Date:   Tue Dec 9 23:34:15 2008 -0800
35276     Fix compile error in building MBX860T.
35278     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35280 commit 8fab49ea911fe925392fa5afcc9bc7373a3d0cee
35281 Author: Michal Simek <monstr@monstr.eu>
35282 Date:   Tue Nov 25 11:42:20 2008 +0100
35284     microblaze: Remove XUPV2P board
35286     ---
35288     Microblaze platforms use generic settings and to have
35289     many platforms is confusing that's why I decided to remove this
35290     platform from U-BOOT. ml401 tree is sufficient for covering
35291     all Microblaze platforms.
35293     This change will go through microblaze custodian tree.
35295 commit 99ba6f353582720defff6e6e6761dc455a207d31
35296 Author: Michal Simek <monstr@monstr.eu>
35297 Date:   Mon Nov 24 18:25:41 2008 +0100
35299     microblaze: Remove CONFIG_LIBFDT due to error in common files
35301 commit e7d591e823a991513833af7030468409e25a3b13
35302 Author: Michal Simek <monstr@monstr.eu>
35303 Date:   Mon Nov 24 11:43:00 2008 +0100
35305     microblaze: Fix ml401 uart16550 setting
35307     Signed-off-by: Michal Simek <monstr@monstr.eu>
35309 commit c85ff0553a8cfbcca51c15b947e1ed55d3810a39
35310 Author: Michal Simek <monstr@monstr.eu>
35311 Date:   Mon Nov 24 11:38:22 2008 +0100
35313     microblaze: Set up relocation is done
35315 commit bcb6dd9187d4b23c748704767bd12d20c829e996
35316 Author: Mike Frysinger <vapier@gentoo.org>
35317 Date:   Tue Dec 9 23:20:31 2008 -0500
35319     tools/netconsole: new script for working with netconsole over UDP
35321     While the doc/README.NetConsole does have a snippet for people to
35322     create their own netcat script, it's a lot easier to make a simple
35323     dedicated script and tell people to use it.
35325     Also spruce it up a bit to make it user friendly.
35327     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35329 commit 8c5170a7d088601d5f30d85093388dab1f1e8ec0
35330 Author: Sonic Zhang <Sonic.Zhang@analog.com>
35331 Date:   Tue Dec 9 23:20:18 2008 -0500
35333     fs/fat: handle FAT on SATA
35335     The FAT file system driver should also handle FAT on SATA devices.
35337     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
35338     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35340 commit 4cd8ed40615a7d741ef2f09ee53779ec6907b8a6
35341 Author: Ben Warren <biggerbadderben@gmail.com>
35342 Date:   Tue Dec 9 23:26:31 2008 -0800
35344     Fix compile error in building MBX860T.
35345     Bug was introduced in 9eb79bd8856bcab896ed5e1f1bca159807a124dd
35347     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35349 commit 97a24a78ee6f34b89b821cb70eda1cf34aa11d97
35350 Author: Jerry Van Baren <gvb.uboot@gmail.com>
35351 Date:   Mon Nov 24 08:15:02 2008 -0500
35353     libfdt: Fix redefined uintptr_t warning for USE_HOSTCC
35355     Compiling U-Boot in an old OS environment (RedHat-7.3  :-)  gives the
35356     following warnings from FDT:
35358     include/libfdt_env.h:50: warning: redefinition of 'uintptr_t'
35359     /usr/include/stdint.h:129: warning: 'uintptr_t' previously declared here
35361     Fix: Protect the definition of uintptr_t when compiling on the host
35362     system.
35364     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35366 commit 1fc2b165c51d6f40c8d505f1b3eaefdb6599b17b
35367 Author: Graeme Russ <graeme.russ@gmail.com>
35368 Date:   Sat Nov 22 08:43:29 2008 +1100
35370     Moved sc520 PCI definitions to stand-alone file
35372     Signed Off By: Graeme Russ <graeme.russ@gmail.com>
35374 commit 1f5070c0c18fa5684bfce09c8abdf10c04ed48fa
35375 Author: Graeme Russ <graeme.russ@gmail.com>
35376 Date:   Sat Nov 22 08:43:21 2008 +1100
35378     Fixed path to sc520 SSI include file
35380     Signed Off By: Graeme Russ <graeme.russ@gmail.com>
35382 commit d4f70da544c33db3e4fce6473dea4ecca4322545
35383 Author: Graeme Russ <graeme.russ@gmail.com>
35384 Date:   Fri Nov 21 06:28:05 2008 +1100
35386     Fixed build error due to #define of _LINUX_STRING_H_ in 82559_eeprom.c
35388     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
35390 commit c034075a713b60e654c64e88e87da29440f31bb4
35391 Author: Stefan Roese <sr@denx.de>
35392 Date:   Wed Nov 12 13:30:10 2008 +0100
35394     serial: Add vcth UART driver
35396     This patch adds the UART driver for the upcoming VCTH board support.
35398     Signed-off-by: Stefan Roese <sr@denx.de>
35400 commit 142a80ffc3b537a9c45acd2444a42a77f147c602
35401 Author: Ilya Yanok <yanok@emcraft.com>
35402 Date:   Thu Nov 13 19:49:36 2008 +0300
35404     jffs2: cache data_crc results
35406     As we moved data_crc() invocation from jffs2_1pass_build_lists() to
35407     jffs2_1pass_read_inode() data_crc is going to be calculated on each
35408     inode access. This patch adds caching of data_crc() results. There
35409     is no significant improvement in speed (because of flash access
35410     caching added in previous patch I think, crc in RAM is really fast)
35411     but this patch impacts memory usage -- every b_node structure uses
35412     12 bytes instead of 8.
35414     Signed-off-by: Alexey Neyman <avn@emcraft.com>
35415     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
35417 commit 9b7076229ec6a958bd835ab70745f7676297ce82
35418 Author: Ilya Yanok <yanok@emcraft.com>
35419 Date:   Thu Nov 13 19:49:35 2008 +0300
35421     jffs2: summary support
35423     This patch adds support for reading fs information from summary
35424     node instead of scanning full eraseblock.
35426     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
35428 commit 70741004dc28946cd82c7af6789c4ddb3fc94526
35429 Author: Ilya Yanok <yanok@emcraft.com>
35430 Date:   Thu Nov 13 19:49:34 2008 +0300
35432     jffs2: add buffer to cache flash accesses
35434     With this patch JFFS2 code allocates memory buffer of max_totlen size
35435     (size of the largest node, calculated during scan time) and uses it to
35436     store entire node. Speeds up loading. If malloc fails we use old ways
35437     to do things.
35439     Signed-off-by: Alexey Neyman <avn@emcraft.com>
35440     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
35442 commit 8a36d31f72411144ac0412ee7e1880e801acd754
35443 Author: Ilya Yanok <yanok@emcraft.com>
35444 Date:   Thu Nov 13 19:49:33 2008 +0300
35446     jffs2: rewrite jffs2 scanning code based on Linux one
35448     Rewrites jffs2_1pass_build_lists() function in style of Linux's
35449     jffs2_scan_medium() and jffs2_scan_eraseblock().
35450     This includes:
35451      - Caching flash acceses
35452      - Smart dealing with free space
35454     Signed-off-by: Alexey Neyman <avn@emcraft.com>
35455     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
35457 commit e0b5532579eda8b4629f1b4f6e49c3cc60f52237
35458 Author: Ilya Yanok <yanok@emcraft.com>
35459 Date:   Thu Nov 13 19:49:32 2008 +0300
35461     jffs2: add sector_size field to part_info structure
35463     This patch adds sector_size field to part_info structure (used
35464     by new JFFS2 code).
35466     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
35468 commit f73846956778a7dfee83403ef9747aff77198848
35469 Author: Ilya Yanok <yanok@emcraft.com>
35470 Date:   Thu Nov 13 19:49:31 2008 +0300
35472     jffs2: fix searching for latest version in jffs2_1pass_list_inodes()
35474     We need to update i_version inside cycle to find really latest version
35475     inside jffs2_1pass_list_inodes(). With that fixed we can use isize inside
35476     dump_inode() instead of calling expensive jffs2_1pass_read_inode().
35478     Signed-off-by: Alexey Neyman <avn@emcraft.com>
35479     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
35481 commit 1113cb764b3da256ef8a1f9539f4efbe221ff3c4
35482 Author: Wolfgang Denk <wd@denx.de>
35483 Date:   Tue Dec 9 23:13:51 2008 +0100
35485     evb64260: fix "cast to pointer from integer of different size" warnings
35487     Signed-off-by: Wolfgang Denk <wd@denx.de>
35489 commit d2776827315c3d469b8cb4cec14d58877798daa2
35490 Author: Stefan Althoefer <stefan.althoefer@web.de>
35491 Date:   Sun Dec 7 19:39:11 2008 +0100
35493     USB: descriptor handling
35495     Hi,
35497     I found a bug when working with the u-boot USB subsystem on IXP425 processor
35498     (big endian Xscale aka ARMv5).
35499     I recognized that the second usb_endpoint_descriptor of the attached memory
35500     stick was corrupted.
35502     The reason for this are the packed structures below (either u-boot and
35503     u-boot-usb):
35505     --------------
35506     /* Endpoint descriptor */
35507     struct usb_endpoint_descriptor {
35508         unsigned char  bLength;
35509         unsigned char  bDescriptorType;
35510         unsigned char  bEndpointAddress;
35511         unsigned char  bmAttributes;
35512         unsigned short wMaxPacketSize;
35513         unsigned char  bInterval;
35514         unsigned char  bRefresh;
35515         unsigned char  bSynchAddress;
35517     } __attribute__ ((packed));
35518     /* Interface descriptor */
35519     struct usb_interface_descriptor {
35520         unsigned char  bLength;
35521         unsigned char  bDescriptorType;
35522         unsigned char  bInterfaceNumber;
35523         unsigned char  bAlternateSetting;
35524         unsigned char  bNumEndpoints;
35525         unsigned char  bInterfaceClass;
35526         unsigned char  bInterfaceSubClass;
35527         unsigned char  bInterfaceProtocol;
35528         unsigned char  iInterface;
35530         unsigned char  no_of_ep;
35531         unsigned char  num_altsetting;
35532         unsigned char  act_altsetting;
35533         struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
35534     } __attribute__ ((packed));
35535     ------------
35537     As usb_endpoint_descriptor is only 7byte in length, the start of all
35538     odd ep_desc[] structures is not word aligned. This makes wMaxPacketSize
35539     of these structures also not word aligned.
35541     ARMv5 Architecture however does not support non-aligned multibyte
35542     data type (see A2.8 of ARM Architecture Reference Manual).
35544     Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
35545     Signed-off-by: Remy Böhmer <linux@bohmer.net>
35547 commit 4c253fdb2a175ea3472c38a1455a16faa58e81f0
35548 Author: Kumar Gala <galak@kernel.crashing.org>
35549 Date:   Tue Dec 9 10:27:33 2008 -0600
35551     drivers/fsl_pci_init: Fix compile warning
35553     fsl_pci_init.c: In function 'fsl_pci_setup_inbound_windows':
35554     fsl_pci_init.c:122: warning: comparison is always true due to limited range of data type
35556     The check only makes sense if we are CONFIG_PHYS_64BIT
35558     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35560 commit dedacc18a8c2b3951581eb721fa055a4e0ac4845
35561 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35562 Date:   Sun Dec 7 09:45:35 2008 +0100
35564     usbtty/omap: update to current API
35566     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35567     Signed-off-by: Remy Böhmer <linux@bohmer.net>
35569 commit ee2e9ba917a62cc2e3a484bb79c8da0e01cb93ed
35570 Author: Anatolij Gustschin <agust@denx.de>
35571 Date:   Tue Dec 9 17:52:05 2008 +0100
35573     video: fix FADS823 and RRvision compiling issues
35575     Since commit 561858ee building for FADS823 and RRvision
35576     doesn't work. Let's include version.h and timestamp.h
35577     unconditionally to fix the problem.
35579     Signed-off-by: Anatolij Gustschin <agust@denx.de>
35581 commit 2d2e05727fe4013f807ffa814dff0e75259a1db4
35582 Author: Stefan Roese <sr@denx.de>
35583 Date:   Tue Dec 2 10:53:47 2008 +0100
35585     UBI: Fix size parsing in "ubi create"
35587     Signed-off-by: Stefan Roese <sr@denx.de>
35589 commit 2ee951ba2ac9874d2a93d52e7a187d3184be937e
35590 Author: Stefan Roese <sr@denx.de>
35591 Date:   Thu Nov 27 14:07:09 2008 +0100
35593     UBI: Enable re-initializing of the "ubi part" command
35595     With this patch now, the user can call "ubi part" multiple times to
35596     re-connect the UBI device to another MTD partition.
35598     Signed-off-by: Stefan Roese <sr@denx.de>
35600 commit 9def12cae33d2d3ea2dd56b197fd3dfb3ad60bf4
35601 Author: Stefan Roese <sr@denx.de>
35602 Date:   Thu Nov 27 14:05:15 2008 +0100
35604     MTD: Fix problem based on non-working relocation (list head mtd_partitions)
35606     Don't use LIST_HEAD() but initialize the struct via INIT_LIST_HEAD() upon
35607     first call of add_mtd_partitions(). Otherwise this won't work on platforms
35608     where the relocation is broken (like MIPS or PPC).
35610     Signed-off-by: Stefan Roese <sr@denx.de>
35612 commit 5e3ab68e9acf9edf304b8aa32ad7e005483a2c47
35613 Author: Trent Piepho <tpiepho@freescale.com>
35614 Date:   Wed Nov 12 17:29:48 2008 -0800
35616     Section name should be ".data", not "data"
35618     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
35619     Signed-off-by: Wolfgang Denk <wd@denx.de>
35621 commit 7fa6a2f3b66579dea8bc1a9177646e1141731b15
35622 Author: Wolfgang Denk <wd@denx.de>
35623 Date:   Tue Dec 9 00:39:08 2008 +0100
35625     MAKEALL: Automatically use parallel builds
35627     Add logic to the MAKEALL script to determine the number of CPU cores
35628     on the system, and run a parallel build if there is more than one.
35629     Usually this significantrly accelerates builds.
35631     Allow to manually adjust the number of parallel make jobs by using
35632     the "BUILD_NCPUS" environment variable.
35634     Signed-off-by: Wolfgang Denk <wd@denx.de>
35636 commit 268405fa7c44156c5192a70779920c70906af8d6
35637 Author: Wolfgang Denk <wd@denx.de>
35638 Date:   Tue Dec 9 00:24:30 2008 +0100
35640     vxworks.h: Fix build problem introduced by commits 29a4c24d/e9084b23
35642     Signed-off-by: Wolfgang Denk <wd@denx.de>
35644 commit 153176a9414120ca1736f3cc4951623d6e14e6af
35645 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35646 Date:   Tue Nov 11 06:08:59 2008 +0100
35648     avr32/bootm: remove unused variable 'ret'
35650     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35651     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
35653 commit 434c51a5e62f608a2a78ed5398ac43a1c77cc183
35654 Author: Peter Tyser <ptyser@xes-inc.com>
35655 Date:   Wed Nov 12 13:06:48 2008 -0600
35657     Remove unneeded CONFIG_SHELL references
35659     Make should be using the bash shell by default which makes
35660     CONFIG_SHELL unnecessary
35662     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35664 commit cf7a7b99794bac936899819b95539be1dbd71708
35665 Author: Peter Tyser <ptyser@xes-inc.com>
35666 Date:   Wed Nov 12 12:33:20 2008 -0600
35668     Use bash for default GNU Make shell application
35670     Some Make script commands rely on bash-specific features like brace
35671     expansion, so default to bash for the SHELL variable with a fallback
35672     to the standard sh shell
35674     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35676 commit 4b530018764934ad5689196e9aa5714a6f4d1a6c
35677 Author: Heiko Schocher <hs@denx.de>
35678 Date:   Wed Nov 12 09:50:45 2008 +0100
35680     jffs2: rename devices_init () in common/jffs2.c
35682     rename devices_init () in common/jffs2.c to
35683     jffs2_devices_init (), because there is also a
35684     devices_init () in common/devices.c.
35686     Signed-off-by: Heiko Schocher <hs@denx.de>
35688 commit af5eb847a10f1037590001355d88bab3fe7be48b
35689 Author: Daniel Hellstrom <daniel@gaisler.com>
35690 Date:   Mon Nov 10 12:46:20 2008 +0000
35692     SPARC: Fixed compiler error introduced by commit c160a9544743
35694     This patch fixes a build error for the SPARC platform. It was
35695     introduced by commit c160a9544743e80e8889edb2275538e7764ce334.
35697     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
35699 commit 4c60259899aa00f59db0d936b8807f9a26411c0f
35700 Author: Gary Jennejohn <garyj@denx.de>
35701 Date:   Sun Nov 9 12:50:59 2008 +0100
35703     mgsuvd add the board-specific part of the HDLC driver
35705     Signed-off-by: Gary Jennejohn <garyj@denx.de>
35707 commit 534a4359666af48bd69a3743d8a8c2bdb1d3ec70
35708 Author: Gary Jennejohn <garyj@denx.de>
35709 Date:   Sun Nov 9 12:45:03 2008 +0100
35711     mgcoge add the board-specific part of the HDLC driver
35713     Signed-off-by: Gary Jennejohn <garyj@denx.de>
35715 commit 135f5534538bb8ea4f38a7030da12187d22ef7e0
35716 Author: Gary Jennejohn <garyj@denx.de>
35717 Date:   Sun Nov 9 12:36:15 2008 +0100
35719     keymile add the common parts of the HDLC driver
35721     This implements the ICN protocol used across the backplane and is
35722     needed by all the keymile boards.
35724     Signed-off-by: Gary Jennejohn <garyj@denx.de>
35726 commit 1cb82a9207a550557399eabc7fe47f21bbd9ddf8
35727 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35728 Date:   Fri Nov 7 22:46:22 2008 +0100
35730     drivers/bios_emulator: Move conditional compilation to Makefile
35732     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35734 commit bcdf1d2cf6b24fb905fd7da80da4b3c65a7995b5
35735 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
35736 Date:   Thu Nov 6 14:01:51 2008 -0500
35738     common/cmd_ide.c: Corrected endian order printing for compact flash serial number.
35740     Corrected endian order printing for compact flash serial number.
35742     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
35744 commit 16a28ef219c27423a1ef502f19070c4d375079b8
35745 Author: Gary Jennejohn <garyj@denx.de>
35746 Date:   Thu Nov 6 15:04:23 2008 +0100
35748     IOMUX: Add console multiplexing support.
35750     Modifications to support console multiplexing.  This is controlled using
35751     CONFIG_SYS_CONSOLE_MUX in the board configuration file.
35753     This allows a user to specify multiple console devices in the environment
35754     with a command like this: setenv stdin serial,nc.  As a result, the user can
35755     enter text on both the serial and netconsole interfaces.
35757     All devices - stdin, stdout and stderr - can be set in this manner.
35759     1) common/iomux.c and include/iomux.h contain the environment setting
35760     implementation.
35761     2) doc/README.iomux contains a somewhat more detailed description.
35762     3) The implementation in (1) is called from common/cmd_nvedit.c to
35763     handle setenv and from common/console.c to handle initialization of
35764     input/output devices at boot time.
35765     4) common/console.c also contains the code needed to poll multiple console
35766     devices for input and send output to all devices registered for output.
35767     5) include/common.h includes iomux.h and common/Makefile generates iomux.o
35768     when CONFIG_SYS_CONSOLE_MUX is set.
35770     Signed-off-by: Gary Jennejohn <garyj@denx.de>
35772 commit 774ce72026f74ac9641bcbbc588b20f2e13f7ab8
35773 Author: Mike Frysinger <vapier@gentoo.org>
35774 Date:   Tue Nov 4 16:03:46 2008 -0500
35776     strings: use puts() rather than printf()
35778     When running `strings` on really long strings, the stack tends to get
35779     smashed due to printf().  Switch to puts() instead since we're only passing
35780     the data through.
35782     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35784 commit b03150b52e3c491a86a3cc0945274f0e8f9872e7
35785 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
35786 Date:   Mon Nov 3 22:16:18 2008 +0100
35788     Use new CONFIG_SYS_VXWORKS parameters for Netstal boards
35790     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
35792 commit 29a4c24de99d8cb4ac32991c04cab87ed94ca1f9
35793 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
35794 Date:   Mon Nov 3 22:15:34 2008 +0100
35796     cmd_elf.c: Cleanup bootvx and handle new CONFIG_SYS_VXWORKS parameters
35798     - fix size too small by one in sprintf
35799     - changed old (pre 2004) device name ibmEmac to emac
35800     - boot device may be overriden in board config
35801     - servername may be defined in board config
35802     - additional parameters may be defined in board config
35803     - fixed some line wrappings
35804     - replaced  redundant MAX define by max
35806     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
35808 commit e9084b23d16102f44ace24379a1c0c352497ef80
35809 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
35810 Date:   Mon Nov 3 22:14:36 2008 +0100
35812     Add vxworks.h to handle CONFIG_SYS_VXWORKS parameters
35814     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
35816 commit 0b2f4ecad473d785959c7976f20d2a00bd0ee01f
35817 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
35818 Date:   Mon Nov 3 22:13:47 2008 +0100
35820     README: Document CONFIG_SYS parameters for vxworks
35822     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
35824 commit ace514837cac656e29c37a19569cb8ea83071126
35825 Author: Peter Tyser <ptyser@xes-inc.com>
35826 Date:   Fri Oct 31 11:12:38 2008 -0500
35828     lcd: Let the board code show board-specific info cleanup
35830     remove unneeded version.h from lcd.c
35832     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35833     Signed-off-by: Wolfgang Denk <wd@denx.de>
35835 commit 561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9
35836 Author: Peter Tyser <ptyser@xes-inc.com>
35837 Date:   Mon Nov 3 09:30:59 2008 -0600
35839     Update U-Boot's build timestamp on every compile
35841     Use the GNU 'date' command to auto-generate a new U-Boot
35842     timestamp on every compile.
35844     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35846 commit 83ad179e2f0f625b88adb8ef5696709e46fb9077
35847 Author: Remy Bohmer <linux@bohmer.net>
35848 Date:   Thu Dec 4 22:25:57 2008 +0100
35850     Remove redundant armv4 flag from arm926ejs compile flags
35852     Currently the arm926ejs tree has the armv4 option set during compilation.
35853     This flag does not belong here because a arm926 CPU is always a armv5 CPU.
35855     Signed-off-by: Remy Bohmer <linux@bohmer.net>
35857 commit 89a7a87f084c657f8e32b513a77b50eca07e17ec
35858 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
35859 Date:   Sat Dec 6 13:11:14 2008 +0100
35861     at91: Choose environment variables location within make config target
35863     This patch adds the possiblity to choose the media where the environment will
35864     be located. This allow to choose this fundamental configuration without editing
35865     config files.
35867     Documentation file added.
35869     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
35870     Acked-by: Stelian Pop <stelian@popies.net>
35871     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35873 commit 1450c4a6682378567030414a9f1198c39b7730c7
35874 Author: Anatolij Gustschin <agust@denx.de>
35875 Date:   Mon Nov 3 15:30:34 2008 +0100
35877     lwmon, tqm8xx: Fix build errors
35879     Commit 6b59e03e0237a40a2305ea385defdfd92000978b
35880     lcd: Let the board code show board-specific info
35882     introduced some bugs which prevent U-Boot building
35883     for lwmon board if CONFIG_LCD_INFO_BELOW_LOGO will
35884     be defined in the board configuration.
35886     Also "LCD enabled" building for TQM823L doesn't work
35887     since this commit.
35889     This patch fixes above-mentioned issues.
35891     Signed-off-by: Anatolij Gustschin <agust@denx.de>
35893 commit bfa0af6b22ff25b0719a8910f9b6d1f975aa6fb0
35894 Author: Mike Frysinger <vapier@gentoo.org>
35895 Date:   Sun Nov 2 01:18:18 2008 -0400
35897     ignore .gdb_history files
35899     When using gdb, history files will often get generated.  So ignore them.
35901     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
35903 commit c8aa7dfc18f7cc90d0aea6c7becbb67dfc5bba4b
35904 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35905 Date:   Fri Oct 31 12:26:55 2008 +0100
35907     FPGA: move fpga drivers to drivers/fpga
35909     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35911 commit 6a86bb6c25376f0358478219fa28d7c84dd01ed0
35912 Author: Peter Tyser <ptyser@xes-inc.com>
35913 Date:   Mon Dec 1 16:29:38 2008 -0600
35915     net: Fix TftpStart() ip:filename bug
35917     The TftpStart() function modifies the 'BootFile'
35918     string when 'BootFile' contains both an IP address
35919     and filename (eg 1.2.3.4:/path/file). This causes
35920     subsequent calls to TftpStart to incorrectly parse
35921     the TFTP filename and server IP address to use.
35922     For example:
35924     => tftp 0x100000 10.52.0.62:/home/ptyser/non_existant
35925     Speed: 100, half duplex
35926     Using eTSEC1 device
35927     TFTP from server 10.52.0.62; our IP address is 10.52.253.79
35928                      ^^^^^^^^^^ CORRECT
35929     Filename '/home/ptyser/non_existant'.
35930               ^^^^^^^^^^^^^^^^^^^^^^^^^ CORRECT
35931     Load address: 0x100000
35932     Loading: *
35933     TFTP error: 'File not found' (1)
35934     Starting again
35936     eTSEC2: No link.
35937     Speed: 100, half duplex
35938     Using eTSEC1 device
35939     TFTP from server 10.52.0.33; our IP address is 10.52.253.79
35940                      ^^^^^^^^^^ WRONG
35941     Filename '10.52.0.62'.
35942               ^^^^^^^^^^ WRONG
35943     Load address: 0x100000
35944     Loading: *
35945     TFTP error: 'File not found' (1)
35946     Starting again
35948     TftpStart() was modified to not modify the 'BootFile' string.
35950     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35951     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35953 commit d32c5be50bf0600bfdc54223ef341ee9c63db445
35954 Author: Peter Tyser <ptyser@xes-inc.com>
35955 Date:   Mon Dec 1 16:26:21 2008 -0600
35957     net: Add additional IP fragmentation check
35959     Ignore IP packets which have the "more fragments" flag bit
35960     set.  This flag indicates the IP packet is fragmented and
35961     must be ignored by U-Boot.
35963     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35964     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35966 commit e0c07b868cab405ab4b5335a0247899bfc5ea0b6
35967 Author: Peter Tyser <ptyser@xes-inc.com>
35968 Date:   Mon Dec 1 16:26:20 2008 -0600
35970     net: Define IP flag field values
35972     These defines were pulled from the "Add simple
35973     IP/UDP fragmentation support" patch from Frank
35974     Haverkamp <haver@vnet.ibm.com>.
35976     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35977     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
35979 commit 23afaba65ec5206757e589ef334a8b38168c045f
35980 Author: Anatolij Gustschin <agust@denx.de>
35981 Date:   Tue Dec 2 10:31:04 2008 +0100
35983     net: tsec: Fix Marvell 88E1121R phy init
35985     This patch tries to ensure that phy interrupt pin
35986     won't be asserted after booting. We experienced
35987     following issues with current 88E1121R phy init:
35989     Marvell 88E1121R phy can be hardware-configured
35990     to share MDC/MDIO and interrupt pins for both ports
35991     P0 and P1 (e.g. as configured on socrates board).
35992     Port 0 interrupt pin will be shared by both ports
35993     in such configuration. After booting Linux and
35994     configuring eth0 interface, port 0 phy interrupts
35995     are enabled. After rebooting without proper eth0
35996     interface shutdown port 0 phy interrupts remain
35997     enabled so any change on port 0 (link status, etc.)
35998     cause assertion of the interrupt. Now booting Linux
35999     and configuring eth1 interface will cause permanent
36000     phy interrupt storm as the registered phy 1 interrupt
36001     handler doesn't acknowledge phy 0 interrupts. This
36002     of course should be fixed in Linux driver too.
36004     Signed-off-by: Anatolij Gustschin <agust@denx.de>
36005     Acked-by: Andy Fleming <afleming@freescale.com>
36006     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36008 commit 2e4970d8109d690adcf615d9e3cac7b5b2e8eaed
36009 Author: Peter Tyser <ptyser@xes-inc.com>
36010 Date:   Tue Dec 2 12:59:51 2008 -0600
36012     net: Fix download command parsing
36014     When CONFIG_SYS_HUSH_PARSER is defined network download
36015     commands with 1 argument in the format 'tftp "/path/file"'
36016     do not work as expected. The hush command parser strips
36017     the quotes from "/path/file" which causes the network
36018     commands to interpret "/path/file" as an address
36019     instead of the intended filename.
36021     The previous check for a leading quote in netboot_common()
36022     was replaced with a check which ensures only valid
36023     numbers are treated as addresses.
36025     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
36026     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36028 commit 3c2c2f427905040c1513d0c51d637689cba48346
36029 Author: Remy Bohmer <linux@bohmer.net>
36030 Date:   Thu Nov 27 22:30:27 2008 +0100
36032     Remove non-ascii characters from fat code
36034     This code contains some non-ascii characters in comment lines and code.
36035     Most editors do not display those characters properly and editing those
36036     files results always in diffs at these places which are usually not required
36037     to be changed at all. This is error prone.
36039     So, remove those weird characters and replace them by normal C-style
36040     equivalents for which the proper defines were already in the header.
36042     Signed-off-by: Remy Bohmer <linux@bohmer.net>
36044 commit dc889e865356497d3e495570118c2245ebce2631
36045 Author: Dave Liu <daveliu@freescale.com>
36046 Date:   Fri Nov 28 20:16:58 2008 +0800
36048     85xx: fix the wrong DDR settings for MPC8572DS
36050     The default DDR freq is 400MHz or 800M data rate,
36051     the old settings is pure wrong for the default case.
36053     Signed-off-by: Dave Liu <daveliu@freescale.com>
36054     Acked-by: Andy Fleming <afleming@freescale.com>
36056 commit 9df59533f77de2829b4b66e5b7620e04edaa391c
36057 Author: Kumar Gala <galak@kernel.crashing.org>
36058 Date:   Mon Nov 24 10:29:26 2008 -0600
36060     85xx: init gd as early as possible
36062     Moved up the initialization of GD so C code like set_tlb() can use
36063     gd->flags to determine if we've relocated or not in the future.
36065     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36066     Acked-by: Andy Fleming <afleming@freescale.com>
36068 commit aed461af81012a398a205e9be67ab37667491838
36069 Author: Kumar Gala <galak@kernel.crashing.org>
36070 Date:   Mon Nov 24 10:29:25 2008 -0600
36072     85xx: Fix relocation of CCSRBAR
36074     If the virtual address for CCSRBAR is the same after relocation but
36075     the physical address is changing we'd end up having two TLB entries with
36076     the same VA.  Instead we new us the new CCSRBAR virt address + 4k as a
36077     temp virt address to access the old CCSRBAR to relocate it.
36079     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36080     Acked-by: Andy Fleming <afleming@freescale.com>
36082 commit ea154a1781135d822eedee7567cc156089eae93c
36083 Author: Kumar Gala <galak@kernel.crashing.org>
36084 Date:   Mon Nov 24 10:25:14 2008 -0600
36086     FSL: Moved BR_PHYS_ADDR for localbus to common header
36088     The BR_PHYS_ADDR macro is useful on all machines that have local bus
36089     which is pretty much all 83xx/85xx/86xx chips.
36091     Additionally most 85xx & 86xx will need it if they want to support
36092     36-bit physical addresses.
36094     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36095     Acked-by: Andy Fleming <afleming@freescale.com>
36097 commit 9427ccde0355a2ebf47454e8e1be59f5b9864e08
36098 Author: Peter Tyser <ptyser@xes-inc.com>
36099 Date:   Mon Dec 1 13:47:12 2008 -0600
36101     85xx: Add PORDEVSR_PCI1 define
36103     Add define used to determine if PCI1 interface is in PCI or PCIX mode.
36105     Convert users of the old PORDEVSR_PCI constant to use MPC85xx_PORDEVSR_PCI1
36107     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
36108     Signed-off-by: Andy Fleming <afleming@freescale.com>
36110 commit 35db1c6d34b57ae15e99cf03c8e8f8a6148d74f3
36111 Author: Becky Bruce <becky.bruce@freescale.com>
36112 Date:   Fri Nov 21 19:24:22 2008 -0600
36114     drivers/fsl_pci_init: Fix inbound window mapping bug
36116     The current code will cause the creation of a 4GB window
36117     starting at 0 if we have more than 4GB of RAM installed,
36118     which overlaps with PCI_MEM space and causes pci_bus_to_phys()
36119     to return erroneous information. Limit the size to 4GB - 1;
36120     which causes the code to create one 2GB and one 1GB window
36121     instead.
36123     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
36124     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36125     Acked-by: Andy Fleming <afleming@freescale.com>
36127 commit 5a105a333dab6a23e92d763ce76d6f31d57f45df
36128 Author: Jon Loeliger <jdl@freescale.com>
36129 Date:   Thu Nov 20 15:36:48 2008 -0600
36131     Removed unused CONFIG_L1_INIT_RAM symbol.
36133     Prevent further viral propogation of the unused
36134     symbol CONFIG_L1_INIT_RAM by just removing it.
36136     Signed-off-by: Jon Loeliger <jdl@freescale.com>
36137     Acked-by: Andy Fleming <afleming@freescale.com>
36139 commit 7008d26a40a76f90cae5824c812cfed449fb97b8
36140 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
36141 Date:   Wed Oct 29 09:21:44 2008 -0500
36143     fsl ddr skip interleaving if not supported.
36145     Removed while(1) hang if memctl_intlv_ctl is set wrong.
36146     Remove embedded tabs from strings.
36148     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
36149     Acked-by: Kumar Gala <galak@kernel.crashing.org>
36150     Acked-by: Andy Fleming <afleming@freescale.com>
36152 commit dd332e18d082de75eca3fc2c7c778f5d4571a096
36153 Author: Anatolij Gustschin <agust@denx.de>
36154 Date:   Thu Nov 13 18:08:57 2008 +0100
36156     85xx: socrates: fix DDR SDRAM tlb entry configuration
36158     since commit be0bd8234b9777ecd63c4c686f72af070d886517
36159     tlb entry for socrates DDR SDRAM will be reconfigured
36160     by setup_ddr_tlbs() from initdram() causing an
36161     inconsistency with previously configured DDR SDRAM tlb
36162     entry from tlb_table:
36164     socrates>l2cam 7 9
36165     IDX  PID      EPN  SIZE V TS           RPN U0-U3 WIMGE UUUSSS
36166       7 : 00 00000000 256MB V  0 -> 0_00000000  0000 -I-G- ---RWX
36167       8 : 00 00000000 256MB V  0 -> 0_00000000  0000 ----- ---RWX
36168       9 : 00 10000000 256MB V  0 -> 0_10000000  0000 ----- ---RWX
36170     This patch makes the presence of the DDR SDRAM tlb entry in
36171     the tlb_table dependent on CONFIG_SPD_EEPROM to avoid this
36172     inconsistency.
36174     Signed-off-by: Anatolij Gustschin <agust@denx.de>
36175     Acked-by: Andy Fleming <afleming@freescale.com>
36177 commit a2cd50ed6ef0ac6b127b3d6db756979a8336718d
36178 Author: Peter Tyser <ptyser@xes-inc.com>
36179 Date:   Tue Nov 11 10:17:10 2008 -0600
36181     85xx: Add CPU 2 errata workaround to all 8548 boards
36183     All mpc8548-based boards should implement the suggested workaround
36184     to CPU 2 errata. Without the workaround, its possible for the
36185     8548's core to hang while executing a msync or mbar 0 instruction
36186     and a snoopable transaction from an I/O master tagged to make
36187     quick forward progress is present.
36189     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
36190     Acked-by: Andy Fleming <afleming@freescale.com>
36192 commit e57f0fa1333cdf3ca36110aac2900712a5f82976
36193 Author: Dave Liu <daveliu@freescale.com>
36194 Date:   Tue Oct 28 17:53:45 2008 +0800
36196     85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case
36198     we need TLB entry for DDR at !SPD case.
36200     Signed-off-by: Dave Liu <daveliu@freescale.com>
36201     Acked-by: Andy Fleming <afleming@freescale.com>
36203 commit 9b0ad1b1c7a15ff674978705c7c52264978dc5d8
36204 Author: Dave Liu <daveliu@freescale.com>
36205 Date:   Tue Oct 28 17:53:38 2008 +0800
36207     85xx: remove the unused ddr_enable_ecc in the board file
36209     The DDR controller of 8548/8544/8568/8572/8536 processors
36210     have the ECC data init feature, and the new DDR code is
36211     using the feature, and we don't need the way with DMA to
36212     init memory any more.
36214     Signed-off-by: Dave Liu <daveliu@freescale.com>
36215     Acked-by: Andy Fleming <afleming@freescale.com>
36217 commit 4a129a57d923f7c15aa1f567028a80a32d66a100
36218 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36219 Date:   Sun Nov 30 19:36:53 2008 +0100
36221     at91rm9200dk: Fix typo
36223     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36225 commit ed3b18e05c9a8ffa5fb643da9bcec7452e5d5e01
36226 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36227 Date:   Sun Nov 30 19:36:50 2008 +0100
36229     AT91: remove non supported board AT91RM9200DF macro
36231     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36233 commit bd876772ee04095e5dd943d97515a1f14bad4b1c
36234 Author: Ilko Iliev <iliev@ronetix.at>
36235 Date:   Tue Dec 2 17:27:54 2008 +0100
36237     mtd/dataflash.c: fix a problem with the last partition
36239     This patch fix the problem that only the [NB_DATAFLASH_AREA - 1] dataflash
36240     partition can be defined to use the area to the end of dataflash size.
36241     Now it is possible to have only one dataflash partition from 0 to the end
36242     of of dataflash size.
36244     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
36246 commit 03f797793b124dccaae145b977d15d6cb9e74504
36247 Author: Ilko Iliev <iliev@ronetix.at>
36248 Date:   Tue Dec 2 17:20:17 2008 +0100
36250     fix some coding style violations.
36252     This patch fix some coding style violations.
36254     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
36256 commit 5e46b1e54112f4b7fd5185665e571510132c12a7
36257 Author: Stefan Roese <sr@denx.de>
36258 Date:   Thu Nov 27 14:11:37 2008 +0100
36260     OneNAND: Add missing mtd info struct before calling onenand_erase()
36262     Without this patch "saveenv" crashes when MTD partitions are enabled (e.g.
36263     for use in UBI) via CONFIG_MTD_PARTITIONS.
36265     Signed-off-by: Stefan Roese <sr@denx.de>
36266     Signed-off-by: Scott Wood <scottwood@freescale.com>
36268 commit 29382d4064fbaff5daacff4c3209370fa5713966
36269 Author: Becky Bruce <becky.bruce@freescale.com>
36270 Date:   Thu Nov 20 16:43:52 2008 -0600
36272     mpc8641: Fix error in README
36274     I made some updates to the code that didn't make it into the
36275     README - fix this
36277     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36279 commit 801a194616d95e6fc426a176d9615ccbf9876c7f
36280 Author: Jon Loeliger <jdl@freescale.com>
36281 Date:   Thu Nov 20 12:01:02 2008 -0600
36283     Removed unused CONFIG_L1_INIT_RAM symbol.
36285     Prevent further viral propogation of the unused
36286     symbol CONFIG_L1_INIT_RAM by just removing it.
36288     Signed-off-by: Jon Loeliger <jdl@freescale.com>
36290 commit f698738e46cb461e28c2d58228bb34a2fcf5a475
36291 Author: Jon Loeliger <jdl@freescale.com>
36292 Date:   Thu Nov 20 14:02:56 2008 -0600
36294     86xx: Fix non-64-bit compilation problems.
36296     Introducing 64-bit (36-bit) support for the MPC8641HPCN
36297     failed to accomodate the other two 86xx boards.
36298     Introduce definitions for CONFIG_SYS_CCSRBAR_PHYS_{LOW,HIGH}
36299     CONFIG_SYS_CCSR_DEFAULT_DBAT{U,L} and CONFIG_SYS_CCSR_DEFAULT_IBAT{U,L}
36300     with nominal 32-bit values.
36302     Signed-off-by: Jon Loeliger <jdl@freescale.com>
36303     Acked-by: Becky Bruce <becky.bruce@freescale.com>
36305 commit bebfc6ef3ec994c8e18783269b1d8d41f8e38afd
36306 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
36307 Date:   Wed Nov 26 17:40:37 2008 +0100
36309     Remove obsolete command (apply afte USB style patch, 80 chars strict)
36311     Remove USB obsolete commmand
36313     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
36314     Signed-off-by: Remy Böhmer <linux@bohmer.net>
36316 commit de39f8c19d7c12017248c49d432dcb81db68f724
36317 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
36318 Date:   Wed Nov 26 17:41:34 2008 +0100
36320     USB style patch, 80 chars strict
36322     USB Code style patch
36324     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
36325     Signed-off-by: Remy Böhmer <linux@bohmer.net>
36327 commit d10c5a87cb8affbb4d35a311370316d4383d598e
36328 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36329 Date:   Fri Nov 7 22:46:21 2008 +0100
36331     drivers/usb: Move conditional compilation to Makefile
36333     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36334     Signed-off-by: Remy Böhmer <linux@bohmer.net>
36336 commit 2077e348c2a84901022ad95311b47b70361e6daa
36337 Author: Scott Wood <scottwood@freescale.com>
36338 Date:   Tue Nov 25 10:47:02 2008 -0600
36340     NAND: Fix misplaced return statement in nand_{read,write}_skip_bad().
36342     This caused the operation to be needlessly repeated if there were
36343     no bad blocks and no errors.
36345     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
36346     Signed-off-by: Scott Wood <scottwood@freescale.com>
36348 commit 89295028e7d8f7a524f485328279d72fdb102385
36349 Author: Michal Simek <monstr@monstr.eu>
36350 Date:   Mon Nov 24 12:09:50 2008 +0100
36352     ppc4xx: ml300 remove Xilinx BSP from ml300 folder
36354     This BSP should be outside u-boot source tree.
36355     The second reason is that xilinx ppc405 was moved to generic platform.
36357     Signed-off-by: Michal Simek <monstr@monstr.eu>
36358     Signed-off-by: Stefan Roese <sr@denx.de>
36360 commit 24eea623d4974a169026a975ba12fb23d48154b1
36361 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36362 Date:   Mon Nov 24 15:11:10 2008 +0100
36364     ppc4xx: Remove unused features
36366     This patch disables some unused features from the PCI405 configuration
36367     to keep U-Boot image size below 192k.
36369     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36370     Signed-off-by: Stefan Roese <sr@denx.de>
36372 commit 0c2385c3bb51f5d3911fce1ec4720db86b534c2b
36373 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36374 Date:   Mon Nov 24 15:11:09 2008 +0100
36376     ppc4xx: Use correct io accessors for PCI405
36378     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36379     Signed-off-by: Stefan Roese <sr@denx.de>
36381 commit 348c849d86a6f0785752b9bc497a34658713d1d1
36382 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36383 Date:   Mon Nov 24 15:11:08 2008 +0100
36385     ppc4xx: Remove unused code from PCI405 code
36387     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36388     Signed-off-by: Stefan Roese <sr@denx.de>
36390 commit 633639587e3596f0dbf5e6247dd3faf80b1d9063
36391 Author: Heiko Schocher <hs@denx.de>
36392 Date:   Thu Nov 20 09:59:09 2008 +0100
36394     powerpc, keymile boards: extract identical config options
36396     This patch extracts the identical config options for the
36397     keymile boards mgcoge, mgsuvd and kmeter1 in a new
36398     common config file keymile-common.h.
36400     Signed-off-by: Heiko Schocher <hs@denx.de>
36401     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36403 commit 9482a8e3d6ac766d90e5059dce777b1e4c868a30
36404 Author: Heiko Schocher <hs@denx.de>
36405 Date:   Fri Nov 21 08:29:40 2008 +0100
36407     powerpc: keymile: Add a check for the PIGGY debug board
36409     Check the presence of the PIGGY on the keymile boards mgcoge,
36410     mgsuvd and kmeter1. If the PIGGY is not present, dont register
36411     this Ethernet device.
36413     Signed-off-by: Heiko Schocher <hs@denx.de>
36414     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36416 commit 58c696eed839af894e0265064669c402dc28b371
36417 Author: Wolfgang Denk <wd@xpert.denx.de>
36418 Date:   Mon Nov 24 21:50:59 2008 +0100
36420     AT91RM9200DK: fix broken boot from NOR flash
36422     Signed-off-by: Wolfgang Denk <wd@denx.de>
36424 commit 8052352f20b33bef8f9872fc983eac73d4693c38
36425 Author: Jens Scharsig <esw@bus-elektronik.de>
36426 Date:   Tue Nov 18 10:48:46 2008 +0100
36428     at91rm9200: fix broken boot from nor flash
36430     This patch fix the broken boot from NOR Flash on AT91RM9200 boards, if
36431     CONFIG_AT91RM9200 is defined and nor preloader is used.
36433     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
36435 commit 25ea652e907516a283b38237e83712a918f125d7
36436 Author: Piotr Ziecik <kosmo@semihalf.com>
36437 Date:   Mon Nov 17 15:58:00 2008 +0100
36439     UBI: Add proof-of-concept CFI flash support
36441     With this patch UBI can be used on CFI flash chips.
36443     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
36444     Signed-off-by: Stefan Roese <sr@denx.de>
36446 commit e6a7edbc1778d27431ac663b40a71dafa5d20578
36447 Author: Piotr Ziecik <kosmo@semihalf.com>
36448 Date:   Mon Nov 17 15:57:59 2008 +0100
36450     mtd: Remove a printf() from add_mtd_device().
36452     Remove a printf() from add_mtd_device(), which produces spurious output.
36454     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
36455     Signed-off-by: Stefan Roese <sr@denx.de>
36457 commit 91809ed51d8327a8dbbf29aa98a091154c282171
36458 Author: Piotr Ziecik <kosmo@semihalf.com>
36459 Date:   Mon Nov 17 15:57:58 2008 +0100
36461     cfi-mtd: Add cfi-mtd driver.
36463     Add cfi-mtd driver, which exports CFI flash to MTD layer.
36464     This allows CFI flash devices to be used from MTD layer.
36466     Building of the new driver is controlled by CONFIG_FLASH_CFI_MTD
36467     option. Initialization is done by calling cfi_mtd_init() from
36468     flash_init().
36470     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
36471     Signed-off-by: Stefan Roese <sr@denx.de>
36473 commit 6ea808efdf9aa5d9067fbfac32acde8539129ed2
36474 Author: Piotr Ziecik <kosmo@semihalf.com>
36475 Date:   Mon Nov 17 15:49:32 2008 +0100
36477     cfi_flash: Add interface for flash verbosity control
36479     Add interface for flash verbosity control. It allows
36480     to disable output from low-level flash API. It is useful
36481     when calling these low-level functions from context other
36482     than flash commands (for example the MTD/CFI interface
36483     implmentation).
36485     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
36486     Signed-off-by: Stefan Roese <sr@denx.de>
36488 commit ebc9784ce6528385bb8d2558e783622d4bbf20f8
36489 Author: Piotr Ziecik <kosmo@semihalf.com>
36490 Date:   Thu Nov 20 15:17:38 2008 +0100
36492     cfi_flash: Export flash_sector_size() function.
36494     Export flash_sector_size() function from drivers/mtd/cfi_flash.c,
36495     so that it can be used in the upcoming cfi-mtd driver.
36497     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
36498     Signed-off-by: Stefan Roese <sr@denx.de>
36500 commit 45aa5a7f4d5bcb79927ddfc896c1d7c4326e235d
36501 Author: Stefan Roese <sr@denx.de>
36502 Date:   Mon Nov 17 14:45:22 2008 +0100
36504     cfi_flash: Make all flash access functions weak
36506     This patch defines all flash access functions as weak so that
36507     they can be overridden by board specific versions.
36509     This will be used by the upcoming VCTH board support where the NOR
36510     FLASH unfortunately can't be accessed memory-mapped. Special
36511     accessor functions are needed here.
36513     To enable this weak functions you need to define
36514     CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS in your board config header.
36515     Otherwise the "old" default functions will be used resulting
36516     in smaller code.
36518     Signed-off-by: Stefan Roese <sr@denx.de>
36519     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36521 commit a5c4067017631d903e1afa6ad615f0ce19fea517
36522 Author: Stefan Roese <sr@denx.de>
36523 Date:   Mon Nov 24 08:31:16 2008 +0100
36525     UBI: Change parsing of size in commands to default to hex
36527     Currently the size parameters of the UBI commands (e.g. "ubi write") are
36528     decoded as decimal instead of hex as default. This patch now interprets
36529     all these values consistantly as hex, as all other standard U-Boot commands
36530     do.
36532     Signed-off-by: Stefan Roese <sr@denx.de>
36534 commit de01c76c3ccc4e6c5989228eed58e955a3a1a968
36535 Author: Stefan Roese <sr@denx.de>
36536 Date:   Fri Nov 21 13:06:06 2008 +0100
36538     ppc4xx: ML2 shouldn't include the 4xx EMAC driver
36540     Signed-off-by: Stefan Roese <sr@denx.de>
36542 commit 1a6a00dcc5bdfc6e9b4b00f39c1f583a7f96fc7f
36543 Author: Yuri Tikhonov <yur@emcraft.com>
36544 Date:   Fri Nov 14 16:19:19 2008 +0300
36546     ppc4xx: katmai: Change default config
36548      This patch enables support for EXT2, and increases the
36549     CONFIG_SYS_BOOTMAPSZ size for the default configuration
36550     of the katmai boards to use them as the RAID-reference
36551     AMCC setups.
36553      EXT2 enabling allows one to boot kernels from the EXT2
36554     formatted Compact Flash cards.
36556      CONFIG_SYS_BOOTMAPSZ increasing allows one to boot the
36557     Linux kernels, which use PAGE_SIZE of 256KB. Otherwise,
36558     the memory area with DTB file (which is placed at the
36559     end of the bootmap area) will turn out to be overlapped
36560     with the BSS segment of the 256KB kernel, and zeroed
36561     in early_init() of Linux.
36563      Actually, increasing of the bootmap size could be done
36564     via setting of the bootm_size U-Boot variable, but it looks
36565     like the current U-Boot implementation have some bootm_size-
36566     related functionality lost. In many places through the U-Boot
36567     code the CONFIG_SYS_BOOTMAPSZ definition is used directly
36568     (instead of trying to read the corresponding value from the
36569     environment). The same is truth for the boot_jump_linux()
36570     function in lib_ppc/bootm.c, where U-Boot transfers control
36571     to Linux passing the CONFIG_SYS_BOOTMAPSZ (not bootm_size)
36572     value to the booting kernel.
36574     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
36575     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
36576     Signed-off-by: Stefan Roese <sr@denx.de>
36578 commit ddf45cc758d394591fb9bcdcbe96530f733f2bce
36579 Author: Dave Mitchell <dmitch71@gmail.com>
36580 Date:   Thu Nov 20 14:09:50 2008 -0600
36582     ppc4xx: Changed 460EX/GT OCM TLB and internal SRAM initialization
36584     Expanded OCM TLB to allow access to 64K OCM as well as 256K of
36585     internal SRAM.
36587     Adjusted internal SRAM initialization to match updated user
36588     manual recommendation.
36590     OCM & ISRAM are now mapped as follows:
36591             physical        virtual         size
36592     ISRAM   0x4_0000_0000   0xE300_0000     256k
36593     OCM     0x4_0004_0000   0xE304_0000     64k
36595     A single TLB was used for this mapping.
36597     Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
36598     Signed-off-by: Stefan Roese <sr@denx.de>
36600 commit b14ca4b61a681f75f3125676e09d7ce6af66e927
36601 Author: Dave Mitchell <dmitch71@gmail.com>
36602 Date:   Thu Nov 20 14:00:49 2008 -0600
36604     ppc4xx: Added ppc4xx-isram.h for internal SRAM and L2 cache DCRs
36606     Added include/asm-ppc/ppc4xx-isram.h and moved internal SRAM and
36607     L2 cache DCRs from ppc440.h to this new header.
36609     Also converted these DCR defines from lowercase to uppercase and
36610     modified referencing modules to use them.
36612     Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
36613     Signed-off-by: Stefan Roese <sr@denx.de>
36615 commit 711e2b2af820d21d9931d4cf8057d3894600fd54
36616 Author: Steven A. Falco <sfalco@harris.com>
36617 Date:   Thu Nov 20 14:37:57 2008 -0500
36619     ppc4xx: Delete unused definitions for SDR0_DDRCFG from ppc4xx.h
36621     The definitions of bits in SDR_CFG are incorrect, and not used within
36622     U-Boot.  Therefore, they can be removed.
36624     The naming of the sdr_ddrdl/sdr_cfg registers do not follow conventions,
36625     and are unused, so they can be removed too.
36627     A definition for SDR0_DDRCFG is added.
36629     Signed-off-by: Steven A. Falco <sfalco@harris.com>
36630     Signed-off-by: Stefan Roese <sr@denx.de>
36632 commit e23c7c95a96eb0f068efe5c532215a10a1512a95
36633 Author: Dirk Behme <dirk.behme@gmail.com>
36634 Date:   Mon Nov 10 20:15:25 2008 +0100
36636     ARM: OMAP: Convert IO macros
36638     Convert IO macros to readx/writex.
36640     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
36642 commit 263b749e2e25473a48776d317bd2a7e2ddcdd212
36643 Author: Ilko Iliev <iliev@ronetix.at>
36644 Date:   Sun Nov 9 15:53:14 2008 +0100
36646     lib_arm: do_bootm_linux() - correct a small mistake
36648     This patch corrects a small bug in the "if" condition:
36649     the parameter "flag" is 0 and the "if" condition is always true.
36650     The result is - the boom command doesn't start the kernel.
36651     Affected targets: all arm based.
36653     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
36655 commit 3e0cda071a67cb5709e3fa4faf6b31a731859acc
36656 Author: Stelian Pop <stelian@popies.net>
36657 Date:   Sun Nov 9 00:14:46 2008 +0100
36659     AT91: Enable PLLB for USB
36661     At least some (old ?) versions of the AT91Bootstrap do not set up the
36662     PLLB correctly to 48 MHz in order to make USB host function correctly.
36664     This patch sets up the PLLB to the same values Linux uses, and makes USB
36665     work ok on the following CPUs:
36666         - AT91CAP9
36667         - AT91SAM9260
36668         - AT91SAM9263
36670     This patch also defines CONFIG_USB_STORAGE and CONFIG_CMD_FAT for all
36671     the relevant AT91CAP9/AT91SAM9 atmel boards.
36673     Signed-off-by: Stelian Pop <stelian@popies.net>
36674     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36676 commit ad229a44e162af0f65e57e4e3dc133d5f0364ecb
36677 Author: Stelian Pop <stelian@popies.net>
36678 Date:   Fri Nov 7 13:55:14 2008 +0100
36680     AT91: Use AT91_CPU_CLOCK in displays
36682     Introduce AT91_CPU_CLOCK and use it for displaying the CPU
36683     speed in the LCD driver.
36685     Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the
36686     corresponding board clocks.
36688     Signed-off-by: Stelian Pop <stelian@popies.net>
36690 commit fed36ac5ae613773b6cd90e61e292c45440e10c8
36691 Author: Heiko Schocher <hs@denx.de>
36692 Date:   Thu Nov 20 09:57:47 2008 +0100
36694     powerpc: 83xx: add support for the kmeter1 board
36696     This patch adds support for the kmeter1 board from Keymile,
36697     based on a Freescale MPC8360 CPU.
36699     - serial console on UART 1
36700     - 256 MB DDR2 RAM
36701     - 64 MB NOR Flash
36702     - Ethernet RMII Mode over UCC4
36703     - PHY SMSC LAN8700
36705     Signed-off-by: Heiko Schocher <hs@denx.de>
36706     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36708 commit 25fb4eaaeab3f8866020818f4729d990dcc91cf0
36709 Author: Stefan Roese <sr@denx.de>
36710 Date:   Thu Nov 20 11:46:20 2008 +0100
36712     ppc4xx: Clear all potentially pending exceptions in MCSR
36714     This is needed on Canyonlands which still has an exception pending
36715     while running relocate_code(). This leads to a failure after trap_init()
36716     is moved to the top of board_init_r().
36718     Signed-off-by: Stefan Roese <sr@denx.de>
36720 commit facdad5f2602e899a01746916beddbf9e856b5ee
36721 Author: Heiko Schocher <hs@denx.de>
36722 Date:   Wed Nov 19 10:10:30 2008 +0100
36724     powerpc: 83xx: add missing TIMING_CFG1_CASLAT_* defines
36726     Signed-off-by: Heiko Schocher <hs@denx.de>
36727     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36729 commit 2f2a5c3714d17f4ead18b713128b7226e0e822f4
36730 Author: Howard Gregory <Greg.Howard@freescale.com>
36731 Date:   Tue Nov 4 14:55:33 2008 +0800
36733     mpc83xx: Improve the performance of DDR memory
36735     modify the CAS timings. my understanding is that these
36736     settings decrease various wait times in the DDR interface.
36737     Because these wait times are in clock cycles, and the DDR
36738     clock on the 8315 RDB runs slower than on some other 83xx
36739     platforms, we can dial down these values without a problem,
36740     thereby decreasing the latency of memory a little.
36742     Signed-off-by: Howard Gregory <Greg.Howard@freescale.com>
36743     Signed-off-by: Dave Liu <daveliu@freescale.com>
36744     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36746 commit 8000b086b33a5a81f3f390f37e178db7956dc08b
36747 Author: Kyungmin Park <kyungmin.park@samsung.com>
36748 Date:   Fri Oct 24 14:55:33 2008 +0200
36750     ARM: Add Apollon UBI support
36752     To enable UBI on Apollon you need to uncomment the CONFIG_SYS_USE_UBI
36753     macro.
36755     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36756     Signed-off-by: Stefan Roese <sr@denx.de>
36758 commit 694a0b3f1c0accd0de94b89555155d69f8022824
36759 Author: Kyungmin Park <kyungmin.park@samsung.com>
36760 Date:   Wed Nov 19 11:47:05 2008 +0100
36762     UBI: Add UBI command support
36764     This patch adds these UBI commands:
36766     ubi part [nand|onenand] [part] - Show or set current partition
36767     ubi info [l[ayout]] -Display volume and UBI layout information
36768     ubi create[vol] volume [size] [type] - Create volume name with size
36769     ubi write[vol] address volume size - Write volume from address with size
36770     ubi read[vol] address volume [size] - Read volume to address with size
36771     ubi remove[vol] volume - Remove volume
36773     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36774     Signed-off-by: Stefan Roese <sr@denx.de>
36776 commit 58be3a1056d88c6d05f3e914389282807e69923a
36777 Author: Kyungmin Park <kyungmin.park@samsung.com>
36778 Date:   Wed Nov 19 16:38:24 2008 +0100
36780     UBI: Add basic UBI support to U-Boot (Part 8/8)
36782     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36783     It's based on the Linux UBI version and basically has a "OS"
36784     translation wrapper that defines most Linux specific calls
36785     (spin_lock() etc.) into no-ops. Some source code parts have been
36786     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36787     this version with the Linux version and simplifies future UBI
36788     ports/bug-fixes from the Linux version.
36790     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36791     Signed-off-by: Stefan Roese <sr@denx.de>
36793 commit 47ae6693f54f80455ae32c2e0d995e0e4bdc15b9
36794 Author: Kyungmin Park <kyungmin.park@samsung.com>
36795 Date:   Wed Nov 19 16:36:36 2008 +0100
36797     UBI: Add basic UBI support to U-Boot (Part 7/8)
36799     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36800     It's based on the Linux UBI version and basically has a "OS"
36801     translation wrapper that defines most Linux specific calls
36802     (spin_lock() etc.) into no-ops. Some source code parts have been
36803     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36804     this version with the Linux version and simplifies future UBI
36805     ports/bug-fixes from the Linux version.
36807     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36808     Signed-off-by: Stefan Roese <sr@denx.de>
36810 commit 7e6ee7ad27de5216db1baef76f38c3429c8f4a2a
36811 Author: Kyungmin Park <kyungmin.park@samsung.com>
36812 Date:   Wed Nov 19 16:32:36 2008 +0100
36814     UBI: Add basic UBI support to U-Boot (Part 6/8)
36816     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36817     It's based on the Linux UBI version and basically has a "OS"
36818     translation wrapper that defines most Linux specific calls
36819     (spin_lock() etc.) into no-ops. Some source code parts have been
36820     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36821     this version with the Linux version and simplifies future UBI
36822     ports/bug-fixes from the Linux version.
36824     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36825     Signed-off-by: Stefan Roese <sr@denx.de>
36827 commit c91a719daa331b5856109313371e4ece5ec06d96
36828 Author: Kyungmin Park <kyungmin.park@samsung.com>
36829 Date:   Wed Nov 19 16:28:06 2008 +0100
36831     UBI: Add basic UBI support to U-Boot (Part 5/8)
36833     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36834     It's based on the Linux UBI version and basically has a "OS"
36835     translation wrapper that defines most Linux specific calls
36836     (spin_lock() etc.) into no-ops. Some source code parts have been
36837     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36838     this version with the Linux version and simplifies future UBI
36839     ports/bug-fixes from the Linux version.
36841     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36842     Signed-off-by: Stefan Roese <sr@denx.de>
36844 commit f412fefa079c6aa9a9763f6869bf787ea6bf6e1b
36845 Author: Kyungmin Park <kyungmin.park@samsung.com>
36846 Date:   Wed Nov 19 16:27:23 2008 +0100
36848     UBI: Add basic UBI support to U-Boot (Part 4/8)
36850     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36851     It's based on the Linux UBI version and basically has a "OS"
36852     translation wrapper that defines most Linux specific calls
36853     (spin_lock() etc.) into no-ops. Some source code parts have been
36854     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36855     this version with the Linux version and simplifies future UBI
36856     ports/bug-fixes from the Linux version.
36858     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36859     Signed-off-by: Stefan Roese <sr@denx.de>
36861 commit 2d262c4853cb5b6ddce1a28a9641f2de3688d7ea
36862 Author: Kyungmin Park <kyungmin.park@samsung.com>
36863 Date:   Wed Nov 19 16:26:54 2008 +0100
36865     UBI: Add basic UBI support to U-Boot (Part 3/8)
36867     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36868     It's based on the Linux UBI version and basically has a "OS"
36869     translation wrapper that defines most Linux specific calls
36870     (spin_lock() etc.) into no-ops. Some source code parts have been
36871     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36872     this version with the Linux version and simplifies future UBI
36873     ports/bug-fixes from the Linux version.
36875     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36876     Signed-off-by: Stefan Roese <sr@denx.de>
36878 commit 961df83361aff9a14f226214224eb8a06e05ba24
36879 Author: Kyungmin Park <kyungmin.park@samsung.com>
36880 Date:   Wed Nov 19 16:25:44 2008 +0100
36882     UBI: Add basic UBI support to U-Boot (Part 2/8)
36884     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36885     It's based on the Linux UBI version and basically has a "OS"
36886     translation wrapper that defines most Linux specific calls
36887     (spin_lock() etc.) into no-ops. Some source code parts have been
36888     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36889     this version with the Linux version and simplifies future UBI
36890     ports/bug-fixes from the Linux version.
36892     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36893     Signed-off-by: Stefan Roese <sr@denx.de>
36895 commit f399d4a281713d5ef2d764f05d545fe61e3bd569
36896 Author: Kyungmin Park <kyungmin.park@samsung.com>
36897 Date:   Wed Nov 19 16:23:06 2008 +0100
36899     UBI: Add basic UBI support to U-Boot (Part 1/8)
36901     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
36902     It's based on the Linux UBI version and basically has a "OS"
36903     translation wrapper that defines most Linux specific calls
36904     (spin_lock() etc.) into no-ops. Some source code parts have been
36905     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
36906     this version with the Linux version and simplifies future UBI
36907     ports/bug-fixes from the Linux version.
36909     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36910     Signed-off-by: Stefan Roese <sr@denx.de>
36912 commit e29c22f5abe6e0f4baa6251efed6074cdfc3db79
36913 Author: Kyungmin Park <kyungmin.park@samsung.com>
36914 Date:   Wed Nov 19 16:20:36 2008 +0100
36916     MTD: Add MTD paritioning infrastructure
36918     This MTD part infrastructure will be used by the upcoming
36919     UBI support.
36921     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36922     Signed-off-by: Stefan Roese <sr@denx.de>
36924 commit 9b827cf1720acda2473afa516956eab6f7cca9a1
36925 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
36926 Date:   Thu Oct 16 22:54:03 2008 +0530
36928     Align end of bss by 4 bytes
36930     Most of the bss initialization loop increments 4 bytes
36931     at a time. And the loop end is checked for an 'equal'
36932     condition. Make the bss end address aligned by 4, so
36933     that the loop will end as expected.
36935     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
36936     Signed-off-by: Wolfgang Denk <wd@denx.de>
36938 commit 3f510db522d160179dff3ddcce9b18f6241c2c24
36939 Author: Becky Bruce <becky.bruce@freescale.com>
36940 Date:   Mon Nov 10 19:45:35 2008 -0600
36942     mpc8641: fix address-cells default in old .dts detection
36944     address-cells defaults to 2, not 1; so in the unlikely
36945     event that it isn't specified, this patch is required
36946     for correct operation.
36948     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36950 commit d025aa4b20a0618a2bada0132a9a0a4afb717f1a
36951 Author: Becky Bruce <becky.bruce@freescale.com>
36952 Date:   Fri Oct 31 17:14:39 2008 -0500
36954     lib_ppc: Move trap_init to occur earlier
36956     Doing trap_init immediately once we're running from RAM
36957     means we're no longer dependent on the physical location of
36958     the flash on non-BookE platforms. Before trap_init, those
36959     platforms switch to real mode and go to 0xfff00100 on exception.
36960     After the switch, they go to 0x00000100  This makes it easier to
36961     move the flash location.
36963     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36965 commit d52082b12c6e545705a19433a2f4142526536189
36966 Author: Becky Bruce <becky.bruce@freescale.com>
36967 Date:   Fri Nov 7 13:46:19 2008 -0600
36969     mpc8641: Try to detect old .dts files
36971     Since we've changed the memory map of the board, be nice and
36972     add some checking to try to catch out-of-date .dts files.  We do
36973     this by checking the CCSRBAR location in the .dts and comparing
36974     it to the CCSRBAR location in u-boot.  If they don't match, a
36975     warning msg is printed.  This isn't foolproof, but it's simple and
36976     will catch most of the cases where an out-of-date .dts is present,
36977     including all of the cases where a new u-boot is used with an old
36978     standard MPC8641 .dts file as supplied with Linux.
36980     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36982 commit 8db0400a27839f91c047dcb83f4a0f09e054a180
36983 Author: Becky Bruce <becky.bruce@freescale.com>
36984 Date:   Thu Nov 6 13:04:09 2008 -0600
36986     toplevel Makefile: Add MPC8641HPCN_36BIT target
36988     This will enable CONFIG_PHYS_36BIT for MPC8641HPCN.
36990     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
36992 commit 3111d32c494e8251b90917447796a7206b757e1e
36993 Author: Becky Bruce <becky.bruce@freescale.com>
36994 Date:   Thu Nov 6 17:37:35 2008 -0600
36996     mpc8641: Support 36-bit physical addressing
36998     This patch creates a memory map with all the devices
36999     in 36-bit physical space, in addition to the 32-bit map.
37000     The CCSR relocation is moved (again, sorry) to
37001     allow for the physical address to be 36 bits - this
37002     requires translation to be enabled.  With 36-bit physical
37003     addressing enabled, we are no longer running with VA=PA
37004     translations.  This means we have to distinguish between
37005     the two in the config file.  The existing region name is
37006     used to indicate the virtual address, and a _PHYS variety
37007     is created to represent the physical address.
37009     Large physical addressing is not enabled by default.
37010     Set CONFIG_PHYS_64BIT in the config file to turn this on.
37012     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37014 commit c759a01a0022de9378a3a761f49786f87684c916
37015 Author: Becky Bruce <becky.bruce@freescale.com>
37016 Date:   Thu Nov 6 17:36:04 2008 -0600
37018     mpc8641: Change 32-bit memory map
37020     The memory map on the 8641hpcn is modified to look more like
37021     the 85xx boards; this is a step towards a more standardized
37022     layout going forward. As part of this change, we now relocate
37023     the flash.
37025     The regions for some of the mappings were far larger than they
37026     needed to be.  I have reduced the mappings to match the
37027     actual sizes supported by the hardware.
37029     In addition I have removed the comments at the head
37030     of the BAT blocks in the config file, rather than updating
37031     them.  These get horribly out of date, and it's a simple
37032     matter to look at the defines to see what they are set to
37033     since everything is right here in the same file.
37035     Documentation has been changed to reflect the new map, as this
37036     change is user visible, and affects the OS which runs post-uboot.
37038     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37040 commit bf9a8c34309ed9276258295db9e9212aabb2531a
37041 Author: Becky Bruce <becky.bruce@freescale.com>
37042 Date:   Wed Nov 5 14:55:35 2008 -0600
37044     mpc86xx: Change early FLASH mapping to 1M at CONFIG_MONITOR_BASE_EARLY
37046     We define CONFIG_MONITOR_BASE_EARLY to define the initial location
37047     of the bootpage in flash.   Use this to create an early mapping
37048     definition for the FLASH, and change the early_bats code to use this.
37050     This  change facilitates the relocation of the flash since the early
37051     mappings are no longer tied to the final location of the flash.
37053     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37055 commit c1e1cf69547b138173f87a7f81c42a5d8dbfde3d
37056 Author: Becky Bruce <becky.bruce@freescale.com>
37057 Date:   Wed Nov 5 14:55:34 2008 -0600
37059     mpc86xx: Use SRR0/1/rfi to enable address translation, not blr
37061     Using a mtmsr/blr means that you have to be executing at the
37062     same virtual address once you enable translation.  This is
37063     unnecessarily restrictive, and is not really how this is
37064     usually done.  Change it to use the more common mtspr SRR0/SRR1
37065     and rfi method.
37067     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37069 commit 6bf98b1362f0cb237620355ed3e6762fff82388d
37070 Author: Becky Bruce <becky.bruce@freescale.com>
37071 Date:   Wed Nov 5 14:55:33 2008 -0600
37073     mpc8641: make DIAG_ADDR == FLASH_BASE
37075     Currently, that's what it is, but it's hardcoded.
37077     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37079 commit 170deacb1ddc39164bdb68f3963e0c0456a5369b
37080 Author: Becky Bruce <becky.bruce@freescale.com>
37081 Date:   Wed Nov 5 14:55:32 2008 -0600
37083     mpc8641: Drop imaginary second flash bank, map 8MB
37085     There's a lot of setup and foo for the second flash
37086     bank.  The problem is, this board doesn't actually have one.
37087     Clean this up.  Also, the flash is 8M in size.  Get rid
37088     of the confusing aliased overmapping, and just map 8M.
37090     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37092 commit 0f2d66027bfc60dc7eea2f096af8891988c5abe4
37093 Author: Becky Bruce <becky.bruce@freescale.com>
37094 Date:   Wed Nov 5 14:55:31 2008 -0600
37096     mpc8641: only define CONFIG_ENV_SIZE once
37098     It's currently defined twice inside in an if/else block, but
37099     both halves set the same value.  Move the define outside
37100     the if.
37102     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37104 commit 24bfb48c35fed6ad1f047e3e4a27df302482cd93
37105 Author: Becky Bruce <becky.bruce@freescale.com>
37106 Date:   Wed Nov 5 14:55:30 2008 -0600
37108     mpc86xx: Move setup_bats into cpu_init_f
37110     In order to later allow for a physical relocation of the
37111     flash, setup_bats, which sets up the final BAT mapping
37112     for the board, needs to happen *after* init_laws().
37113     Otherwise, there will be no window programmed for the flash
37114     at the new physical location at the point when we change
37115     the mmu translation.
37117     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37119 commit 05df3e5a638be8c5b0899eae1766bbe8e4b92c17
37120 Author: Becky Bruce <becky.bruce@freescale.com>
37121 Date:   Wed Nov 5 14:55:29 2008 -0600
37123     mpc8641: Remove extra "0" from BR2 define
37125     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37127 commit edf3fe7d39a1ee07353128af5221422ce9ccfad6
37128 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
37129 Date:   Thu Oct 23 09:08:18 2008 -0400
37131     drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver.
37133     Copied over the fixed PHY driver as used in pp4xx/4xx_enet.c.
37134     This adds support for PHY-less MAC connections to the UEC.
37136     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
37137     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37139 commit 54bdcc9fb6670afde9c26dcf364f582879bf21d6
37140 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37141 Date:   Thu Oct 23 16:27:24 2008 +0000
37143     ColdFire: Add mii driver in drivers/net
37145     All CF platforms' mii.c are consolidated into one
37147     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37148     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37150 commit 25a859066b3af1070eb69f12022113c0a91bd813
37151 Author: Ben Warren <biggerbadderben@gmail.com>
37152 Date:   Mon Oct 27 23:53:17 2008 -0700
37154     Moved initialization of PPC4xx EMAC to cpu_eth_init()
37156     Removed initialization of the driver from net/eth.c
37158     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37159     Acked-by: Stefan Roese <sr@denx.de>
37161 commit 4d03a4e20e58552cb96d61a0e8b56cdb6cc60126
37162 Author: Ben Warren <biggerbadderben@gmail.com>
37163 Date:   Sun Nov 9 21:29:23 2008 -0800
37165     Moved PPC4xx EMAC driver to drivers/net
37167     Also changed path in all linker scripts that reference this driver
37169     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37170     Acked-by: Stefan Roese <sr@denx.de>
37172 commit 96e21f86e8266ed40759e5495ee461265d7f6d28
37173 Author: Ben Warren <biggerbadderben@gmail.com>
37174 Date:   Mon Oct 27 23:50:15 2008 -0700
37176     Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC
37178     All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG
37180     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37181     Acked-by: Stefan Roese <sr@denx.de>
37183 commit 9eb79bd8856bcab896ed5e1f1bca159807a124dd
37184 Author: Ben Warren <biggerbadderben@gmail.com>
37185 Date:   Thu Oct 23 22:02:49 2008 -0700
37187     Moved initialization of MPC8XX SCC to cpu_eth_init()
37189     Removed initialization of the driver from net/eth.c
37191     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37193 commit a9bec96d6359ac9f90a852962bf3040cad9e0256
37194 Author: Ben Warren <biggerbadderben@gmail.com>
37195 Date:   Wed Oct 22 23:47:51 2008 -0700
37197     Moved initialization of MPC8220 FEC to cpu_eth_init()
37199     Removed initialization of the driver from net/eth.c
37201     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37203 commit 0e8454e990385a58f708c2fc26d31ac041c7a6c5
37204 Author: Ben Warren <biggerbadderben@gmail.com>
37205 Date:   Wed Oct 22 23:32:48 2008 -0700
37207     Moved initialization of QE Ethernet controller to cpu_eth_init()
37209     Removed initialization of the driver from net/eth.c
37211     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37213 commit 3456a148276d5494b53ee40242efb6462d163504
37214 Author: Ben Warren <biggerbadderben@gmail.com>
37215 Date:   Wed Oct 22 23:20:29 2008 -0700
37217     Moved initialization of FCC Ethernet controller to cpu_eth_init
37219     Affected boards:
37220         Several MPC8xx boards
37221         Several MPC8260/MPC8272 boards
37222         Several MPC85xx boards
37224     Removed initialization of the driver from net/eth.c
37226     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37228 commit 62e15b497f5c6334c059512678c8db7940ae4c61
37229 Author: Ben Warren <biggerbadderben@gmail.com>
37230 Date:   Thu Oct 30 22:15:35 2008 -0700
37232     Fix typo in cpu/mpc85xx/cpu.c
37234     CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC
37236     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37238 commit 5dfb3ee3f54e2382a08d72906f0e79ecf944f6e3
37239 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37240 Date:   Sun Oct 19 12:08:50 2008 +0900
37242     net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init
37244     This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init
37245     as a part of ongoing eth_initialize cleanup work.  The function ret value
37246     is also fixed as it should be negative on fail.
37248     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
37249     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37251 commit cc94074ecac1885d18ddb683eb934b3c0268aa5b
37252 Author: Ben Warren <biggerbadderben@gmail.com>
37253 Date:   Fri Sep 5 01:55:22 2008 -0400
37255     Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init()
37257     Also, removed the driver initialization from net/eth.c
37259     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37261 commit f2a7806fc23e82d30c8548911369e0c530607354
37262 Author: Clive Stubbings <uboot@xentech.co.uk>
37263 Date:   Mon Oct 27 15:05:00 2008 +0000
37265     xilinx_emaclite buffer overrun
37267     Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and
37268     PKTSIZE_ALIGN bytes long.
37270     Acked-by: Michal Simek <monstr@monstr.eu>
37272     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37274 commit 0115b1953718a2969f6469d3d5da51ba11e12d42
37275 Author: richardretanubun <richardretanubun@ruggedcom.com>
37276 Date:   Fri Sep 26 08:59:12 2008 -0400
37278     NET: QE: UEC: Make uec_miiphy_read() and uec_miiphy_write() use the devname arg.
37280     The current uec_miiphy_read and uec_miiphy_write hardcode access devlist[0]
37281     This patch makes these function use the devname argument that is passed in to
37282     allow access to the phy registers of other devices in devlist[].
37284     Signed-of-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
37286     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37288 commit 44dcb7332033db8de2810f2fffcae3084f15c8d4
37289 Author: richardretanubun <richardretanubun@ruggedcom.com>
37290 Date:   Mon Oct 6 15:31:43 2008 -0400
37292     Adds two more ethernet interface to 83xx
37294     Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info.
37295     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
37296     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37298 commit d8003fa03733901b73d6c4667b4d80fc8eb1ddd3
37299 Author: Stelian Pop <stelian@popies.net>
37300 Date:   Fri Nov 7 13:54:31 2008 +0100
37302     AT91: Replace AT91_BASE_EMAC by the board specific values.
37304     AT91_BASE_EMAC is never used outside the board specific files,
37305     so replace its usage by the board specific AT91xxx_BASE_EMAC.
37307     Signed-off-by: Stelian Pop <stelian@popies.net>
37308     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37310 commit c91e17affa175ce06afa89b04752301eb4a61666
37311 Author: Stelian Pop <stelian@popies.net>
37312 Date:   Fri Nov 7 12:09:21 2008 +0100
37314     AT91: Replace (undefined) AT91_ID_US* by the board specific values.
37316     AT91_ID_US0 / AT91_ID_US1 / AT91_ID_US2 were used but never defined.
37317     Since they are never used outside the board specific files, they can
37318     be replaced by the board specific AT91xxx_ID_US0 / AT91xxx_ID_US1 /
37319     AT91xxx_ID_US2.
37321     Bug spotted by Jesus Alvarez <jalvarez@micromint.com>.
37323     Signed-off-by: Stelian Pop <stelian@popies.net>
37324     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37326 commit 28962f5a2de81bc0eed1c0b08c6bfaa1cc134ea2
37327 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37328 Date:   Sat Nov 1 10:47:59 2008 +0100
37330     Makefile/at91sam9: move some at91sam9 to the correct subsection for arm926ejs
37332     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37334 commit 1079432e04ccf71aa3684181186182cd63512f19
37335 Author: Sergey Lapin <slapin@ossfans.org>
37336 Date:   Fri Oct 31 12:28:43 2008 +0100
37338     Custom AFEB9260 board support
37340     This patch provides support for AFEB9260 board, a product of
37341     OpenSource hardware and software. Some commertial projects
37342     are made with this design. A board is basically AT91SAM9260-EK
37343     with some modifications and different peripherals and different
37344     parts used. Main purpose of this project is to gain experience in
37345     hardware design.
37346     More info: http://groups.google.com/group/arm9fpga-evolution-board
37347     (In Russian only, sorry).
37348     Subversion repository: svn://194.85.238.22/home/users/george/svn/arm9eb
37350     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
37352 commit 26eecd24f97130e56e9c2c2af0e714e05bce6e00
37353 Author: Tomohiro Masubuchi <tomohiro_masubuchiattripeaks.co.jp>
37354 Date:   Tue Oct 21 13:17:16 2008 +0900
37356     Change to use "do_div" macro
37358     Signed-off-by: Tomohiro Masubuchi <tomohiro_masubuchi@tripeaks.co.jp>
37360 commit e352495318d8056a00faa21b633b3e4374bfbf52
37361 Author: Roman Mashak <romez777@gmail.com>
37362 Date:   Wed Oct 22 16:00:26 2008 -0400
37364     ARM926EJ-S: relocate OMAP specific 'cpuinfo.c' into OMAP directory
37366     OMAP identification is implemented in 'cpuinfo.c' and located in ARM926EJ-S directory.
37367     It makes sense to place this file in OMAP specific subdirectory, i.e. cpu/arm926ejs/omap
37369     Signed-off-by: Roman Mashak <romez777@gmail.com>
37371 commit 248b2c367210c06dbd5fbdecf27e97fbe9d05fdb
37372 Author: Roman Mashak <romez777@gmail.com>
37373 Date:   Tue Oct 21 03:01:41 2008 -0700
37375     ARM/Versatile port: Removed unused functions
37377     Removal of never used functions.
37379     Signed-off-by: Roman Mashak <romez777@gmail.com>
37381 commit 1266df887781c779deaf6d05eea2ef90a470cb34
37382 Author: Becky Bruce <becky.bruce@freescale.com>
37383 Date:   Mon Nov 3 15:44:01 2008 -0600
37385     powerpc: change 86xx SMP boot method
37387     We put the bootpg for the secondary cpus into memory and use
37388     BPTR to get to it.  This is a step towards converting to the
37389     ePAPR boot methodology.  Also, the code is written to
37390     deal properly with more than 4GB of RAM.
37392     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37394 commit b5431560682d8f318fbc49db87cfe13ab41d2ee4
37395 Author: Becky Bruce <becky.bruce@freescale.com>
37396 Date:   Fri Oct 31 17:13:49 2008 -0500
37398     8641HPCN: Config file cleanup
37400     There are several items in the config file that were hardcoded
37401     but that should really be based on other config options, since
37402     the regions are contiguous and depend on being so.  This cleans
37403     that up a bit.  Also, add BR_PHYS_ADDR() macro to convert
37404     addresses into the proper format for BR registers.
37406     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37408 commit 4c77de3f144ca088c3867bd6240718c10f5a9d69
37409 Author: Becky Bruce <becky.bruce@freescale.com>
37410 Date:   Fri Oct 31 17:13:32 2008 -0500
37412     86xx: Make dram_size a phys_size_t
37414     It's currently a long and should be phys_size_t.
37416     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37418 commit 104992fc541302a6bac74448e01e7fdad20abca0
37419 Author: Becky Bruce <becky.bruce@freescale.com>
37420 Date:   Sun Nov 2 18:19:32 2008 -0600
37422     powerpc 86xx: Handle CCSR relocation earlier
37424     Currently, the CCSR gets relocated while translation is
37425     enabled, meaning we need 2 BAT translations to get to both the
37426     old location and the new location.  Also, the DEFAULT
37427     CCSR location has a dependency on the BAT that maps the
37428     FLASH region.  Moving the relocation removes this unnecessary
37429     dependency. This makes it easier and more intutive to
37430     modify the board's memory map.
37432     Swap BATs 3 and 4 on 8610 so that all 86xx boards use the same
37433     BAT for CCSR space.
37435     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37437 commit af5d100e8d5cd49d69d52d20f1181eb06ddb4ddf
37438 Author: Becky Bruce <becky.bruce@freescale.com>
37439 Date:   Fri Oct 31 17:14:14 2008 -0500
37441     mpc8641: Make PCI and RIO mutually exclusive, fix non-PCI build
37443     You can't actually have both, and with some coming changes to
37444     change the memory map for the board and support 36-bit physical,
37445     we need the extra BAT that is being consumed by having both.
37447     I also make non-PCI configs build cleanly, for the sake of sanity.
37449     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37451 commit 98693b85d42ff438375dc6d6dcadc70eb7b050bb
37452 Author: Becky Bruce <becky.bruce@freescale.com>
37453 Date:   Fri Oct 31 17:14:00 2008 -0500
37455     mpc8641: Stop supporting non-PCI_PNP configs
37457     We don't actually ever do this, remove the code so we
37458     can stop maintaining it.
37460     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
37462 commit e4f69d1bd21a12049744989d2dd6b5199c9b8f23
37463 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37464 Date:   Fri Oct 24 12:59:12 2008 +0000
37466     ColdFire: Fix M5329EVB and M5373EVB nand issue
37468     Fix compilation issue caused by a few mismatches.
37469     Provide proper nand chip select enable/disable in
37470     nand_hwcontrol() rather than in board_nand_init()
37471     just enable once. Remove redundant local nand driver
37472     functions - nand_read_byte(), nand_write_byte() and
37473     nand_dev_ready() to use common nand driver.
37475     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37477 commit 1b2708442224a551a0b865b52710306333888932
37478 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37479 Date:   Wed Oct 22 11:55:30 2008 +0000
37481     ColdFire: Fix compilation error
37483     The error was caused by the change for strmhz() in cpu.c.
37484     A few of them were one extra close parenthesis.
37486     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37488 commit 536e7dac16769954915a484e682a2efb28699133
37489 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37490 Date:   Wed Oct 22 11:38:21 2008 +0000
37492     ColdFire: Add MCF5301x CPU and M53017EVB support
37494     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37496 commit a21d0c2cc9add8894d971ab791f4032f077db817
37497 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37498 Date:   Tue Oct 21 15:37:02 2008 +0000
37500     ColdFire: Add SBF support for M52277EVB
37502     Add serial boot support
37504     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37506 commit b202816c61042c183fe67d097a5893b0f2dafba0
37507 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37508 Date:   Tue Oct 21 14:19:26 2008 +0000
37510     ColdFire: Use CFI driver for M5272C3
37512     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37514 commit f3962d3f574e5a1cffacd4e9bc48713060a2a314
37515 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37516 Date:   Tue Oct 21 13:47:54 2008 +0000
37518     ColdFire: Relocate FEC's GPIO and mii functions protocols
37520     Place FEC pin assignments in cpu_init.c from platform's
37521     mii.c
37523     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37525 commit 6e80f5aa09f8d41bac50b38dc7488ecd22107802
37526 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37527 Date:   Tue Oct 21 12:15:44 2008 +0000
37529     ColdFire: Remove platforms mii.c file
37531     Will use mcfmii.c driver in drivers/net rather than
37532     keep creating new mii.c for each future platform.
37533     Remove EB+MCF-EV123, cobra5272, idmr, M5235EVB,
37534     M5271EVB, M5272C3, M5275EVB, M5282EVB, M5329EVB,
37535     M5373EVB, M54451EVB, M54455EVB, M547xEVB, and M548xEVB's
37536     mii.c
37538     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37540 commit 012522fef3b382469125beb46a315ab4dee02fb0
37541 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37542 Date:   Tue Oct 21 10:03:07 2008 +0000
37544     ColdFire: Modules header files cleanup
37546     Consolidate ATA, ePORT, QSPI, FlexCan, PWM, RNG,
37547     MDHA, SKHA, INTC, and FlexBus structures and
37548     definitions in immap_5xxx.h to more unify modules
37549     header files. Append DSPI support for m547x_8x.
37550     SSI cleanup. Remove USB Host structure from immap_539.h.
37551     Apply changes to use FlexBus structures in mcf52x2's
37552     cpu_init.c and platform configuration files.
37554     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37556 commit ac2331aee99ad36be0fcfed8c49922e3c61b576d
37557 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37558 Date:   Tue Oct 21 08:52:36 2008 +0000
37560     ColdFire: Remove linker file
37562     Each different build for M54455EVB and M5235EVB will
37563     create a u-boot.lds linker file. It is redundant to
37564     keep the u-boot.lds
37566     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37568 commit 0829323073c505556ed5f5073f91adb504584d45
37569 Author: Peter Tyser <ptyser@xes-inc.com>
37570 Date:   Fri Oct 31 11:26:44 2008 -0500
37572     ppc: Fix compile warnings when !CONFIG_OF_LIBFDT
37574     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
37576 commit a80b21d5127583171d6e9bc7f722947641898012
37577 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37578 Date:   Fri Oct 31 12:12:12 2008 +0100
37580     common/Makefile: create others group for non core, environment and command files
37582     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37584 commit 60c68d9c1c6d18ce02c862a05718fd94f97c13d0
37585 Author: Wolfgang Denk <wd@denx.de>
37586 Date:   Fri Oct 31 01:13:37 2008 +0100
37588     TQM8260: use CFI flash driver instead of custom driver.
37590     Signed-off-by: Wolfgang Denk <wd@denx.de>
37592 commit 20d04774f4ef3f6e38974636e0e36ae0f0b5501f
37593 Author: Andy Fleming <afleming@freescale.com>
37594 Date:   Thu Oct 30 17:35:30 2008 -0500
37596     Consolidate MAX/MIN definitions
37598     There were several, now there is one (two if you count the lower-case
37599     versions).
37601     Signed-off-by: Andy Fleming <afleming@freescale.com>
37603 commit 298e476c66fd88d0bc4f0371118652d2b5de4e8a
37604 Author: Heiko Schocher <hs@denx.de>
37605 Date:   Thu Oct 30 09:23:09 2008 +0100
37607     mgsuvd: remove unused defines in config file.
37609     Signed-off-by: Heiko Schocher <hs@denx.de>
37611 commit 3cbd823116ea8b7c654e275a8c2fca87cd1f5dc5
37612 Author: Wolfgang Denk <wd@denx.de>
37613 Date:   Sun Nov 2 16:14:22 2008 +0100
37615     Coding Style cleanup, update CHANGELOG
37617     Signed-off-by: Wolfgang Denk <wd@denx.de>
37619 commit a47f957ab523019992fdef857af01bd71c58a4da
37620 Author: Alessandro Rubini <rubini-list@gnudd.com>
37621 Date:   Fri Oct 31 22:33:21 2008 +0100
37623     NAND: Allow NAND and OneNAND to coexist
37625     This removes in nand.h code that is verbatim duplicated from bbm.h,
37626     including directly bbm.h in nand.h. The previous state of affairs
37627     prevented compiling code for a board hosting both NAND and OneNAND chips.
37629     Reported-by: Scott Wood <scottwood@freescale.com>
37630     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
37631     Signed-off-by: Scott Wood <scottwood@freescale.com>
37633 commit 2f77c7f45b9a37ef265a8dbe3c18efa706fed214
37634 Author: Scott Wood <scottwood@freescale.com>
37635 Date:   Fri Oct 31 13:51:12 2008 -0500
37637     JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.
37639     Reported-by: Alessandro Rubini <rubini-list@gnudd.com>
37640     Signed-off-by: Scott Wood <scottwood@freescale.com>
37642 commit c57fc28947e248fb03c49a28b467686299895055
37643 Author: Jason Jin <Jason.Jin@freescale.com>
37644 Date:   Fri Oct 31 05:07:04 2008 -0500
37646     NAND: Add NAND support for MPC8536DS board
37648     This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa00000
37649     for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file.
37650     It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image.
37652     Singed-off-by: Jason Jin <Jason.Jin@freescale.com>
37653     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
37654     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37656 commit 6fc110bd8a8d642b8f7b0653bd9a08a0b7c3d50b
37657 Author: Haiying Wang <Haiying.Wang@freescale.com>
37658 Date:   Fri Oct 31 05:06:14 2008 -0500
37660     NAND: Fix CONFIG_ENV_ADDR for MPC8572DS
37662     CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE).
37664     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
37665     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37667 commit 51b572a801be57790fe26adaa530210e7fba59cc
37668 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37669 Date:   Fri Oct 24 10:49:48 2008 +0900
37671     sh: rsk7203: Moved rsk7203 board to board/renesas
37673     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37675 commit 58453b00b3ebb26aaa901210023f99504a90bb00
37676 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37677 Date:   Fri Oct 24 10:48:31 2008 +0900
37679     sh: MigoR: Moved MigoR board to board/renesas
37681     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37683 commit c1da2a22817ba85b437afa2f4e715e658b219fd1
37684 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37685 Date:   Fri Oct 24 10:39:44 2008 +0900
37687     sh: r2dplus: Moved r2dplus board to board/renesas
37689     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37691 commit 78385bf2359d828184d0b3649f7ae6b933420000
37692 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37693 Date:   Fri Oct 24 10:36:13 2008 +0900
37695     sh: sh7763rdp: Moved sh7763rdp board to board/renesas
37697     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37699 commit c6525d459c350bfc246ea7826456af77e1e314eb
37700 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37701 Date:   Fri Oct 24 10:35:19 2008 +0900
37703     sh: sh7785lcr: Moved sh7785lcr board to board/renesas
37705     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37707 commit acd3e30d09a73f876222f0d496c4f52ee9d0771d
37708 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37709 Date:   Fri Oct 24 10:34:21 2008 +0900
37711     sh: r7780mp: Moved r7780mp board to board/renesas
37713     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37715 commit f84e6ea275353b8fea772ec7553ff7e4b1f642e0
37716 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37717 Date:   Fri Oct 24 10:32:14 2008 +0900
37719     sh: ap325rxa: Moved ap325rxa board to board/renesas
37721     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37723 commit 9abda6ba735efb059f63dcb25d78b174bfcad1ad
37724 Author: Wolfgang Denk <wd@xpert.denx.de>
37725 Date:   Fri Oct 31 01:12:28 2008 +0100
37727     CFI Driver: Fix "flash not ready" problem
37729     This patch fixes a problem on systems where the NOR flash is attached
37730     to a 64 bit bus.  The toggle bit detection in flash_toggle() is based
37731     on the assumption that the same flash address is read twice without
37732     any other interjacent flash accesses.  However, on 32 bit systems the
37733     function flash_read64() [as currently implemented] does not perform
37734     an atomic 64 bit read - instead, this is broken down into two 32 bit
37735     read accesses on addresses "addr" and "addr + 4".  So instead of
37736     reading a 64 bit value twice from "addr", we see a sequence of 4 32
37737     bit reads from "addr", "addr + 4", "addr", and "addr + 4".  The
37738     consequence is that flash_toggle() fails to work.
37740     This patch implements a simple, but somewhat ugly solution, as it
37741     avoids the use of flash_read64() in this critical place (by breaking
37742     it down manually into 32 bit read operations) instead of rewriting
37743     flash_read64() such to perform atomic 64 bit reads as one could
37744     expect.  However, such a rewrite would require the use of floating
37745     point load operations, which becomes pretty complex:
37747         save MSR;
37748         set Floating Point Enable bit in MSR;
37749         use "lfd" instruction to perform atomic 64 bit read;
37750         use "stfd" to store value to temporary variable on stack;
37751         load u64 value from temporary variable;
37752         restore saved MSR;
37753         return u64 value;
37755     The benefit-cost ratio of such an implementation was considered too
37756     bad to actually attempt this, especially as we can expect that such
37757     an implementation would not only have a bigger memory footprint but
37758     also cause a performance degradation.
37760     Signed-off-by: Wolfgang Denk <wd@denx.de>
37761     Signed-off-by: Stefan Roese <sr@denx.de>
37763 commit cdd4fe63b094d4b767f12ff241d72566b461ee61
37764 Author: Stefan Roese <sr@denx.de>
37765 Date:   Fri Oct 31 10:48:08 2008 +0100
37767     ppc4xx: Fix spelling error in MAINTAINERS file
37769     Signed-off-by: Stefan Roese <sr@denx.de>
37771 commit be270798900b75ad9c47c7b79c72f70441196c56
37772 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37773 Date:   Tue Oct 28 13:37:00 2008 +0100
37775     ppc4xx: Update PMC440 board support
37777     This patch brings PMC440 board support up to date:
37779     - fix GPIO configuration
37780     - add misc_init_f()
37781     - use better values for usbact variable
37782     - fix USB 2.0 phy reset sequence
37783     - shrink BAR2 to save PCI address space
37784     - add FDT support
37786     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37787     Signed-off-by: Stefan Roese <sr@denx.de>
37789 commit 75183b1a7fc04206d9779d13f16e03853d7e965d
37790 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37791 Date:   Tue Oct 28 13:36:59 2008 +0100
37793     ppc4xx: Fix PMC440 BSP commands
37795     This patch fixes the PMC440 BSP commands painit and selfreset
37797     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37798     Signed-off-by: Stefan Roese <sr@denx.de>
37800 commit 76b565b69f886d5ae748db65e44f464b0e70d41a
37801 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37802 Date:   Tue Oct 28 13:36:58 2008 +0100
37804     ppc4xx: Update PMC440 board configuration
37806     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37807     Signed-off-by: Stefan Roese <sr@denx.de>
37809 commit ca0c2d42b93116a8e1b8ef8ad4493c7dc9b5f2e4
37810 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37811 Date:   Tue Oct 28 13:36:57 2008 +0100
37813     ppc4xx: Fix esd loadpci command
37815     This patch fixes esd's loadpci command when not all
37816     memory on adapter boards is accessable via PCI.
37818     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37819     Signed-off-by: Stefan Roese <sr@denx.de>
37821 commit 492aa9ea13791ca4591b5bde895a425e27ae2d10
37822 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37823 Date:   Tue Oct 28 13:36:56 2008 +0100
37825     ppc4xx: Clean up PMC440 header
37827     -Codingstyle cleanup
37828     -Remove unused GPIO define
37830     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37831     Signed-off-by: Stefan Roese <sr@denx.de>
37833 commit 295133258a44f97a57fb2ec339aecfda11f4db95
37834 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37835 Date:   Tue Oct 28 13:36:55 2008 +0100
37837     ppc4xx: Handle other board variant in PMC440 FPGA code
37839     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37840     Signed-off-by: Stefan Roese <sr@denx.de>
37842 commit cc2dc9b08cf7c09f9f237f8cb9303f11603d4fb0
37843 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
37844 Date:   Mon Oct 27 12:35:59 2008 +0100
37846     ppc4xx: Merge xilinx-ppc440 and xilinx-ppc405 cfg
37848     Xilinx ppc440 and ppc405 have many similarities. This patch merge the
37849     config files of both infrastuctures
37851     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
37852     Signed-off-by: Stefan Roese <sr@denx.de>
37854 commit 3befd85633d33c4dcca1f359c3f4848c5ab8e4d2
37855 Author: Stefan Roese <sr@denx.de>
37856 Date:   Sat Oct 25 06:45:31 2008 +0200
37858     ppc4xx: Correctly configure the GPIO pin muxing on Arches
37860     Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO
37861     pin multiplexing correctly
37863     Signed-off-by: Stefan Roese <sr@denx.de>
37865 commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c
37866 Author: Bartlomiej Sieka <tur@semihalf.com>
37867 Date:   Thu Oct 30 23:22:04 2008 +0100
37869     Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX)
37871     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
37873 commit 4bc7deee9095f21e243b724ca3d634251c1d5432
37874 Author: David Gibson <david@gibson.dropbear.id.au>
37875 Date:   Wed Oct 29 23:27:45 2008 -0500
37877     libfdt: Fix bug in fdt_subnode_offset_namelen()
37879     There's currently an off-by-one bug in fdt_subnode_offset_namelen()
37880     which causes it to keep searching after it's finished the subnodes of
37881     the given parent, and into the subnodes of siblings of the original
37882     node which come after it in the tree.
37884     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
37885     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37887 commit f242a08871839eac081ba5b599af979f3a148a0d
37888 Author: Peter Korsgaard <jacmet@sunsite.dk>
37889 Date:   Tue Oct 28 08:26:52 2008 +0100
37891     fdt_resize(): ensure minimum padding
37893     fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry
37894     (16 bytes), so make sure that fdt_resize at least adds that much
37895     padding, no matter what the location or size of the fdt is.
37897     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
37898     Acked-by: Andy Fleming <afleming@freescale.com>
37900 commit d685b74c64a38849f1a129b3ab846fbf67dd937e
37901 Author: Dave Liu <daveliu@freescale.com>
37902 Date:   Thu Oct 23 21:59:35 2008 +0800
37904     74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
37906     The patch is following the commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
37908     mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
37910     This is needed in unlock_ram_in_cache() because it is called from C and
37911     will corrupt the small data area anchor that is kept in R2.
37913     lock_ram_in_cache() is modified similarly as good coding practice, but
37914     is not called from C.
37916     Signed-off-by: Nick Spence <nick.spence@freescale.com>
37918     also, the r2 is used as global data pointer.
37920     Signed-off-by: Dave Liu <daveliu@freescale.com>
37922 commit e053ab1903ccae6048ef759025b9f675bba91450
37923 Author: Scott Wood <scottwood@freescale.com>
37924 Date:   Tue Oct 28 11:45:04 2008 -0500
37926     mpc83xx pci: Round up memory size in inbound window.
37928     The current calculation will fail to cover all memory if
37929     its size is not a power of two.
37931     Signed-off-by: Scott Wood <scottwood@freescale.com>
37932     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37934 commit 1c671977dc81359628be27ac99c174e76e8069ba
37935 Author: Dave Liu <daveliu@freescale.com>
37936 Date:   Thu Oct 23 21:19:13 2008 +0800
37938     86xx: remove the unused definition
37940     Signed-off-by: Dave Liu <daveliu@freescale.com>
37942 commit eaa44c5dc83756c3067b9e6c9db626facd0b0660
37943 Author: Dave Liu <daveliu@freescale.com>
37944 Date:   Tue Oct 28 17:47:49 2008 +0800
37946     86xx: remove the redundant r2 global data pointer save
37948     The commit 67256678f00c09b0a7f19e862e5c1847553d31bc add
37949     the another global data pointer save, but in fact the
37950     global data pointer will be initialized in the board_init_r,
37951     so remove it such as the 85xx/83xx family.
37953     Signed-off-by: Dave Liu <daveliu@freescale.com>
37954     Acked-by: Kumar Gala <kumar.gala@freescale.com>
37956 commit bd888e9544419665334a6f47f81f34011cea38f3
37957 Author: Dave Liu <daveliu@freescale.com>
37958 Date:   Tue Oct 28 17:47:41 2008 +0800
37960     86xx: remove the unused code for 86xx family
37962     I believe these code was copied from 74xx family, but for
37963     86xx, it is unused.
37965     Signed-off-by: Dave Liu <daveliu@freescale.com>
37966     Acked-by: Kumar Gala <kumar.gala@freescale.com>
37968 commit 5ba1ef507402bc5e344dc374203792a40f222e8a
37969 Author: Dave Liu <daveliu@freescale.com>
37970 Date:   Tue Oct 28 17:46:35 2008 +0800
37972     86xx: remove the second DDR LAW setting for mpc8641hpcn
37974     The DDR1 LAW will precedence the DDR2 LAW, so remove
37975     the second DDR LAW.
37977     Signed-off-by: Dave Liu <daveliu@freescale.com>
37978     Acked-by: Becky Bruce <becky.bruce@freescale.com>
37980 commit 137a2dfd11ac51ae3154f13f323609b33a4a072e
37981 Author: Dave Liu <daveliu@freescale.com>
37982 Date:   Tue Oct 28 17:46:23 2008 +0800
37984     86xx: remove the unused ddr_enable_ecc in the board file
37986     The DDR controller of 86xx processors have the ECC data init
37987     feature, and the new DDR code is using the feature, we don't
37988     need the way with DMA to init memory again.
37990     Signed-off-by: Dave Liu <daveliu@freescale.com>
37991     Acked-by: Kumar Gala <kumar.gala@freescale.com>
37993 commit dc2adad85bf580d65916c940683f6e9671e8a5dd
37994 Author: Dave Liu <daveliu@freescale.com>
37995 Date:   Tue Oct 28 17:46:12 2008 +0800
37997     86xx: Move the clear_tlbs before MMU turn on
37999     We must invalidate TLBs before MMU turn on, but
38000     currently the code is not, if there are some stale
38001     TLB entry valid in the TLBs, it will cause strange
38002     issue.
38004     Signed-off-by: Dave Liu <daveliu@freescale.com>
38005     Acked-by: Becky Bruce <becky.bruce@freescale.com>
38007 commit 5cdade07b118d07154cb882650f9778cecc8a87c
38008 Author: Scott Wood <scottwood@freescale.com>
38009 Date:   Mon Oct 27 15:57:08 2008 -0500
38011     mpc8313erdb: Document NAND boot.
38013     Previously, the documentation claimed that NAND boot is not supported.
38014     This is no longer true.
38016     Signed-off-by: Scott Wood <scottwood@freescale.com>
38018 commit bd78bc6b2aebf5566aac464f936b88dfd97ab0bd
38019 Author: Scott Wood <scottwood@freescale.com>
38020 Date:   Wed Oct 29 14:20:26 2008 -0500
38022     NAND: Properly create JFFS2 cleanmarkers.
38024     As reported by Ilko Iliev <iliev@ronetix.at>, the "nand erase clean"
38025     command is currently broken, and among other things causes all blocks
38026     to be marked bad.
38028     This implements it properly using MTD_OOB_AUTO, along with some
38029     indentation fixes.
38031     Signed-off-by: Scott Wood <scottwood@freescale.com>
38033 commit f7fe57c09866b44692d18c8cf22828bd137ec58d
38034 Author: Scott Wood <scottwood@freescale.com>
38035 Date:   Wed Oct 29 13:42:41 2008 -0500
38037     NAND fsl elbc: Set FMR[ECCM] based on page size.
38039     Hardware expects ECCM 0 for small page and ECCM 1 for large page
38040     when booting from NAND, so use those defaults.
38042     Signed-off-by: Scott Wood <scottwood@freescale.com>
38044 commit c013b74975dab0805ef6d369b013230c4e8a660d
38045 Author: Haiying Wang <Haiying.Wang@freescale.com>
38046 Date:   Wed Oct 29 13:32:59 2008 -0400
38048     NAND: Add support for MPC8572DS board
38050     This patch defines 1M TLB&LAW size for NAND on MPC8572DS, assigns
38051     0xffa00000 for CONFIG_SYS_NAND_BASE and adds other NAND supports in
38052     config file.
38054     It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image, to
38055     make room for the increased code size with NAND enabled.
38057     Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
38058     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
38059     Signed-off-by: Scott Wood <scottwood@freescale.com>
38061 commit 4e190b03aaf2309bd2e025d1187a2ca880fedc95
38062 Author: Haiying Wang <Haiying.Wang@freescale.com>
38063 Date:   Wed Oct 29 11:05:55 2008 -0400
38065     Make Freescale local bus registers available for both 83xx and 85xx.
38067     - Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it
38068       can be shared by both 83xx and 85xx
38069     - Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards
38070       files which use lbus83xx_t.
38071     - Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that
38072       85xx can share them.
38074     Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
38075     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
38076     Signed-off-by: Scott Wood <scottwood@freescale.com>
38078 commit 695c130e4bf75b444720ddfd83aca88f41c046cf
38079 Author: Scott Wood <scottwood@freescale.com>
38080 Date:   Mon Oct 27 15:38:30 2008 -0500
38082     NAND: Align right column of the shorthelp with other commands.
38084     I accidentally broke this in when making consistent the partial
38085     alignment of the longhelp.
38087     Signed-off-by: Scott Wood <scottwood@freescale.com>
38089 commit 33efde5ecac91ab118ff00b95a181fd6d75f8645
38090 Author: Karl Beldan <karl.beldan@gmail.com>
38091 Date:   Mon Sep 15 16:08:03 2008 +0200
38093     NAND: Reset chip on power-up
38095     Some chips require a RESET after power-up (e.g. Micron MT29FxGxxxxx).
38096     The first command sent is NAND_CMD_READID.
38097     Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id.
38098     Tested with an MT29F4G08AAC.
38100     Signed-off-by: Karl Beldan <karl.beldan@gmail.com>
38101     Signed-off-by: Scott Wood <scottwood@freescale.com>
38103 commit c45912d8abc52de796b9059a58faf7c4166eab58
38104 Author: Scott Wood <scottwood@freescale.com>
38105 Date:   Fri Oct 24 16:20:43 2008 -0500
38107     NAND: sync with 2.6.27
38109     This brings the core NAND code up to date with the Linux kernel.
38111     Since there were several drivers in Linux as of the last update that are
38112     not in u-boot, I'm not bringing over new drivers that have been added
38113     since in the absence of an interested party.
38115     I did not update OneNAND since it was recently synced by Kyungmin Park,
38116     and I'm not sure exactly what the common ancestor is.
38118     Signed-off-by: Scott Wood <scottwood@freescale.com>
38120 commit b1d0db1805c3395149777e507b6da53410abac4e
38121 Author: Kumar Gala <galak@kernel.crashing.org>
38122 Date:   Tue Oct 21 17:25:47 2008 -0500
38124     bootm: Added CONFIG_BOOTM_{LINUX, NETBSD, RTEMS}
38126     Added the ability to config out bootm support for Linux, NetBSD, RTEMS
38128     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38130 commit 5a98127d81a6eefc5a78a704df619bfe362eeb87
38131 Author: Kumar Gala <galak@kernel.crashing.org>
38132 Date:   Tue Oct 21 17:25:46 2008 -0500
38134     bootm: support subcommands in linux ppc bootm
38136     Add support for 'bdt', 'cmdline', 'prep' to the linux PPC bootm.
38138     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38140 commit 49c3a861d11735838f1f1b11999ce433006dc919
38141 Author: Kumar Gala <galak@kernel.crashing.org>
38142 Date:   Tue Oct 21 17:25:45 2008 -0500
38144     bootm: Add subcommands
38146     Add the ability to break the steps of the bootm command into several
38147     subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
38149     This allows us to do things like manipulate device trees before
38150     they are passed to a booting kernel or setup memory for a secondary
38151     core in multicore situations.
38153     Not all OS types support all subcommands (currently only start, loados,
38154     ramdisk, fdt, and go are supported).
38156     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38158 commit be08315933537f061bc1ce61f33a29c56458bbad
38159 Author: Kumar Gala <galak@kernel.crashing.org>
38160 Date:   Tue Oct 21 17:25:44 2008 -0500
38162     bootm: Move to using a function pointer table for the boot os function
38164     This removes a bit of code and makes it easier for the upcoming sub bootm
38165     command support to call into the proper OS specific handler.
38167     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38168     Signed-off-by: Wolfgang Denk <wd@denx.de>
38170 commit a369f4a492fa2805d87775d27380f0eeaca35aa6
38171 Author: Graeme Russ <graeme.russ@gmail.com>
38172 Date:   Mon Sep 29 23:03:14 2008 +1000
38174     i386: Renamed show_boot_progress in assembler code
38176     Renamed show_boot_progress in assembler init phase to
38177     show_boot_progress_asm to avoid link conflicts with C version
38179     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
38181 commit 4442f45b0e1cbad35aa22d4cad22b90a57e3f32d
38182 Author: Peter Tyser <ptyser@xes-inc.com>
38183 Date:   Mon Oct 27 16:42:00 2008 -0500
38185     85xx: Update MPC85xx_PORDEVSR_IO_SEL mask
38187     The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx
38188     processors have a 3-bit wide IO_SEL field but have the most
38189     significant bit is wired to 0 so this change should not affect
38190     them.
38192     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
38194 commit cd4251624205cb97104f6e32679dc7754934f711
38195 Author: Becky Bruce <becky.bruce@freescale.com>
38196 Date:   Mon Oct 27 16:09:42 2008 -0500
38198     powerpc: fix pci window initialization to work with > 4GB DRAM
38200     The existing code has a few errors that need to be fixed in
38201     order to support large RAM sizes.  Fix those, and add a
38202     comment to make it clearer.
38204     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
38205     Acked-by: Kumar Gala <galak@kernel.crashing.org>
38207 commit 219542a1a66ca017b12860920714a9859b18a5d7
38208 Author: Kumar Gala <galak@kernel.crashing.org>
38209 Date:   Mon Oct 27 13:16:20 2008 -0500
38211     pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.
38213     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38215 commit 6b59e03e0237a40a2305ea385defdfd92000978b
38216 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38217 Date:   Mon Sep 1 16:21:22 2008 +0200
38219     lcd: Let the board code show board-specific info
38221     The information displayed when CONFIG_LCD_INFO is set is inherently
38222     board-specific, so it should be done by the board code. The current code
38223     dealing with this only handles two cases, and is already a horrible mess
38224     of #ifdeffery.
38226     Yes, this duplicates some code, but it also allows boards to print more
38227     board-specific information; this used to be very difficult.
38229     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38230     Signed-off-by: Anatolij Gustschin <agust@denx.de>
38232 commit 6f93d2b8fca504200a5758f7c6dd2d6852900765
38233 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38234 Date:   Mon Sep 1 16:21:21 2008 +0200
38236     lcd: Set lcd_is_enabled before clearing the screen
38238     This allows the logo/info rendering routines to use the regular
38239     lcd_putc/lcd_puts/lcd_printf calls.
38241     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38242     Signed-off-by: Anatolij Gustschin <agust@denx.de>
38244 commit 15b17ab52b7c15d46d9fc631cc06092e1e764de2
38245 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38246 Date:   Mon Sep 1 16:21:20 2008 +0200
38248     lcd: Implement lcd_printf()
38250     lcd_printf() has a prototype in include/lcd.h but no implementation. Fix
38251     this by borrowing the lcd_printf() implementation from the cogent board
38252     code (which appears to use its own LCD framework.)
38254     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38255     Signed-off-by: Anatolij Gustschin <agust@denx.de>
38257 commit 70dbc54c0a5c798bcf82ae2a1e227404f412e892
38258 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38259 Date:   Mon Sep 1 16:21:19 2008 +0200
38261     atmel_lcdfb: Straighten out funky vl_sync logic
38263     If the board _didn't_ request INVLINE_INVERTED, we set INVLINE_INVERTED,
38264     otherwise we don't. WTF?
38266     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38267     Signed-off-by: Anatolij Gustschin <agust@denx.de>
38269 commit 23bb28f0f76b46c4b573374b0bb3b3f23d85ef55
38270 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38271 Date:   Mon Sep 1 16:21:18 2008 +0200
38273     atmel_lcdfb: Eliminate unneeded #include <asm/arch/hardware.h>
38275     atmel_lcdfb doesn't actually need anything from asm/arch/hardware.h. It
38276     includes a file that does, asm/arch/gpio.h, but this file doesn't
38277     include <asm/arch/hardware.h> like it's supposed to.
38279     Add the missing include to asm/arch/gpio.h and remove the workaround
38280     from the atmel_lcdfb driver. This makes the driver compile on avr32.
38282     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38283     Signed-off-by: Anatolij Gustschin <agust@denx.de>
38285 commit c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e
38286 Author: Kumar Gala <galak@kernel.crashing.org>
38287 Date:   Wed Oct 22 14:38:55 2008 -0500
38289     86xx: Convert all fsl_pci_init users to new APIs
38291     Converted MPC8610HCPD, MPC8641HPCN, and SBC8641D to use
38292     fsl_pci_setup_inbound_windows() and ft_fsl_pci_setup().
38294     With these changes the board code is a bit smaller and we get dma-ranges
38295     set in the device tree for these boards.
38297     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38298     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38299     Acked-by: Jon Loeliger <jdl@freescale.com>
38301 commit 2dba0dea98c0dee1799ffd6fd6eb541645dbbd98
38302 Author: Kumar Gala <galak@kernel.crashing.org>
38303 Date:   Tue Oct 21 08:28:33 2008 -0500
38305     85xx: Convert all fsl_pci_init users to new APIs
38307     Converted ATUM8548, MPC8536DS, MPC8544DS, MPC8548CDS, MPC8568MDS,
38308     MPC8572DS, TQM85xx, and SBC8548 to use fsl_pci_setup_inbound_windows()
38309     and ft_fsl_pci_setup().
38311     With these changes the board code is a bit smaller and we get dma-ranges
38312     set in the device tree for these boards.
38314     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38315     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38317 commit a2aab460727e5f674353a83a81000ef794bffcae
38318 Author: Kumar Gala <galak@kernel.crashing.org>
38319 Date:   Thu Oct 23 00:01:06 2008 -0500
38321     pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
38323     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38324     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38326 commit b9a1fa9787a3a79573f5f932a4f8aa216bcb1785
38327 Author: Kumar Gala <galak@kernel.crashing.org>
38328 Date:   Wed Oct 22 14:06:24 2008 -0500
38330     pci/fsl_pci_init: Add a common PCI inbound setup function
38332     Add a common setup function that determines the pci_region(s) based
38333     on how much memory we have in the system.
38335     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38336     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38338 commit 612ea01018a459234d54ed57ec6a5a244ce75678
38339 Author: Kumar Gala <galak@kernel.crashing.org>
38340 Date:   Tue Oct 21 10:13:14 2008 -0500
38342     pci/fsl_pci_init: Enable larger address and setting inbound windows properly
38344     * PCI Inbound window was setup incorrectly.  The PCI address and system
38345       address were swapped.  The PCI address should be setting piwar/piwbear
38346       and the system address should be setting pitar.
38348     * Removed masking of addresses to allow for system address to support
38349       system address & PCI address >32-bits
38351     * Set PIWBEAR & POTEAR to allow for full 64-bit PCI addresses
38353     * Respect the PCI_REGION_PREFETCH for inbound windows
38355     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38356     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38358 commit 8ab451c46b846f2bbd7122b29ffdd9a4a04da228
38359 Author: Kumar Gala <galak@kernel.crashing.org>
38360 Date:   Wed Oct 22 23:33:56 2008 -0500
38362     fdt: Added helper to set PCI dma-ranges property
38364     Added fdt_pci_dma_ranges() that parses the pci_region info from the
38365     struct pci_controller and populates the dma-ranges based on it.
38367     The max # of windws/dma-ranges we support is 3 since on embedded
38368     PowerPC based systems this is the max number of windows.
38370     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38371     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38373 commit 3bed2aaf2d50fd13273c14d17d4fd40ef42e0d0f
38374 Author: Kumar Gala <galak@kernel.crashing.org>
38375 Date:   Thu Oct 23 00:05:47 2008 -0500
38377     fdt: Add fdt_getprop_u32_default helpers
38379     Add helper functions to return find a node and return it's property
38380     or a default value.
38382     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38383     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38384     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
38386 commit 8ba93f68a1bae89e033527ce67b41b4a87aa5b7f
38387 Author: Kumar Gala <galak@kernel.crashing.org>
38388 Date:   Tue Oct 21 18:06:15 2008 -0500
38390     86xx: Enable 64-bit PCI resources on all Freescale boards
38392     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38393     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38395 commit 0151cbaccf4504821ecfde0217299bd740086bb6
38396 Author: Kumar Gala <galak@kernel.crashing.org>
38397 Date:   Tue Oct 21 11:33:58 2008 -0500
38399     85xx: Enable 64-bit PCI resources on all Freescale boards
38401     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38402     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38404 commit 30e76d5e3bc4c5208ee63585fe12b409d9308cd8
38405 Author: Kumar Gala <galak@kernel.crashing.org>
38406 Date:   Tue Oct 21 08:36:08 2008 -0500
38408     pci: Allow for PCI addresses to be 64-bit
38410     PCI bus is inherently 64-bit.  While not all system require access to
38411     the full 64-bit PCI address range some do.  This allows those systems
38412     to enable the full PCI address width via CONFIG_SYS_PCI_64BIT.
38414     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38415     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
38416     Acked-by: Wolfgang Denk <wd@denx.de>
38418 commit ae5f943ba8ede448a4b1a145fd8911856701ecc5
38419 Author: Dave Liu <daveliu@freescale.com>
38420 Date:   Thu Oct 23 21:18:53 2008 +0800
38422     85xx: Fix the incorrect register used for DDR erratum1
38424     The 8572 DDR erratum1:
38425     DDR controller may enter an illegal state when operating
38426     in 32-bit bus mode with 4-beat bursts.
38428     Description:
38429     When operating with a 32-bit bus, it is recommended that
38430     DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories are used.
38431     This forces the DDR controller to use 4-beat bursts when
38432     communicating to the DRAMs. However, an issue exists that
38433     could lead to data corruption when the DDR controller is
38434     in 32-bit bus mode while using 4-beat bursts.
38436     Projected Impact:
38437     If the DDR controller is operating in 32-bit bus mode with
38438     4-beat bursts, then the controller may enter into a bad state.
38439     All subsequent reads from memory is corrupted.
38440     Four-beat bursts with a 32-bit bus only is used with DDR2 memories.
38441     Therefore, this erratum does not affect DDR3 mode.
38443     Work Arounds:
38444     To work around this issue, software must set DEBUG_1[31] in
38445     DDR memory mapped space (CCSRBAR offset + 0x2f00 for DDR_1
38446     and CCSRBAR offset + 0x6f00 for DDR_2).
38448     Currenlty, the code is using incorrect register DDR_SDRAM_CFG_2
38449     as condition, but it should be DDR_SDRAM_CFG register.
38451     Signed-off-by: Dave Liu <daveliu@freescale.com>
38453 commit d5b693090ed08d24c18491df9d8fc7387b2906f3
38454 Author: Dave Liu <daveliu@freescale.com>
38455 Date:   Thu Oct 23 21:17:19 2008 +0800
38457     85xx: remove unused config definition
38459     Signed-off-by: Dave Liu <daveliu@freescale.com>
38461 commit 0f060c3bf82832331a509f2e5d2442539e7aad09
38462 Author: Kumar Gala <galak@kernel.crashing.org>
38463 Date:   Thu Oct 23 01:47:38 2008 -0500
38465     85xx: Add basic e500mc core support
38467     Introduce CONFIG_E500MC to deal with the minor differences between
38468     e500v2 and e500mc.
38470     * Certain fields of HID0/1 don't exist anymore on e500mc
38471     * Cache line size is 64-bytes on e500mc
38472     * reset value of PIR is different
38474     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38476 commit a38a5b6edd30f29fd5fdb1d7f674521906c0e677
38477 Author: Kumar Gala <galak@kernel.crashing.org>
38478 Date:   Thu Oct 23 01:47:37 2008 -0500
38480     85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
38482     Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle
38483     e500mc's 64-byte cacheline properly when it gets added.
38485     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38487 commit 5deb8022c3749faac30e9ad9694691e2442b5c93
38488 Author: Georg Schardt <schardt@team-ctech.de>
38489 Date:   Fri Oct 24 13:51:52 2008 +0200
38491     ppc4xx: New board avnet fx12 minimodul
38493     This patch adds support for the avnet fx12 minimodul.
38494     It needs the "ppc4xx: Generic architecture for xilinx ppc405"
38495     patch from Ricardo.
38497     Signed-off-by: Georg Schardt <schardt@team-ctech.de>
38498     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
38499     Signed-off-by: Stefan Roese <sr@denx.de>
38501 commit 1f4d53260ec6f8f122aed75cce7c757d97a551e0
38502 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
38503 Date:   Tue Oct 21 18:29:46 2008 +0200
38505     ppc4xx: Generic architecture for xilinx ppc405(v3)
38507     As "ppc44x: Unification of virtex5 pp440 boards" did for the xilinx
38508     ppc440 boards, this patch presents a common architecture for all the
38509     xilinx ppc405 boards.
38511     Any custom xilinx ppc405 board can be added very easily with no code
38512     duplicity.
38514     This patch also adds a simple generic board, that can be used on almost
38515     any design with xilinx ppc405 replacing the file ppc405-generic/xparameters.h
38517     This patch is prepared to work with the latest version of EDK (10.1)
38519     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
38520     Signed-off-by: Stefan Roese <sr@denx.de>
38522 commit 485c00a57fab86f72a3769480c66bf1ca22e1459
38523 Author: Stefan Roese <sr@denx.de>
38524 Date:   Fri Oct 24 08:56:09 2008 +0200
38526     ppc4xx: Disable DDR2 autocalibration on Kilauea for now
38528     Since the new autocalibration still has some problems on some Kilauea
38529     boards with 200MHz DDR2 frequency we disable the autocalibration and
38530     use the hardcoded values as done before. This seems to work reliably
38531     on all known DDR2 frequencies.
38533     After the autocalibration issue is fixed we will enable it again.
38535     Signed-off-by: Stefan Roese <sr@denx.de>
38537 commit f177f4250c729727b1629fa8d8d6556c999e9b8c
38538 Author: Mike Frysinger <vapier@gentoo.org>
38539 Date:   Wed Apr 9 02:02:07 2008 -0400
38541     Blackfin: fix up UART status bit handling
38543     Some Blackfin UARTs are read-to-clear while others are write-to-clear.
38544     This can cause problems when we poll the LSR and then later try and handle
38545     any errors detected.
38547     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38549 commit ae0910298f31f5bb3d33a64b8467c60ea3c5d6d0
38550 Author: Mike Frysinger <vapier@gentoo.org>
38551 Date:   Sat Oct 11 20:42:17 2008 -0400
38553     Blackfin: bf561-ezkit: drop redundant code
38555     Common Blackfin code already announces CPU information.
38557     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38559 commit e2eea98bff1369f77a9f59a5fd0bd4928bc3332e
38560 Author: Mike Frysinger <vapier@gentoo.org>
38561 Date:   Sat Oct 11 20:43:10 2008 -0400
38563     Blackfin: bf561-ezkit: drop pointless USB code
38565     The USB/LAN register settings are not actually used/needed in order to
38566     drive things from U-Boot, so drop the code.
38568     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38570 commit c23bff63fb03cb9dbcd26522841e53f9b34fa1ab
38571 Author: Mike Frysinger <vapier@gentoo.org>
38572 Date:   Sat Oct 11 20:47:58 2008 -0400
38574     Blackfin: linker scripts: force start.o and set initcode boundaries
38576     Make sure that the start.o object is always the first object in our linker
38577     script regardless of configuration settings, and add some linker symbols
38578     so the ldr utility can properly locate the initcode when generating a LDR.
38580     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38582 commit bd33e5c613cf70e3cb51a73fdd653fe83b942bb0
38583 Author: Mike Frysinger <vapier@gentoo.org>
38584 Date:   Sat Oct 11 21:19:39 2008 -0400
38586     Blackfin: small cpu init optimization while setting interrupt mask
38588     Use the sti instruction to set the initial interrupt mask rather than
38589     banging on the core IMASK MMR to save both space and time.
38591     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38593 commit 960922291c9594acb575cec7e47d7bed9b58182c
38594 Author: Mike Frysinger <vapier@gentoo.org>
38595 Date:   Sat Oct 11 21:18:10 2008 -0400
38597     Blackfin: set initial stack correctly according to Blackfin ABI
38599     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38601 commit 25cd33d82ea521b7bd90ca858f8919fae1e9732b
38602 Author: Mike Frysinger <vapier@gentoo.org>
38603 Date:   Sun Apr 20 03:11:53 2008 -0400
38605     Blackfin: make baud calculation more accurate
38607     We should use the algorithm in the Linux kernel so that the UART divisor
38608     calculation is more accurate.  It also fixes problems on some picky UARTs
38609     that have sampling anomalies.
38611     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38613 commit 0ba1da116e5edcb0c5ae4a7585d73f6548400a06
38614 Author: Mike Frysinger <vapier@gentoo.org>
38615 Date:   Mon Oct 6 04:21:41 2008 -0400
38617     Blackfin: decode hwerrcause/excause when crashing
38619     Having to decode hwerrcause/excause values is a pain, so automate it.
38621     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38623 commit 2de95bb20c488f20298df6881b700a5a757ee780
38624 Author: Mike Frysinger <vapier@gentoo.org>
38625 Date:   Mon Oct 6 04:20:54 2008 -0400
38627     Blackfin: fix register dump messages
38629     Make sure we report RETI/IPEND correctly.
38631     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38633 commit 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b
38634 Author: Mike Frysinger <vapier@gentoo.org>
38635 Date:   Mon Oct 6 04:19:34 2008 -0400
38637     Blackfin: don't bother displaying reboot msg when crashing
38639     The hang function already tells you to reboot, so no point in showing it
38640     twice.
38642     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38644 commit 70c4c032ea112cc42aa1ce959c33fc4825eaef95
38645 Author: Mike Frysinger <vapier@gentoo.org>
38646 Date:   Sun Jun 1 01:23:48 2008 -0400
38648     Blackfin: enable support for nested interrupts
38650     During cpu init, make sure we initialize the CEC properly so that
38651     interrupts can fire and be handled while U-Boot is running.
38653     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38655 commit 39782727e185860faa4884c2b04e84cb33d1c6cf
38656 Author: Mike Frysinger <vapier@gentoo.org>
38657 Date:   Mon Oct 6 03:55:25 2008 -0400
38659     Blackfin: init NAND before relocating env
38661     If booting out of NAND, we need to make sure we initialize it properly
38662     before attempting to relocate the environment.
38664     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38666 commit 0f9a8819416ba40a53de50af148847a0e508f84d
38667 Author: Mike Frysinger <vapier@gentoo.org>
38668 Date:   Thu Aug 7 18:40:13 2008 -0400
38670     Blackfin: check cache bits, not cplb bits
38672     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38674 commit 2c1ea9e370cb72dd6a5aa32338e87a8a1f77bd76
38675 Author: Mike Frysinger <vapier@gentoo.org>
38676 Date:   Thu Aug 7 17:52:59 2008 -0400
38678     Blackfin: drop unused cache flush code
38680     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38682 commit 50f0d211912a648e31aa9123b4665a0444bb8ca9
38683 Author: Mike Frysinger <vapier@gentoo.org>
38684 Date:   Thu Aug 7 15:21:47 2008 -0400
38686     Blackfin: unify cache handling code
38688     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38690 commit 3c8798983403cb68a827d7a0d09b1134524a1b7d
38691 Author: Mike Frysinger <vapier@gentoo.org>
38692 Date:   Mon Oct 6 03:39:07 2008 -0400
38694     Blackfin: only initialize the RTC when actually used
38696     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38698 commit 621e579b812dd1a2e6777f7cbf6e55e736505823
38699 Author: Mike Frysinger <vapier@gentoo.org>
38700 Date:   Mon Oct 6 03:44:33 2008 -0400
38702     Blackfin: fix SWRST register definition
38704     The SWRST register is a 16bit, not 32bit, register.
38706     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38708 commit 06121c4e2d183887dcd7a4ca2dcd395b213ea15b
38709 Author: Mike Frysinger <vapier@gentoo.org>
38710 Date:   Thu Aug 7 18:54:57 2008 -0400
38712     Blackfin: build with -fomit-frame-pointer
38714     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38716 commit adbfeeb7b32f737a9738daa583350d2bb9ed017a
38717 Author: Mike Frysinger <vapier@gentoo.org>
38718 Date:   Thu Aug 7 17:50:26 2008 -0400
38720     Blackfin: document some of the blackfin directories
38722     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38724 commit e4337968e43698a68ba608369f46d4a4114111ca
38725 Author: Mike Frysinger <vapier@gentoo.org>
38726 Date:   Thu Aug 7 15:16:56 2008 -0400
38728     Blackfin: only enable hardware error irq by default
38730     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38732 commit 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4
38733 Author: Mike Frysinger <vapier@gentoo.org>
38734 Date:   Thu Aug 7 13:36:43 2008 -0400
38736     Blackfin: punt old unused mem_init.h header
38738     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38740 commit bcc121a01608042066a19ab5bff5bcfb805bf406
38741 Author: Mike Frysinger <vapier@gentoo.org>
38742 Date:   Thu Aug 7 13:18:55 2008 -0400
38744     Blackfin: delete unused page_descriptor_table_size define
38746     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38748 commit 30fb9d24ae16e5b0ed39e5b7cc85981165ca98bc
38749 Author: Mike Frysinger <vapier@gentoo.org>
38750 Date:   Thu Aug 7 13:17:03 2008 -0400
38752     Blackfin: fix typo in boot mode comment and add NAND define
38754     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38756 commit 2e5cbe5461c5c4c6665e318cfe950a5a150d999c
38757 Author: Ben Maan <moo@cow>
38758 Date:   Thu Aug 7 13:14:21 2008 -0400
38760     Blackfin: fix port mux defines for BF54x
38762     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38764 commit 0656ef2ba274910d31364fe022f6c7db0051660d
38765 Author: Mike Frysinger <vapier@gentoo.org>
38766 Date:   Thu Aug 7 13:09:50 2008 -0400
38768     Blackfin: update anomaly lists
38770     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38772 commit 50ca95402876cf7bac4e2d4f7855f616a038763f
38773 Author: Mike Frysinger <vapier@gentoo.org>
38774 Date:   Thu Aug 7 13:08:54 2008 -0400
38776     Blackfin: unify DSPID/DBGSTAT MMR definitions
38778     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38780 commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e
38781 Author: Wolfgang Denk <wd@denx.de>
38782 Date:   Tue Oct 21 15:53:51 2008 +0200
38784     Fix strmhz(): avoid printing negative fractions
38786     Signed-off-by: Wolfgang Denk <wd@denx.de>
38788 commit 4a7f6b750d8de543fdf8e58acd86745010054571
38789 Author: Richard Retanubun <RichardRetanubun@ruggedcom.com>
38790 Date:   Fri Oct 17 08:55:51 2008 -0400
38792     mpc83xx: Removed #ifdef CONFIG_MPC834X dependency on upmconfig function
38794     This is done to allow other 83XX based platforms which also have UPM
38795     (e.g. 8360) to configure and use their UPM in u-boot.
38797     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
38798     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38800 commit 3bf1be3c0cfb1129b68cc1474119e5f323536488
38801 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38802 Date:   Tue Oct 14 22:58:53 2008 +0400
38804     mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS
38806     With this patch u-boot can fixup the dr_mode and phy_type properties
38807     for the Dual-Role USB controller.
38809     While at it, also remove #ifdefs around includes, they are not needed.
38811     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38812     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38814 commit b3379f3fd13969934c00097c05754e7a8990fd39
38815 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38816 Date:   Wed Oct 8 20:52:54 2008 +0400
38818     mpc83xx: add ELBC NAND support for the MPC837XEMDS boards
38820     Though NAND chip is replaceable on the MPC837XE-MDS boards, the
38821     current settings don't work with the default chip on the board.
38822     Nevertheless Freescale's U-Boot sets the option register correctly,
38823     so I just dumped the register from the working u-boot. My guess is
38824     that the old settings were applicable for some pilot boards, not
38825     found in the production.
38827     This patch also enables FSL ELBC driver so that we could access
38828     the NAND storage in the u-boot.
38830     The NAND support costs about 45KB, so the u-boot no longer fits
38831     into two 128KB NOR flash sectors, thus we also have to adjust
38832     environment location: add another 128KB to the monitor length.
38834     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38836     It is due to hardware design and logic defect, that is the
38837     I/O[0:7] of NAND chip is connected to LAD[7:0], so when
38838     the NAND chip connected to nLCS3,  you have to set up the
38839     OR3[BCTLD] = '1' for normal operation, otherwise it will have
38840     bus contention due to the pin 48/25 of U60 is enabled.
38842     Setup the OR3[BCTLD] = '1' , that meaning the LBCTL is not
38843     asserted upon access to the NAND chip, keep the default state.
38845     Acked-by: Dave Liu <daveliu@freescale.com>
38846     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38848 commit 00f7bbae92e3b13f2b37aeb1def9bb12445521b7
38849 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38850 Date:   Thu Oct 2 19:17:33 2008 +0400
38852     mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards
38854     The MPC837xE-MDS board's CPLD can auto-detect if the board is on the PIB,
38855     standalone or acting as a PCI agent. User's Guide says:
38857     - When the CPLD recognizes its location on the PIB it automatically
38858       configures RCW to the PCI Host.
38859     - If the CPLD fails to recognize its location then it is automatically
38860       configured as an Agent and the PCI is configured to an external arbiter.
38862     This sounds good. Though in the standalone setup the CPLD sets PCI_HOST
38863     flag (it's ok, we can't act as PCI agents since we receive CLKIN, not
38864     PCICLK), but the CPLD doesn't set the ARBITER_ENABLE flag, and without
38865     any arbiter bad things will happen (here the board hangs during any config
38866     space reads).
38868     In this situation we must disable the PCI. And in case of anybody really
38869     want to use an external arbiter, we provide "pci_external_aribter"
38870     environment variable.
38872     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38873     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38875 commit 1da83a63d8e1b4bddeb82581b1745a09aac3e2d3
38876 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38877 Date:   Thu Oct 2 18:32:25 2008 +0400
38879     mpc83xx: add SGMII riser module support for the MPC8378E-MDS boards
38881     This involves configuring the SerDes and fixing up the flags and
38882     PHY addresses for the TSECs.
38884     For Linux we also fix up the device tree.
38886     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38887     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38889 commit e6d9c8916de9c24f2c52d0b01cf00d2e74a04cd8
38890 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38891 Date:   Thu Oct 2 18:31:59 2008 +0400
38893     mpc83xx: add TSECs' HRCWH masks for MPC837x processors
38895     We'll use these masks to parse TSEC modes out of HRCWH.
38897     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38898     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38900 commit 6f9cc6608b4e1cefde56c0fb99ae1c95c42575ff
38901 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38902 Date:   Thu Oct 2 18:31:56 2008 +0400
38904     mpc83xx: serdes: add forgotten shifts for rfcks
38906     The rfcks should be shifted by 28 bits left. We didn't notice the bug
38907     because we were using only 100MHz clocks (for which rfcks == 0).
38909     Though, for SGMII we'll need 125MHz clocks.
38911     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38912     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38914 commit 55c531984dcf933e4cd13a187a7e08e873b7ced1
38915 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38916 Date:   Thu Oct 2 18:31:53 2008 +0400
38918     mpc83xx: fix serdes setup for the MPC8378E boards
38920     MPC837xE specs says that SerDes1 has:
38922     â€” Two lanes running x1 SGMII at 1.25 Gbps;
38923     â€” Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
38925     And for SerDes2:
38927     â€” Two lanes running x1 PCI Express at 2.5 Gbps;
38928     â€” One lane running x2 PCI Express at 2.5 Gbps;
38929     â€” Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
38931     The spec also explicitly states that PEX options are not valid for
38932     the SD1.
38934     Nevertheless MPC8378 RDB and MDS boards configure the SD1 for PEX,
38935     which is wrong to do.
38937     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38938     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38940 commit 5c2ff323a94e27e481f70c44838d43fcd844dd46
38941 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
38942 Date:   Wed Sep 10 18:12:37 2008 +0400
38944     mpc83xx: mpc8360emds: rework LBC SDRAM setup
38946     Currently 64M of LBC SDRAM are mapped at 0xF0000000 which makes
38947     it difficult to use (b/c then the memory is discontinuous and
38948     there is quite big memory hole between the DDR/SDRAM regions).
38950     This patch reworks LBC SDRAM setup so that now we dynamically
38951     place the LBC SDRAM near the DDR (or at 0x0 if there isn't any
38952     DDR memory).
38954     With this patch we're able to:
38956     - Boot without external DDR memory;
38957     - Use most "DDR + SDRAM" setups without need to support for
38958       sparse/discontinuous memory model in the software.
38960     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
38961     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38963 commit def0819e920b05b34b56d8b42e1e43d9b89a52d6
38964 Author: Wolfgang Denk <wd@xpert.denx.de>
38965 Date:   Tue Oct 21 11:23:56 2008 +0200
38967     FDT: don't use private kernel header files
38969     On some systems (for example Fedora Core 4) U-Boot builds with the
38970     following wanrings only:
38972     ...
38973     In file included from /home/wd/git/u-boot/include/libfdt_env.h:33,
38974                      from fdt.c:51:
38975                  /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!
38977     This patch fixes this problem.
38979     Signed-off-by: Wolfgang Denk <wd@denx.de>
38981 commit f4d14c55504ce40287321bd63ee269e3233ee4ae
38982 Author: Stefan Roese <sr@denx.de>
38983 Date:   Mon Oct 13 15:15:31 2008 +0200
38985     ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup
38987     Signed-off-by: Stefan Roese <sr@denx.de>
38989 commit 43cbce69d48d052574d71f50724be546d90a46a4
38990 Author: Stefan Roese <sr@denx.de>
38991 Date:   Mon Oct 13 10:45:14 2008 +0200
38993     ppc4xx: Correctly setup ranges property in ebc node
38995     Previously only the NOR flash mapping was written into the ranges
38996     property of the ebc node. This patch now writes all enabled chip
38997     select areas into the ranges property.
38999     Signed-off-by: Stefan Roese <sr@denx.de>
39001 commit d7b26d58328f137471ea97de382bfa63f7239931
39002 Author: Dirk Eibach <eibach@gdsys.de>
39003 Date:   Wed Oct 8 15:37:50 2008 +0200
39005     ppc4xx: Add GDSys neo 405EP board support
39007     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
39008     Signed-off-by: Stefan Roese <sr@denx.de>
39010 commit c11da194545d2f4bbb54be1bb5e504e20ce8c16c
39011 Author: Niklaus Giger <niklaus.giger@netstal.com>
39012 Date:   Wed Oct 1 14:46:13 2008 +0200
39014     ppc4xx: Update configs for Netstal boards
39016     I reorganized my config files, putting the common stuff into netstal-common.h
39017     (got the idea by looking a amcc-common.h from Stefan).
39019     Added stuff to boot the new powerpc linux via NFS (only tested with HCU4).
39021     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
39022     Signed-off-by: Stefan Roese <sr@denx.de>
39024 commit c9c11d751e4242cf29c3c3c290d971f6d0cb1d15
39025 Author: Adam Graham <agraham@amcc.com>
39026 Date:   Wed Oct 8 10:13:19 2008 -0700
39028     ppc4xx: Add routine to retrieve CPU number
39030     Provide a weak defined routine to retrieve the CPU number for
39031     reference boards that have multiple CPU's.  Default behavior
39032     is the existing single CPU print output.  Reference boards with
39033     multiple CPU's need to provide a board specific routine.
39034     See board/amcc/arches/arches.c for an example.
39036     Signed-off-by: Adam Graham <agraham@amcc.com>
39037     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
39038     Signed-off-by: Stefan Roese <sr@denx.de>
39040 commit 59217bae40e90982ab5400d849c08af683ace036
39041 Author: Adam Graham <agraham@amcc.com>
39042 Date:   Wed Oct 8 10:13:14 2008 -0700
39044     ppc4xx: Add static support for 44x IBM SDRAM Controller
39046     This patch add the capability to configure a PPC440 based IBM SDRAM
39047     Controller with static, compiled-in, values. PPC440 memory subsystem
39048     includes a Memory Queue core.
39050     Signed-off-by: Adam Graham <agraham@amcc.com>
39051     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
39052     Signed-off-by: Stefan Roese <sr@denx.de>
39054 commit f09f09d3899017aaaa2b031bba63c271e9c48e4d
39055 Author: Adam Graham <agraham@amcc.com>
39056 Date:   Wed Oct 8 10:12:53 2008 -0700
39058     ppc4xx: Add AMCC Arches board support (dual 460GT)
39060     The Arches Evaluation board is based on the AMCC 460GT SoC chip.
39061     This board is a dual processor board with each processor providing
39062     independent resources for Rapid IO, Gigabit Ethernet, and serial
39063     communications. Each 460GT has it's own 512MB DDR2 memory, 32MB NOR
39064     FLASH, UART, EEPROM and temperature sensor, along with a shared debug
39065     port. The two 460GT's will communicate with each other via shared
39066     memory, Gigabit Ethernet and x1 PCI-Express.
39068     Signed-off-by: Adam Graham <agraham@amcc.com>
39069     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
39070     Signed-off-by: Stefan Roese <sr@denx.de>
39072 commit 055b12f2ffd7c34eea7e983a0588b24f2e69e0e3
39073 Author: Wolfgang Denk <wd@xpert.denx.de>
39074 Date:   Sun Oct 19 21:54:30 2008 +0200
39076     TQM8260: environment in flash instead EEPROM, baudrate 115k
39078     Several customers have reported problems with the environment in
39079     EEPROM, including corrupted content after board reset. Probably the
39080     code to prevent I2C Enge Conditions is not working sufficiently.
39082     We move the environment to flash now, which allows to have a backup
39083     copy plus gives much faster boot times.
39085     Also, change the default console initialization to 115200 bps as used
39086     on most other boards.
39088     Signed-off-by: Wolfgang Denk <wd@denx.de>
39090 commit 1836881190b3d8a6918b0d64b39fe32bbbdf85d8
39091 Author: Kumar Gala <galak@kernel.crashing.org>
39092 Date:   Sun Oct 19 12:49:19 2008 -0500
39094     85xx: Fix compile warning in mpc8536ds.c
39096     mpc8536ds.c: In function 'is_sata_supported':
39097     mpc8536ds.c:615: warning: unused variable 'devdisr'
39099     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39101 commit 8ed44d91c8122d00368523b0b746691c895d3b3c
39102 Author: Wolfgang Denk <wd@denx.de>
39103 Date:   Sun Oct 19 02:35:50 2008 +0200
39105     Cleanup: fix "MHz" spelling
39107     Signed-off-by: Wolfgang Denk <wd@denx.de>
39109 commit 08ef89ecd174969b3544f3f0c7cd1de3c57f737b
39110 Author: Wolfgang Denk <wd@denx.de>
39111 Date:   Sun Oct 19 02:35:49 2008 +0200
39113     Use strmhz() to format clock frequencies
39115     Signed-off-by: Wolfgang Denk <wd@denx.de>
39117 commit d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9
39118 Author: Wolfgang Denk <wd@denx.de>
39119 Date:   Sun Oct 19 02:35:48 2008 +0200
39121     strmhz(): Round numbers when printing clock frequencies
39123     Round clock frequencies for printing.
39125     Many boards printed off clock frequencies like 399 MHz instead of the
39126     exact 400 MHz because numberes were not rounded. This is fixed now.
39128     Signed-off-by: Wolfgang Denk <wd@denx.de>
39130 commit 681c02d05b29c6d46093525052c74b9c4ddc8b08
39131 Author: Timur Tabi <timur@freescale.com>
39132 Date:   Mon Oct 20 15:16:47 2008 -0500
39134     85xx: properly document MPC85xx_PORDEVSR2_SEC_CFG
39136     Commit f7d190b1 corrected the value of MPC85xx_PORDEVSR2_SEC_CFG, but forgot
39137     to add a comment that the correct value disagrees with the 8544 reference
39138     manual.  The changelog for that commit is also wrong, as it says "bit 28"
39139     when it should be "bit 24".
39141     Signed-off-by: Timur Tabi <timur@freescale.com>
39143 commit 360fe71e82b83e264c964c9447c537e9a1f643c8
39144 Author: Heiko Schocher <hs@denx.de>
39145 Date:   Fri Oct 17 18:24:06 2008 +0200
39147     mgcoge: add redundant environment sector
39149     Signed-off-by: Heiko Schocher <hs@denx.de>
39151 commit 53ebf0c470c87d5f9fa76462e5f4064d26a9b16a
39152 Author: Heiko Schocher <hs@denx.de>
39153 Date:   Fri Oct 17 18:23:27 2008 +0200
39155     mgsuvd: update size of environment
39157     Signed-off-by: Heiko Schocher <hs@denx.de>
39159 commit 2e26d837f11460c0e6dede7d65424a31e0183d09
39160 Author: Jason Jin <Jason.jin@freescale.com>
39161 Date:   Fri Oct 10 11:41:00 2008 +0800
39163     Enabled the Freescale SGMII riser card on 8536DS
39165     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
39167 commit 7e183cad0c5ab6415dca95d6ac290ea918b28c55
39168 Author: Liu Yu <yu.liu@freescale.com>
39169 Date:   Fri Oct 10 11:40:59 2008 +0800
39171     Enabled the Freescale SGMII riser card on 8572DS
39173     This patch based on Andy's work.
39174     Including command 'pixis_set_sgmii' support.
39176     Signed-off-by: Liu Yu <yu.liu@freescale.com>
39178 commit bff188baf9427c35745356439435acf3864d4c65
39179 Author: Liu Yu <yu.liu@freescale.com>
39180 Date:   Fri Oct 10 11:40:58 2008 +0800
39182     Make pixis_set_sgmii more general to support MPC85xx boards.
39184     The pixis sgmii command depend on the FPGA support on the board, some 85xx
39185     boards support SGMII riser card but did not support this command, define
39186     CONFIG_PIXIS_SGMII_CMD for those boards which support the sgmii command.
39188     Not like 8544, 8572 has 4 eTsec so that the other two's pixis bits
39189     are not supported by 8544. Therefor, define PIXIS_VSPEED2_MASK and
39190     PIXIS_VCFGEN1_MASK in header file for both boards.
39192     Signed-off-by: Liu Yu <yu.liu@freescale.com>
39194 commit 5e981d683d2363204c76773941c2e9c2044c808f
39195 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39196 Date:   Wed Oct 8 23:38:02 2008 -0500
39198     Add cpu/8xxx to TAGS_SUBDIRS
39200     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39202 commit e1f7d22b8b52fc08c4d17a6a7db1e664281aed63
39203 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39204 Date:   Thu Oct 9 01:25:55 2008 -0500
39206     fsl_law clear enable before changing.
39208     Debug sessions may have left enabled laws.
39209     Changing lawbar with an unkown enabled tgtid could cause problems.
39211     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39213 commit 86be510f7b5443e7e937f696bfbe037fdc740b15
39214 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39215 Date:   Thu Oct 9 00:29:27 2008 -0500
39217     mpc8572 additional end-point mode
39219     mpc8572 supports all pcie controllers as end-points with cfg_host_agent=0.
39220     Include host_agent == 0 decode for end-point determination.
39222     This is not needed for the ds reference board since pcie3 will be a host
39223     in order to connect to the uli chip.  Include it here as a reference for
39224     other mpc8572 boards.
39226     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39228 commit 6856b3d0221a838580e6bb06f61425fd7529ba93
39229 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39230 Date:   Wed Oct 8 23:37:59 2008 -0500
39232     85xx if NUM_CPUS>1, print cpu number
39234     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39236 commit f7fecc3e25050a036c9f50f0d2b85bc3199a96e0
39237 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39238 Date:   Wed Oct 8 23:38:01 2008 -0500
39240     pixis do not print long help if not configured
39242     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39244 commit 0e17f02a8a78d85225a4d805f6a1ea95a0a460b5
39245 Author: Andy Fleming <afleming@freescale.com>
39246 Date:   Tue Oct 7 08:09:50 2008 -0500
39248     Have u-boot pass stashing parameters into device tree
39250     Some cores don't support ethernet stashing at all, and some
39251     instances have errata.  Adds 3 properties to gianfar nodes
39252     which support stashing.  For now, just add this support to
39253     85xx SoCs.
39255     Signed-off-by: Andy Fleming <afleming@freescale.com>
39257 commit c21617fd265b7c126c6e2f2d8a23cdb00d4fade7
39258 Author: Haiying Wang <Haiying.Wang@freescale.com>
39259 Date:   Fri Oct 3 12:37:57 2008 -0400
39261     Add DDR options setting on MPC8641HPCN board
39263     * Add board specific parameter table to choose correct cpo, clk_adjust,
39264     write_data_delay based on board ddr frequency and n_ranks.
39266     * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
39268     Signed-off-by: James Yang <James.Yang@freescale.com>
39269     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39271 commit 4ca06607d60d0a6378812ef58fd1eab2a7f77111
39272 Author: Haiying Wang <Haiying.Wang@freescale.com>
39273 Date:   Fri Oct 3 12:37:41 2008 -0400
39275     Add ddr interleaving suppport for MPC8572DS board
39277     * Add board specific parameter table to choose correct cpo, clk_adjust,
39278     write_data_delay, 2T based on board ddr frequency and n_ranks.
39280     * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
39282     * Set memory controller interleaving mode to bank interleaving, and disable
39283     bank(chip select) interleaving mode by default, because the default on-board
39284     DDR DIMMs are 2x512MB single-rank.
39286     * Change CONFIG_ICS307_REFCLK_HZ from 33333333 to 33333000.
39288     Signed-off-by: James Yang <James.Yang@freescale.com>
39289     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39291 commit 1f293b417ac6ab8e317ca2b770377ca93edf2370
39292 Author: Haiying Wang <Haiying.Wang@freescale.com>
39293 Date:   Fri Oct 3 12:37:26 2008 -0400
39295     Add debug information for DDR controller registers
39297     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39299 commit c9ffd839b1ada502c86f88edaf1534426b6688ce
39300 Author: Haiying Wang <Haiying.Wang@freescale.com>
39301 Date:   Fri Oct 3 12:37:10 2008 -0400
39303     Check DDR interleaving mode
39305     * Check DDR interleaving mode from environment by reading memctl_intlv_ctl and
39306     ba_intlv_ctl.
39307     * Print DDR interleaving mode information
39308     * Add doc/README.fsl-ddr to describe the interleaving setting
39310     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39312 commit dfb49108e4f86c2224e1f30124328b0de66ef72e
39313 Author: Haiying Wang <Haiying.Wang@freescale.com>
39314 Date:   Fri Oct 3 12:36:55 2008 -0400
39316     Pass dimm parameters to populate populate controller options
39318     Because some dimm parameters like n_ranks needs to be used with the board
39319     frequency to choose the board parameters like clk_adjust etc. in the
39320     board_specific_paramesters table of the board ddr file, we need to pass
39321     the dimm parameters to the board file.
39323     * move ddr dimm parameters header file from /cpu to /include directory.
39324     * add ddr dimm parameters to populate board specific options.
39325     * Fix fsl_ddr_board_options() for all the 8xxx boards which call this function.
39327     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39329 commit dbbbb3abeff325855cae76e33d69d5665631443f
39330 Author: Haiying Wang <Haiying.Wang@freescale.com>
39331 Date:   Fri Oct 3 12:36:39 2008 -0400
39333     Make DDR interleaving mode work correctly
39335     Fix some bugs:
39336       1. Correctly set intlv_ctl in cs_config.
39337       2. Correctly set sa, ea in cs_bnds when bank interleaving mode is enabled.
39338       3. Set base_address and total memory for each ddr controller in memory
39339          controller interleaving mode.
39341     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39343 commit 1c9aa76bf9013069e24258f46f4687c9f98a02d6
39344 Author: Kumar Gala <galak@kernel.crashing.org>
39345 Date:   Mon Sep 22 23:40:42 2008 -0500
39347     85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
39349     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39351 commit 7c0d4a7508d252d2d7c137eeb376814132dda30f
39352 Author: Kumar Gala <galak@kernel.crashing.org>
39353 Date:   Mon Sep 22 14:11:11 2008 -0500
39355     85xx: Improve flash remapping on MPC8572DS & MPC8536DS
39357     Changing the flash from cacheable to cache-inhibited was taking a significant
39358     amount of time due to the fact that we were iterating over the full 256M of
39359     flash.  Instead we can just flush the L1 d-cache and invalidate the i-cache.
39361     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39363 commit 54e091d3b603a3332c619199ca83a07e95960da4
39364 Author: Kumar Gala <galak@kernel.crashing.org>
39365 Date:   Mon Sep 22 14:11:10 2008 -0500
39367     85xx: Export invalidate_{i,d}cache and add flush_dcache
39369     Added the ability for C code to invalidate the i/d-cache's and
39370     to flush the d-cache.  This allows us to more efficient change mappings
39371     from cache-able to cache-inhibited.
39373     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39375 commit 6250f0f6297c5ba9aecdea6290799a95c5d4b1da
39376 Author: Heiko Schocher <hs@denx.de>
39377 Date:   Fri Oct 17 16:11:52 2008 +0200
39379     mgcoge, mgsuvd: extract more common code
39381     in ft_blob_update () for both boards was an unneccessary
39382     repetition of code, which this patch moves in a common
39383     function for this boards.
39385     Signed-off-by: Heiko Schocher <hs@denx.de>
39387 commit 9e299192ca9850cf725456388042a5aa5a6f3ec7
39388 Author: Heiko Schocher <hs@denx.de>
39389 Date:   Fri Oct 17 12:15:55 2008 +0200
39391     mgcoge, mgsuvd: use in_*/out_* accesors
39393     Signed-off-by: Heiko Schocher <hs@denx.de>
39395 commit a21ca95f8b9dca22714952b348e4905ac157b5cd
39396 Author: Heiko Schocher <hs@denx.de>
39397 Date:   Fri Oct 17 13:52:51 2008 +0200
39399     mgsuvd: fix compiler warning when using soft_i2c driver
39401     Signed-off-by: Heiko Schocher <hs@denx.de>
39403 commit cac9cf7875c2a01d63422820ed4732a9bdf5ab7b
39404 Author: Heiko Schocher <hs@denx.de>
39405 Date:   Fri Oct 17 12:15:05 2008 +0200
39407     mgsuvd: fix coding style
39409     Signed-off-by: Heiko Schocher <hs@denx.de>
39411 commit 5f4c3137f4f051787707c548133823f1656eb508
39412 Author: Heiko Schocher <hs@denx.de>
39413 Date:   Fri Oct 17 12:13:30 2008 +0200
39415     mgcoge: Second Flash on CS5 not on CS1
39417     Signed-off-by: Heiko Schocher <hs@denx.de>
39419 commit 76da19df5b8e186d269f29190696bd31fb6c836b
39420 Author: Kumar Gala <galak@kernel.crashing.org>
39421 Date:   Thu Oct 16 21:52:08 2008 -0500
39423     Added arch_lmb_reserve to allow arch specific memory regions protection
39425     Each architecture has different ways of determine what regions of memory
39426     might not be valid to get overwritten when we boot.  This provides a
39427     hook to allow them to reserve any regions they care about.  Currently
39428     only ppc, m68k and sparc need/use this.
39430     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39432 commit e02d4a9904c8f36395994c0c81469d552b82f5ea
39433 Author: Heiko Schocher <hs@denx.de>
39434 Date:   Thu Oct 16 16:32:35 2008 +0200
39436     mgcoge: added CONFIG_FIT to support the new u-boot image format
39438     Signed-off-by: Heiko Schocher <hs@denx.de>
39440 commit 6d0f6bcf337c5261c08fabe12982178c2c489d76
39441 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39442 Date:   Thu Oct 16 15:01:15 2008 +0200
39444     rename CFG_ macros to CONFIG_SYS
39446     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39448 commit 71edc271816ec82cf0550dd6980be2da3cc2ad9e
39449 Author: Kumar Gala <galak@kernel.crashing.org>
39450 Date:   Mon Oct 13 14:12:55 2008 -0500
39452     74xx/7xx/86xx: Rename flush_data_cache to flush_dcache to match 85xx version
39454     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39456 commit b799cb4c0eebb0762e91e9653d8b9cc9a98440e3
39457 Author: Kumar Gala <galak@kernel.crashing.org>
39458 Date:   Tue Sep 23 10:05:02 2008 -0500
39460     Expose command table search for sub-commands
39462     Sub-command can benefit from using the same table and search functions
39463     that top level commands have.  Expose this functionality by refactoring
39464     find_cmd() and introducing find_cmd_tbl() that sub-command processing
39465     can call.
39467     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39469 commit f7e51b27508446f8cae3927975817137979ad5e8
39470 Author: Heiko Schocher <hs@denx.de>
39471 Date:   Wed Oct 15 09:41:33 2008 +0200
39473     mgsuvd, mgcoge: added BOOTCOUNT feature.
39475     Signed-off-by: Heiko Schocher <hs@denx.de>
39477 commit 8f64da7f83b553889bc08400c97047998382e9d2
39478 Author: Heiko Schocher <hs@denx.de>
39479 Date:   Wed Oct 15 09:41:00 2008 +0200
39481     mgcoge, mgsuvd: added support for the IVM EEprom.
39483     The EEprom contains some Manufacturerinformation,
39484     which are read from u-boot at boot time, and saved
39485     in same hush shell variables.
39487     Signed-off-by: Heiko Schocher <hs@denx.de>
39489 commit 81473f67810c4c9b7efaed8dee258ed6bc4c7983
39490 Author: Heiko Schocher <hs@denx.de>
39491 Date:   Wed Oct 15 09:40:28 2008 +0200
39493     hush: add showvar command for hush shell.
39495     This new command shows the local variables defined in
39496     the hush shell:
39498     => help showvar
39499     showvar
39500         - print values of all hushshell variables
39501     showvar name ...
39502         - print value of hushshell variable 'name'
39504     Also make the set_local_var() and unset_local_var ()
39505     no longer static, so it is possible to define local
39506     hush shell variables at boot time. If CONFIG_HUSH_INIT_VAR
39507     is defined, u-boot calls hush_init_var (), where
39508     boardspecific code can define local hush shell
39509     variables at boottime.
39511     Signed-off-by: Heiko Schocher <hs@denx.de>
39513 commit 67b23a322848d828a5e45c0567b72762bfde7abf
39514 Author: Heiko Schocher <hs@denx.de>
39515 Date:   Wed Oct 15 09:39:47 2008 +0200
39517     I2C: adding new "i2c bus" Command to the I2C Subsystem.
39519     With this Command it is possible to add new I2C Busses,
39520     which are behind 1 .. n I2C Muxes. Details see README.
39522     Signed-off-by: Heiko Schocher <hs@denx.de>
39524 commit c24853644ddd2dd2e4246b5854a93e6254a14092
39525 Author: Heiko Schocher <hs@denx.de>
39526 Date:   Wed Oct 15 09:39:08 2008 +0200
39528     mgcoge, mgsuvd: add board specific I2C deblocking mechanism.
39530     As documented in doc/I2C_Edge_Conditions, adding a
39531     board specific deblocking mechanism via CFG_I2C_INIT_BOARD
39532     for the mgcoge and mgsuvd board.
39534     This code was originally written by Keymile in association
39535     with Anatech and Atmel in 1998. The Code toggels the SCL
39536     until the SCA line goes to HIGH (max. 16 times).
39537     And after this, a start condition is sent.
39539     This is another approach to deblock the I2C Bus. The
39540     soft I2C driver actually sends 9 clocks with SDA High,
39541     and then a stop at the end, to deblock the I2C Bus.
39543     Maybe we should use the approach from Keymile as
39544     the new standard?
39546     Signed-off-by: Heiko Schocher <hs@denx.de>
39548 commit 4ca107effebfbabac1057c39632105dacef95957
39549 Author: Heiko Schocher <hs@denx.de>
39550 Date:   Wed Oct 15 09:38:38 2008 +0200
39552     soft_i2c: Add CFG_I2C_INIT_BOARD option
39554     This patch adds the option for a boardspecific
39555     I2C deblocking mechanism for the soft i2c driver.
39557     Signed-off-by: Heiko Schocher <hs@denx.de>
39559 commit e5e4edd9f1f76210a09c34ee835f6cff60fdbbd1
39560 Author: Heiko Schocher <hs@denx.de>
39561 Date:   Wed Oct 15 09:38:07 2008 +0200
39563     mgcoge, mgsuvd: add DTT (LM75) support.
39565     Signed-off-by: Heiko Schocher <hs@denx.de>
39567 commit 8e442df438ab677057571e3ac01846bff7719bce
39568 Author: Heiko Schocher <hs@denx.de>
39569 Date:   Wed Oct 15 09:37:34 2008 +0200
39571     lm75: Make the LM75 MULTI_BUS compatible.
39573     Signed-off-by: Heiko Schocher <hs@denx.de>
39575 commit 12f1678127c1df2b2878ba93c88948bedc060775
39576 Author: Heiko Schocher <hs@denx.de>
39577 Date:   Wed Oct 15 09:37:04 2008 +0200
39579     lm75: fix Codingstyle issues.
39581     Signed-off-by: Heiko Schocher <hs@denx.de>
39583 commit f2202450c75ba6934b356024101500ddcde6e2a6
39584 Author: Heiko Schocher <hs@denx.de>
39585 Date:   Wed Oct 15 09:36:33 2008 +0200
39587     mgcoge, mgsuvd: added EEprom support.
39589     Signed-off-by: Heiko Schocher <hs@denx.de>
39591 commit 9661bf9d120f760238b2a073b84f2baf05010057
39592 Author: Heiko Schocher <hs@denx.de>
39593 Date:   Wed Oct 15 09:36:03 2008 +0200
39595     mgcoge, mgsuvd: add I2C support.
39597     Signed-off-by: Heiko Schocher <hs@denx.de>
39599 commit 98aed379586a155292efbf3209356836584b601c
39600 Author: Heiko Schocher <hs@denx.de>
39601 Date:   Wed Oct 15 09:35:26 2008 +0200
39603     soft_i2c: prevent compiler warnings if driver does not use CPU Pins.
39605     This patch fixes the following warnings, when using
39606     the soft_i2c driver using no CPU pins on MPC82xx or MPC8xx
39607     systems:
39609     soft_i2c.c: In function 'send_reset':
39610     soft_i2c.c:93: warning: unused variable 'immr'
39611     soft_i2c.c: In function 'send_start':
39612     soft_i2c.c:124: warning: unused variable 'immr'
39613     soft_i2c.c: In function 'send_stop':
39614     soft_i2c.c:146: warning: unused variable 'immr'
39615     soft_i2c.c: In function 'send_ack':
39616     soft_i2c.c:171: warning: unused variable 'immr'
39617     soft_i2c.c: In function 'write_byte':
39618     soft_i2c.c:196: warning: unused variable 'immr'
39619     soft_i2c.c: In function 'read_byte':
39620     soft_i2c.c:244: warning: unused variable 'immr'
39622     Signed-off-by: Heiko Schocher <hs@denx.de>
39624 commit 799b784aa00cb03a352847ab9f9acdde79b72d21
39625 Author: Heiko Schocher <hs@denx.de>
39626 Date:   Wed Oct 15 09:34:45 2008 +0200
39628     i2c: add CONFIG_I2C_MULTI_BUS for soft_i2c and mpc8260 i2c driver.
39630     Signed-off-by: Heiko Schocher <hs@denx.de>
39632 commit 0809ea2f4340ab2047400c7d3d3047f97987d0fd
39633 Author: Heiko Schocher <hs@denx.de>
39634 Date:   Wed Oct 15 09:34:05 2008 +0200
39636     mgcoge: fix Coding Style issues.
39638     Signed-off-by: Heiko Schocher <hs@denx.de>
39640 commit e43a27c49712203fe8848a17714330623edfb2eb
39641 Author: Heiko Schocher <hs@denx.de>
39642 Date:   Wed Oct 15 09:33:30 2008 +0200
39644     I2C: add new command i2c reset.
39646     If I2C Bus is blocked (see doc/I2C_Edge_Conditions),
39647     it is not possible to get out of this, until the
39648     complete Hardware gets a reset. This new commando
39649     calls again i2c_init (and that calls i2c_init_board
39650     if defined), which will deblock the I2C Bus.
39652     Signed-off-by: Heiko Schocher <hs@denx.de>
39653     Signed-off-by: Wolfgang Denk <wd@denx.de>
39655 commit 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686
39656 Author: Heiko Schocher <hs@denx.de>
39657 Date:   Wed Oct 15 09:32:25 2008 +0200
39659     mgsuvd, mgcoge: move this 2 boards in one dir.
39661     There are some more extensions, which are for both boards
39662     and some more boards from this manufacturer will follow soon.
39664     Signed-off-by: Heiko Schocher <hs@denx.de>
39665     Signed-off-by: Wolfgang Denk <wd@denx.de>
39667 commit 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b
39668 Author: Dirk Eibach <eibach@gdsys.de>
39669 Date:   Wed Oct 8 13:44:27 2008 +0200
39671     hwmon: Add LM63 support
39673     This patch adds support for the National LM63 temperature
39674     sensor with integrated fan control. It's used on the GDSys
39675     Neo board (405EP) which will be submitted later.
39677     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
39678     Acked-by: Stefan Roese <sr@denx.de>
39680 commit 7ba890bf2f2b92831420243c058951aa831119fd
39681 Author: Kyungmin Park <kmpark@infradead.org>
39682 Date:   Wed Oct 8 11:01:17 2008 +0900
39684     Add Red Black Tree support
39686     Now it's used at UBI module. Of course other modules can use it.
39687     If you want to use it, please define CONFIG_RBTREE
39689     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
39691 commit fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794
39692 Author: richardretanubun <richardretanubun@ruggedcom.com>
39693 Date:   Mon Oct 6 16:10:53 2008 -0400
39695     CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c
39697     Added support for CONFIG_EFI_PARTITION to ext2 commands.
39698     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
39700 commit 07f3d789b9beb7ce3278c974f4d5c8f51b6ab567
39701 Author: richardretanubun <richardretanubun@ruggedcom.com>
39702 Date:   Fri Sep 26 11:13:22 2008 -0400
39704     Add support for CONFIG_EFI_PARTITION (GUID Partition Table)
39706     The GUID (Globally Unique Identifier) Partition Table (GPT) is a part
39707     of EFI. See http://en.wikipedia.org/wiki/GUID_Partition_Table
39709     Based on linux/fs/partitions/efi.[ch]
39711     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
39713 commit fbc87dc0546dff709b38f358e2c5d5e39c4ca374
39714 Author: Bartlomiej Sieka <tur@semihalf.com>
39715 Date:   Wed Oct 1 15:26:32 2008 +0200
39717     FIT: output image load address for type 'firmware', fix message while there
39719     Now that the auto-update feature uses the 'firmware' type for updates, it is
39720     useful to inspect the load address of such images.
39722     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39724 commit 4bae90904b69ce3deb9f7c334ef12ed74e18a275
39725 Author: Bartlomiej Sieka <tur@semihalf.com>
39726 Date:   Wed Oct 1 15:26:31 2008 +0200
39728     Automatic software update from TFTP server
39730     The auto-update feature allows to automatically download software updates
39731     from a TFTP server and store them in Flash memory during boot. Updates are
39732     contained in a FIT file and protected with SHA-1 checksum.
39734     More detailed description can be found in doc/README.update.
39736     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
39737     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39739 commit 3f0cf51dabacc2724731c5079a60ea989103bb8f
39740 Author: Bartlomiej Sieka <tur@semihalf.com>
39741 Date:   Wed Oct 1 15:26:27 2008 +0200
39743     flash: factor out adjusting of Flash address to the end of sector
39745     The upcoming automatic update feature needs the ability to adjust an
39746     address within Flash to the end of its respective sector. Factor out
39747     this functionality to a new function flash_sect_roundb().
39749     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
39750     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39751     Signed-off-by: Stefan Roese <sr@denx.de>
39753 commit e83cc06375ac2bea0830c6ed0f9d8fdc3c1b27d5
39754 Author: Bartlomiej Sieka <tur@semihalf.com>
39755 Date:   Wed Oct 1 15:26:29 2008 +0200
39757     net: Make TFTP server timeout configurable
39759     There are two aspects of a TFTP transfer involving timeouts:
39760     1. timeout waiting for initial server reply after sending RRQ
39761     2. timeouts while transferring actual data from the server
39763     Since the upcoming auto-update feature attempts a TFTP download during each
39764     boot, it is undesirable to have a long delay when the TFTP server is not
39765     available. Thus, this commit makes the server timeout (1.) configurable by two
39766     global variables:
39768     TftpRRQTimeoutMSecs
39769     TftpRRQTimeoutCountMax
39771     TftpRRQTimeoutMSecs overrides default timeout when trying to connect to a TFTP
39772     server, TftpRRQTimeoutCountMax overrides default number of connection retries.
39773     The total delay when trying to download a file from a non-existing TFTP server
39774     is TftpRRQTimeoutMSecs x TftpRRQTimeoutCountMax milliseconds.
39776     Timeouts during file transfers (2.) are unaffected.
39778     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
39779     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39780     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39782 commit 49f3bdbba8071f56d950a9498b6cdb998b35340a
39783 Author: Bartlomiej Sieka <tur@semihalf.com>
39784 Date:   Wed Oct 1 15:26:28 2008 +0200
39786     net: express the first argument to NetSetTimeout() in milliseconds
39788     Enforce millisecond semantics of the first argument to NetSetTimeout() --
39789     the change is transparent for well-behaving boards (CFG_HZ == 1000 and
39790     get_timer() countiing in milliseconds).
39792     Rationale for this patch is to enable millisecond granularity for
39793     network-related timeouts, which is needed for the upcoming automatic
39794     software update feature.
39796     Summary of changes:
39797     - do not scale the first argument to NetSetTimeout() by CFG_HZ
39798     - change timeout values used in the networking code to milliseconds
39800     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
39801     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39802     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39804 commit c68a05feeb88de9fcf158e67ff6423c4cc988f88
39805 Author: richardretanubun <richardretanubun@ruggedcom.com>
39806 Date:   Mon Sep 29 18:28:23 2008 -0400
39808     Adds two more ethernet interface to 83xx
39810     Added as a convenience for other platforms that uses MPC8360 (has 8 UCC).
39811     Six eth interface is chosen because the platform I am using combines
39812     UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth.
39814     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
39815     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39817 commit 41410eee472b0f42e03a77f961bbc55ef58f3c01
39818 Author: Haiying Wang <Haiying.Wang@freescale.com>
39819 Date:   Wed Sep 24 11:42:12 2008 -0500
39821     Change UEC PHY interface to RGMII on MPC8568MDS
39823     Change UEC phy interface from GMII to RGMII on MPC8568MDS board
39825     Because on MPC8568MDS, GMII interface is only recommended for 1000Mbps speed,
39826     but RGMII interface can work at 10/100/1000Mbps, and RGMII interface works more stable.
39828     Now both UEC1 and UEC2 can work properly under u-boot.
39830     It is also in consistent with the kernel setting for 8568 UEC phy interface.
39832     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39833     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39835 commit b59b16ca24bc7e77ec113021a6d77b9b32fcf192
39836 Author: Wolfgang Denk <wd@denx.de>
39837 Date:   Sat Oct 18 21:30:31 2008 +0200
39839     Prepare v2008.10 release: update CHANGELOG & Makefile
39841     Signed-off-by: Wolfgang Denk <wd@denx.de>
39843 commit f7a35a60cf45491871a5c28e9ad24db005487857
39844 Author: Heiko Schocher <hs@denx.de>
39845 Date:   Fri Oct 17 18:24:06 2008 +0200
39847     mgcoge: add redundant environment sector
39849     Signed-off-by: Heiko Schocher <hs@denx.de>
39850     Signed-off-by: Wolfgang Denk <wd@denx.de>
39852 commit c2537ee85954af9d036b18b644f3e18d837bf4a5
39853 Author: Heiko Schocher <hs@denx.de>
39854 Date:   Fri Oct 17 18:23:27 2008 +0200
39856     mgsuvd: update size of environment
39858     Signed-off-by: Heiko Schocher <hs@denx.de>
39860 commit fa7b1c07e9371aea8f87ee6d3c2ea5564bd8cc8d
39861 Author: Lepcha Suchit <Suchit.Lepcha@freescale.com>
39862 Date:   Thu Oct 16 13:38:00 2008 -0500
39864     83xx NAND boot: wait for LTESR[CC]
39866     At least some revisions of the 8313, and possibly other chips, do not
39867     wait for all pages of the initial 4K NAND region to be loaded before
39868     beginning execution; thus, we wait for it before branching out of the
39869     first NAND page.
39871     This fixes warm reset problems when booting from NAND on 8313erdb.
39873     Signed-off-by: Scott Wood <scottwood@freescale.com>
39874     Acked-by: Kim Phillips <kim.phillips@freescale.com>
39876 commit bf29e0ea0af03d593c64614136acc723a7a022a2
39877 Author: Yuri Tikhonov <yur@emcraft.com>
39878 Date:   Fri Oct 17 12:54:18 2008 +0200
39880     ppc4xx: PPC44x MQ initialization
39882     Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
39883     values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
39884     dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
39886     Previously the appropriate initialization had been made in Linux, by the
39887     ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
39888     registers after normal operation has begun is not supported and could
39889     have unpredictable results.
39891     Comment from Stefan: This patch doesn't change the resulting value of the
39892     MQ registers. It explicitly sets/clears all bits to the desired state which
39893     better documents the resulting register value instead of relying on pre-set
39894     default values.
39896     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
39897     Signed-off-by: Stefan Roese <sr@denx.de>
39899 commit ec081c2c190148b374e86a795fb6b1c49caeb549
39900 Author: Stefan Roese <sr@denx.de>
39901 Date:   Fri Oct 17 12:51:46 2008 +0200
39903     ppc4xx: PPC44x MQ initialization
39905     Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
39906     values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
39907     dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
39909     Previously the appropriate initialization had been made in Linux, by the
39910     ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
39911     registers after normal operation has begun is not supported and could
39912     have unpredictable results.
39914     Comment from Stefan: This patch doesn't change the resulting value of the
39915     MQ registers. It explicitly sets/clears all bits to the desired state which
39916     better documents the resulting register value instead of relying on pre-set
39917     default values.
39919     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
39920     Signed-off-by: Stefan Roese <sr@denx.de>
39922 commit f7d190b1c0b3ab7fc53074ad2862f7de99de37ff
39923 Author: Kumar Gala <galak@kernel.crashing.org>
39924 Date:   Thu Oct 16 21:58:50 2008 -0500
39926     85xx: Using proper I2C source clock divider for MPC8544
39928     The MPC8544 RM incorrect shows the SEC_CFG bit in PORDEVSR2 as being
39929     bit 26, instead it should be bit 28.  This caused in incorrect
39930     interpretation of the i2c_clk which is the same as the SEC clk on
39931     MPC8544.  The SEC clk is controlled by cfg_sec_freq that is reported
39932     in PORDEVSR2.
39934     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39936 commit 42653b826adb319a1df06e24ef26096b2a5d9d2a
39937 Author: Kumar Gala <galak@kernel.crashing.org>
39938 Date:   Thu Oct 16 21:58:49 2008 -0500
39940     Revert "85xx: Using proper I2C source clock divider for MPC8544"
39942     This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159.
39944     The fix introduced by this patch is not correct.  The problem is
39945     that the documentation is not correct for the MPC8544 with regards
39946     to which bit in PORDEVSR2 is for the SEC_CFG.
39948     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39950 commit 2179c4766bffeece98e5e92040629a96c97e230c
39951 Author: Kumar Gala <galak@kernel.crashing.org>
39952 Date:   Wed Oct 15 10:19:41 2008 -0500
39954     85xx: Fix compile warning
39956     mpc8536ds.c: In function 'is_sata_supported':
39957     mpc8536ds.c:614: warning: unused variable 'devdisr'
39959     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39961 commit 9029b68f3f81b3013044f167ea025e836e6c8c0e
39962 Author: Jason Jin <Jason.jin@freescale.com>
39963 Date:   Wed Oct 15 10:40:24 2008 +0800
39965     Fix the function conflict in x86emu when DEBUG is on
39967     The function parse_line() in common/main.c was exposed globally by commit
39968     6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same
39969     name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG.
39970     This patch fix this by renaming the function in the debug.c file.
39972     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
39974 commit b4dbacf69a669a17487054552fc2761149dd6767
39975 Author: Wolfgang Denk <wd@denx.de>
39976 Date:   Wed Oct 15 15:50:45 2008 +0200
39978     Coding Style cleanup, update CHANGELOG, prepare 2008.10-rc3
39980     Signed-off-by: Wolfgang Denk <wd@denx.de>
39982 commit 374b9038293d01d8744a46af9b7854a6fd99b228
39983 Author: Heiko Schocher <hs@denx.de>
39984 Date:   Wed Oct 15 09:51:19 2008 +0200
39986     Fix compiler warning in lib_ppc/board.c
39988     Fix compiler warning introduced by commit 0f8cbc18
39990     Signed-off-by: Heiko Schocher <hs@denx.de>
39991     Signed-off-by: Wolfgang Denk <wd@denx.de>
39993 commit 9724555755a6f1066636481b41f7094e0ce93a69
39994 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
39995 Date:   Thu Oct 9 10:29:14 2008 +0530
39997     mpc83xx: wait till UPM completes the write to array
39999     Reference manual states that MxMR[MAD] increment is the indication
40000     of write to UPM array is complete. Honour that. Also, make the dummy
40001     write explicit.
40003     also fix the comment.
40005     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
40006     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40008 commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51
40009 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
40010 Date:   Wed Oct 8 18:12:20 2008 -0500
40012     Remove unwanted ';' at end of define.
40014     Currently this is not creating any problem. But it will result
40015     in compilation error when used as below.
40017     printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2);
40019     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
40021     continuation of the theme based on git grep "^#define CFG_.*;$" include/
40023     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40025 commit b2934a56650e9a6c54432f9ce6dc36757967385e
40026 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
40027 Date:   Mon Oct 6 10:53:59 2008 -0400
40029     ARM DaVinci: Add maintainer information for SFFSDR board.
40031     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
40033 commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc
40034 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40035 Date:   Sat Oct 4 19:26:16 2008 +0200
40037     api: fix type mismatch
40039     This patch fixes a type mismatch and thus removes a compiler
40040     warning when compiling with CONFIG_API on powerpc.
40042     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40044 commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141
40045 Author: Peter Tyser <ptyser@xes-inc.com>
40046 Date:   Wed Oct 1 12:25:04 2008 -0500
40048     cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS
40050     Original code displayed:
40051      => help i2c
40052      i2c i2c speed [speed] - show or set I2C bus speed
40053      i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device
40054      ...
40056     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
40058 commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1
40059 Author: Wolfgang Denk <wd@denx.de>
40060 Date:   Tue Oct 14 22:13:41 2008 +0200
40062     Update CHANGELOG
40064     Signed-off-by: Wolfgang Denk <wd@denx.de>
40066 commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
40067 Author: Jason Jin <Jason.jin@freescale.com>
40068 Date:   Fri Oct 10 11:41:01 2008 +0800
40070     Do not init SATA when disabled on 8536DS.
40072     SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
40073     driver still try to access the SATA registers, the cpu will hangup.
40074     This patch try to fix this by reading the serdes status before the SATA
40075     initialize.
40077     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
40078     Acked-by: Andy Fleming <afleming@freescale.com>
40080 commit 9dbc366744960013965fce8851035b6141f3b3ae
40081 Author: Remy Bohmer <linux@bohmer.net>
40082 Date:   Fri Oct 10 10:23:22 2008 +0200
40084     The PIPE_INTERRUPT flag is used wrong
40086     At a lot of places in the code the PIPE_INTERRUPT flags and friends
40087     are used wrong. The wrong bits are compared to this flag resulting
40088     in wrong conditions. Also there are macros that should be used for
40089     PIPE_* flags.
40090     This patch tries to fix them all, however, I was not able to test the
40091     changes, because I do not have any of these boards.
40093     Review required!
40095     Signed-off-by: Remy Bohmer <linux@bohmer.net>
40096     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
40098 commit 48867208444cb2a82e2af9c3249e90b7ed4a1751
40099 Author: Remy Bohmer <linux@bohmer.net>
40100 Date:   Fri Oct 10 10:23:21 2008 +0200
40102     fix USB initialisation procedure
40104     The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes.
40105     At some places directly 8,16,32,64 was used instead of the encoded
40106     value. Made a enum for the options to make this more clear and to help
40107     preventing similar errors in the future.
40109     After fixing this bug it became clear that another bug existed where
40110     the 'pipe' is and-ed with PIPE_* flags, where it should have been
40111     'usb_pipetype(pipe)', or even better usb_pipeint(pipe).
40113     Also removed the triple 'get_device_descriptor' sequence, it has no use,
40114     and Windows nor Linux behaves that way.
40115     There is also a poll going on with a timeout when usb_control_msg() fails.
40116     However, the poll is useless, because the flag will never be set on a error,
40117     because there is no code that runs in a parallel that can set this flag.
40118     Changed this to something more logical.
40120     Tested on AT91SAM9261ek and compared the flow on the USB bus to what
40121     Linux is doing. There is no difference anymore in the early initialisation
40122     sequence.
40124     Signed-off-by: Remy Bohmer <linux@bohmer.net>
40125     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
40127 commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
40128 Author: Nikita V. Youshchenko <yoush@cs.msu.su>
40129 Date:   Fri Oct 3 00:03:55 2008 +0400
40131     fsl_diu: fix alignment error that caused malloc corruption
40133     When aligning malloc()ed screen_base, invalid offset was added.
40134     This not only caused misaligned result (which did not cause hardware
40135     misbehaviour), but - worse - caused screen_base + smem_len to
40136     be out of malloc()ed space, which in turn caused breakage of
40137     futher malloc()/free() operation.
40139     This patch fixes screen_base alignment.
40141     Also this patch makes memset() that cleans framebuffer to be executed
40142     on first initialization of diu, not only on re-initialization. It looks
40143     correct to clean the framebuffer instead of displaying random garbage;
40144     I believe that was disabled only because that memset caused breakage
40145     of malloc/free described above - which no longer happens with the fix
40146     described above.
40148     Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
40150 commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
40151 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40152 Date:   Wed Sep 24 10:29:37 2008 +0200
40154     api: Fix building with CONFIG_API
40156     This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
40158     USB_MAX_STOR_DEV is defined in include/usb.h, but
40159     needed in api/api_storage.c.
40161     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40163 commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
40164 Author: Peter Tyser <ptyser@xes-inc.com>
40165 Date:   Tue Sep 23 12:39:40 2008 -0500
40167     Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
40169     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
40171 commit 81e612014c40c922ec35488d17c504d4e9286f06
40172 Author: Peter Tyser <ptyser@xes-inc.com>
40173 Date:   Tue Sep 23 12:38:42 2008 -0500
40175     Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
40177     The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
40178     CFG_EEPROM_PAGE_WRITE_BITS in various temperature
40179     sensor drivers are not necessary
40181     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
40183 commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
40184 Author: Mike Frysinger <vapier@gentoo.org>
40185 Date:   Tue Oct 14 07:04:38 2008 -0400
40187     cmd_spi: remove broken signed casting for display
40189     Since we're working with unsigned data, you can't apply a signed pointer
40190     cast and then attempt to print the result.  Otherwise you get wrong output
40191     when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
40193     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
40195 commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
40196 Author: Mike Frysinger <vapier@gentoo.org>
40197 Date:   Tue Oct 14 07:05:24 2008 -0400
40199     strings cmd: drop old CONFIG_CFG_STRINGS define
40201     We don't need CONFIG_CFG_STRINGS anymore now that we have the define
40202     CONFIG_CMD_STRINGS and Makefile control.
40204     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
40206 commit fecb5ade3b37f62981f2b05b621005850173aaa9
40207 Author: Jason Jin <Jason.jin@freescale.com>
40208 Date:   Fri Sep 19 17:32:49 2008 +0800
40210     Fix the NAND size overflow issue.
40212     When the total size of all NAND devices exceeds 4 GiB, the size  will
40213     overflow. This patch tries to fix this.
40215     Note that we still have a problem when a single NAND device is bigger
40216     than 4 GiB: then the overflow would actually happen earlier, i. e.
40217     when storing the size in nand_info[].size, as nand_info[].size is an
40218     "u_int32_t".
40220     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
40221     Signed-off-by: Wolfgang Denk <wd@denx.de>
40223 commit 30f574717277238b9014b8136c90eea77196490f
40224 Author: Louis Su <louis@asix.com.tw>
40225 Date:   Wed Jul 9 11:01:37 2008 +0800
40227     AX88180: new gigabit network driver
40229     Signed-off-by: Louis Su <louis@asix.com.tw>
40230     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40232 commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
40233 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
40234 Date:   Tue Aug 19 16:07:03 2008 +0200
40236     enable 10/100M at VSC8601 at tsec driver
40238     Currently VSC8601 doesn't link with 10/100M partners if the
40239     EEPROM/Strapping is not set up.
40240     Setting the auto-neg register fixes this.
40242     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
40243     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40245 commit 702c85b0e876d587c11acdbb55738ee52acd54f4
40246 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40247 Date:   Tue Sep 30 15:02:53 2008 +0900
40249     net: ne2000: Divided a function of NE2000 driver
40251     get_prom function was used __attriute__ , but it is not enable.
40252     ax88796.o does not do link besides ne2000.o. When ld is carried
40253     out, get_prom function of ax88796.c is ignored.
40254     This problem is a thing by specifications of ld.
40255     I checked and test this patch on SuperH and MIPS.
40257     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40258     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40260 commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
40261 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40262 Date:   Tue Oct 14 11:10:59 2008 +0900
40264     sh: rsk7203: Add smc911x driver support to board config file
40266     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40267     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40269 commit cae6f909baf86357b3c0bd01acfc414348c4d175
40270 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40271 Date:   Thu Oct 9 13:54:33 2008 +0900
40273     sh: Fix cannot execute a stand-alone application
40275     Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
40277     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40278     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40280 commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
40281 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
40282 Date:   Wed Oct 8 23:38:00 2008 -0500
40284     fsl_pci_init do not scan bus when configured as an end-point
40286     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40287     Acked-by: Andy Fleming <afleming@freescale.com>
40289 commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
40290 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
40291 Date:   Tue Sep 16 17:07:53 2008 -0400
40293     ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
40295     This is no longer necessary now that the GD_FLG_RELOC flag is set for
40296     all ARM boards.
40298     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
40300 commit d977a57356657ba241256231efca32828a5822f9
40301 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
40302 Date:   Sat Sep 13 10:04:32 2008 +0200
40304     Fix lzma uncompress call (image_start wrongly used instead image_len)
40306     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
40308 commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
40309 Author: Nick Spence <nick.spence@freescale.com>
40310 Date:   Thu Aug 28 14:09:15 2008 -0700
40312     mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
40314     This is needed in unlock_ram_in_cache() because it is called from C and
40315     will corrupt the small data area anchor that is kept in R2.
40317     lock_ram_in_cache() is modified similarly as good coding practice, but
40318     is not called from C.
40320     Signed-off-by: Nick Spence <nick.spence@freescale.com>
40322 commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
40323 Author: Kumar Gala <galak@kernel.crashing.org>
40324 Date:   Tue Aug 19 15:05:34 2008 -0500
40326     86xx: remove redudant code with lib_ppc/interrupts.c
40328     For some reason we duplicated the majority of code in lib_ppc/interrupts.c
40329     Not know how that happened, but there is no good reason for it.
40331     Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
40332     they exist.
40334     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40336 commit 0d01f66d235118515b5086b88f82498bc0695d6a
40337 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
40338 Date:   Thu Oct 9 01:26:36 2008 -0500
40340     CFI: cfi_flash write fix for AMD legacy
40342     The flash_unlock_seq requires a sector for AMD_LEGACY.
40343     Fix a retcode check typeo.
40345     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40346     Signed-off-by: Stefan Roese <sr@denx.de>
40348 commit 542b385a620a1783454a00424930e51895f45073
40349 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40350 Date:   Tue Oct 7 13:13:10 2008 +0200
40352     ppc4xx: Fix USB 2.0 phy reset sequence
40354     This patch fixes USB 2.0 communication issues on some DU440 boards.
40356     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40357     Signed-off-by: Stefan Roese <sr@denx.de>
40359 commit df8c1ce11114c2260dedb5547281945f7db8fa5c
40360 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40361 Date:   Tue Oct 7 13:13:09 2008 +0200
40363     ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
40365     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40366     Signed-off-by: Stefan Roese <sr@denx.de>
40368 commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
40369 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40370 Date:   Tue Oct 7 13:13:08 2008 +0200
40372     ppc4xx: Fix DU440 GPIO configuration
40374     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40375     Signed-off-by: Stefan Roese <sr@denx.de>
40377 commit 35dd025c70fcc4389317db2f2a9d14795172137d
40378 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40379 Date:   Tue Oct 7 13:13:07 2008 +0200
40381     ppc4xx: Update DU440 config
40383     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40384     Signed-off-by: Stefan Roese <sr@denx.de>
40386 commit f3bf9273939ffe1a60a32a2eef909097f15df56b
40387 Author: Kumar Gala <galak@kernel.crashing.org>
40388 Date:   Wed Oct 8 15:36:39 2008 -0500
40390     MPC8572DS: Fix compile warnings
40392     Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
40393     compile warnings:
40395     cmd_i2c.c:112: warning: missing braces around initializer
40396     cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
40398     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40400 commit dffd2446fb041f38ef034b0fcf41e51e5e489159
40401 Author: Wolfgang Grandegger <wg@grandegger.com>
40402 Date:   Tue Sep 30 10:55:57 2008 +0200
40404     85xx: Using proper I2C source clock divider for MPC8544
40406     Measurements with our MPC8544 board showed that the I2C bus frequency
40407     is wrong by a factor of 1.5. Obviously, the interpretation of the
40408     MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
40409     correct. There seems to be an error in the 8544 RM.
40411     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
40413 commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
40414 Author: Rafal Czubak <rcz@semihalf.com>
40415 Date:   Wed Oct 8 13:41:30 2008 +0200
40417     FSL: Fix get_cpu_board_revision() return value.
40419     get_cpu_board_revision() returned board revision based on information stored
40420     in global static struct eeprom. It should instead use one from local struct
40421     board_eeprom, to which the data is actually read from EEPROM. The bug led to
40422     system hang after printing L1 cache information on U-Boot startup. The problem
40423     was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
40424     boards using CFG_I2C_EEPROM_CCID.
40426     The change has been successfully tested on MPC8555CDS system.
40428     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
40430 commit 747f316cca484ed627a97dd3391febabce384186
40431 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40432 Date:   Tue Sep 30 20:08:49 2008 +0200
40434     update uImage FIT multi documentation
40436     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40438 commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
40439 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40440 Date:   Tue Sep 30 20:08:36 2008 +0200
40442     move README.imx31 to doc/ and merge with README.mx31
40444     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40446 commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
40447 Author: Guennadi Liakhovetski <lg@denx.de>
40448 Date:   Thu Sep 25 20:54:37 2008 +0200
40450     i.MX31: switch to CFG_HZ=1000
40452     Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
40453     cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
40454     provides 2% or 0.4% precision depending on the
40455     CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
40456     boot-delay.
40458     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40460 commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
40461 Author: gnusercn <gnusercn@gmail.com>
40462 Date:   Wed Oct 8 18:58:58 2008 +0200
40464     Fix bug: in arch-arm, env_get_char dose not work fine
40466     due to the arm implementation which supposed that U-Boot is in RAM
40467     when we jump to start_armboot
40469     Signed-off-by: gnusercn <gnusercn@gmail.com>
40470     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40472 commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
40473 Author: Adam Graham <agraham@amcc.com>
40474 Date:   Mon Oct 6 10:16:13 2008 -0700
40476     ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
40478     After changing SDRAM_CLKTR phase value rerun the memory preload
40479     initialization sequence (INITPLR) to reset and relock the memory
40480     DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
40481     adjustment effects the phase relationship of the internal, to the
40482     PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
40484     Signed-off-by: Adam Graham <agraham@amcc.com>
40485     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
40486     Signed-off-by: Stefan Roese <sr@denx.de>
40488 commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
40489 Author: Haiying Wang <Haiying.Wang@freescale.com>
40490 Date:   Fri Oct 3 11:48:03 2008 -0400
40492     Remove redundant #define for MPC8536DS
40494     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
40496 commit 445a7b38308eb05b41de74165b20855db58c7ee5
40497 Author: Haiying Wang <Haiying.Wang@freescale.com>
40498 Date:   Fri Oct 3 11:47:30 2008 -0400
40500     Add ID EEPROM support for MPC8572DS
40502     The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
40503     system information like mac addresses etc. This patch enables it.
40505     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
40507 commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
40508 Author: Haiying Wang <Haiying.Wang@freescale.com>
40509 Date:   Fri Oct 3 11:46:59 2008 -0400
40511     Minor fixes for I2C address on MPC8572DS
40513     MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
40514     according to the board spec, and adds the 2nd i2c bus offset.
40516     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
40518 commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
40519 Author: Jason Jin <Jason.jin@freescale.com>
40520 Date:   Sat Sep 27 14:40:57 2008 +0800
40522     Fix the incorrect DDR clk freq reporting on 8536DS
40524     On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
40525     The display is still sync mode DDR freq. This patch try to fix
40526     this. The display DDR freq is now the actual freq in both
40527     sync and async mode.
40529     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
40531 commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
40532 Author: Kumar Gala <galak@kernel.crashing.org>
40533 Date:   Tue Oct 7 10:28:46 2008 -0500
40535     85xx: Remove setting of *cache-line-size in device trees
40537     ePAPR says if the *cache-block-size is the same as *cache-line-size
40538     than we don't need the *cache-line-size property.
40540     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40542 commit a69a42338dd25408f9fd5390a83bc501749c7e1b
40543 Author: Mark Jackson <mpfj@mimc.co.uk>
40544 Date:   Fri Oct 3 11:48:57 2008 +0100
40546     MIMC200 board now uses CONFIG_DISABLE_CONSOLE
40548     Changed MIMC200 board setup and config to use CONFIG_DISABLE_CONSOLE.
40549     Also fixed default uImage location.
40551     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
40552     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40554 commit cd3cb0d9269d155276b00207e3816a9347fd1c92
40555 Author: Gerald Van Baren <vanbaren@cideas.com>
40556 Date:   Sat Oct 4 07:56:06 2008 -0400
40558     libfdt: Fix error in documentation for fdt_get_alias_namelen()
40560     Oops, screwed up the function name in the documenting comment for this
40561     function.  Trivial correction in this patch.
40563     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
40564     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
40566 commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
40567 Author: David Gibson <david@gibson.dropbear.id.au>
40568 Date:   Wed Aug 20 16:55:14 2008 +1000
40570     libfdt: Add function to explicitly expand aliases
40572     Kumar has already added alias expansion to fdt_path_offset().
40573     However, in some circumstances it may be convenient for the user of
40574     libfdt to explicitly get the string expansion of an alias.  This patch
40575     adds a function to do this, fdt_get_alias(), and uses it to implement
40576     fdt_path_offset().
40578     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
40580 commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
40581 Author: Mike Frysinger <vapier@gentoo.org>
40582 Date:   Thu Oct 2 01:55:38 2008 -0400
40584     cfi_flash: do not reset flash when probe fails
40586     The CFI flash driver starts at flash_init() which calls down into
40587     flash_get_size().  This starts by calling flash_detect_cfi().  If said
40588     function fails, flash_get_size() finishes by attempting to reset the
40589     flash.  Unfortunately, it does this with an info->portwidth set to 0x10
40590     which filters down into flash_make_cmd() and that happily smashes the
40591     stack by sticking info->portwidth bytes into a cfiword_t variable that
40592     lives on the stack.  On a 64bit system you probably won't notice, but
40593     killing the last 8 bytes on a 32bit system usually leads to a corrupt
40594     return address.  Which is what happens on a Blackfin system.
40596     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
40597     Signed-off-by: Stefan Roese <sr@denx.de>
40599 commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
40600 Author: Stefan Roese <sr@denx.de>
40601 Date:   Fri Sep 26 17:03:26 2008 +0200
40603     fdt: Overwrite /chosen node in bootm if it already exists in the dtb
40605     Set force parameter in fdt_chosen() call in do_bootm_linux() call.
40606     Without this, the chosen node is not overwritten if it already
40607     exists.
40609     Signed-off-by: Stefan Roese <sr@denx.de>
40611 commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
40612 Author: Jon Loeliger <jdl@freescale.com>
40613 Date:   Thu Sep 25 11:02:17 2008 -0500
40615     Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
40617     Using Gcc 4.3 detected this problem:
40619         ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
40620         ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
40621         occur when assuming that (X + c) < X is always false
40623     To fix the problem, treat the offset as an unsigned int.
40625     The problem report and proposed fix were provided
40626     by Steve Papacharalambous <stevep@freescale.com>.
40628     Signed-off-by: Jon Loeliger <jdl@freescale.com>
40630 commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
40631 Author: David Gibson <david@gibson.dropbear.id.au>
40632 Date:   Fri Aug 29 14:19:13 2008 +1000
40634     libfdt: Fix bugs in fdt_get_path()
40636     The current implementation of fdt_get_path() has a couple of bugs,
40637     fixed by this patch.
40639     First, contrary to its documentation, on success it returns the length
40640     of the node's path, rather than 0.  The testcase is correspondingly
40641     wrong, and the patch fixes this as well.
40643     Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
40644     instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
40645     Specifically this happens when there is insufficient space even to
40646     hold the path's second last component.  This behaviour is corrected,
40647     and the testcase updated to check it.
40649     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
40651 commit 33af3e6656e84660d397b5dd95abab2dccc36f83
40652 Author: Wolfgang Denk <wd@denx.de>
40653 Date:   Wed Oct 1 12:34:58 2008 +0200
40655     TQM5200: enable support for ATAPI devices
40657     Signed-off-by: Wolfgang Denk <wd@denx.de>
40659 commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
40660 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40661 Date:   Mon Sep 15 05:48:25 2008 +0200
40663     Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
40665     we need this due to the arm implementation which supposed that U-Boot
40666     is in RAM when we jump to start_armboot
40668     This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
40669     in order to do it for all arm board
40671     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40673 commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
40674 Author: Kim Phillips <kim.phillips@freescale.com>
40675 Date:   Wed Sep 24 08:46:25 2008 -0500
40677     mpc83xx: don't disable autoboot
40679     bootdelay set to -1 'permanently' disables autobooting, even if
40680     bootcmd is specified.  Change to a positive value to allow
40681     autobooting when a bootcmd is set.
40683     Reported-by: Coray Tate <Coray.Tate@freescale.com>
40684     Cc: Scott Wood <scottwood@freescale.com>
40685     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40687 commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
40688 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40689 Date:   Wed Sep 24 10:42:15 2008 +0900
40691     mpc83xx: Fix typo in include/mpc83xx.h
40693     Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
40695     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40696     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40698 commit 162c41c03179727a1d14262f703c9a8bc40231fa
40699 Author: Kim Phillips <kim.phillips@freescale.com>
40700 Date:   Tue Sep 23 09:38:49 2008 -0500
40702     mpc83xx: add h/w flash protection to board configs
40704     the operating system may leave flash in a h/w locked state after writing.
40705     This allows u-boot to continue to write flash by enabling h/w unlocking
40706     by default.
40708     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40710 commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
40711 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
40712 Date:   Thu Sep 11 21:35:36 2008 +0400
40714     mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
40716     The spd_dram code shifts the base address, then masks 20 bits, but
40717     forgets to shift the base address back. Fix this by just masking the
40718     base address correctly.
40720     Found this bug while trying to relocate a DDR memory at the base != 0.
40722     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
40723     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40725 commit 8fd4166c467a46773f80208bda1ec3b4757747bc
40726 Author: Stefan Roese <sr@denx.de>
40727 Date:   Mon Sep 22 16:10:43 2008 +0200
40729     ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
40731     Depending on the configuration jumper "SATA SELECT", U-Boot disabled
40732     either one PCIe node or the SATA node in the device tree blob. This
40733     patch removes the unnecessary and even confusing warning, when the node
40734     is not found at all.
40736     Signed-off-by: Stefan Roese <sr@denx.de>
40738 commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
40739 Author: Remy Bohmer <linux@bohmer.net>
40740 Date:   Fri Sep 19 13:30:06 2008 +0200
40742     Add missing device types to dev_print() in part.c
40744     Signed-off-by: Remy Bohmer <linux@bohmer.net>
40746 commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
40747 Author: Wolfgang Denk <wd@denx.de>
40748 Date:   Mon Sep 22 22:23:06 2008 +0200
40750     Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
40751     eventually leads to a machine check. This change assures that DPRAM
40752     is allocated only once in that case.
40754     Signed-off-by: Gary Jennejohn <garyj@denx.de>
40755     Signed-off-by: Wolfgang Denk <wd@denx.de>
40757 commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
40758 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
40759 Date:   Wed Sep 17 17:57:34 2008 +0200
40761     Fix Spartan-3 definitions.
40763     A few Spartan-3 definitions erroneously use Spartan-3E size
40764     constants. This patch fixes them.
40766     Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
40768 commit 28113e1f0da4146b823ffce37680d31d5685a60b
40769 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
40770 Date:   Wed Sep 17 17:41:58 2008 +0200
40772     Remove duplicate Spartan-3E definition.
40774     Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
40775     Signed-off-by: Wolfgang Denk <wd@denx.de>
40777 commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
40778 Author: Anatolij Gustschin <agust@denx.de>
40779 Date:   Wed Sep 17 13:46:17 2008 +0200
40781     socrates: change default mtest address range
40783     Running mtest command on socrates without specifying
40784     an address range crashes the board. This patch changes
40785     default mtest address range to prevent this behavior.
40787     Signed-off-by: Anatolij Gustschin <agust@denx.de>
40789 commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
40790 Author: Anatolij Gustschin <agust@denx.de>
40791 Date:   Wed Sep 17 12:34:45 2008 +0200
40793     socrates: fix crash after relocation
40795     Currently U-Boot crashes after relocation to RAM.
40796     Changing the CPO value of the DDR SDRAM TIMING_CFG_2
40797     register to READ_LAT + 1 (to the value it was before
40798     conversion of socrates to new DDR code) fixes the
40799     problem.
40801     Signed-off-by: Anatolij Gustschin <agust@denx.de>
40803 commit 562788b0a303f3528b920d81f547f5ca77ba528e
40804 Author: Anatolij Gustschin <agust@denx.de>
40805 Date:   Wed Sep 17 11:45:51 2008 +0200
40807     socrates: fix SPD EEPROM address
40809     Commit be0bd8234b9777ecd63c4c686f72af070d886517
40810     changed SPD EEPROM address to 0x51 and DDR SDRAM
40811     detection stopped working. Change this address
40812     back to 0x50.
40814     Signed-off-by: Anatolij Gustschin <agust@denx.de>
40816 commit 023824549a370bd185d7129d9a6c86f9be7b86a8
40817 Author: Stefan Roese <sr@denx.de>
40818 Date:   Mon Sep 22 11:06:50 2008 +0200
40820     Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
40822     This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
40824     Signed-off-by: Stefan Roese <sr@denx.de>
40826 commit e58c41e26cf3c8accd60311be579f452e368e97e
40827 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40828 Date:   Thu Sep 18 20:13:08 2008 +0900
40830     usb: Fix compile warning of r8a66597-hcd
40832     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40833     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
40835 commit b5d10a13525c07ec6374adf840d7c87553b5f189
40836 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40837 Date:   Thu Sep 18 19:34:36 2008 +0900
40839     sh: Fix compile warning
40841     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40843 commit 4a065abf926f128beb36d93449defa0d690e7fef
40844 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40845 Date:   Thu Sep 18 19:04:26 2008 +0900
40847     sh: Add support watchdog for SH4A core
40849     Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
40850     And fix some compile warning.
40852     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40854 commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
40855 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40856 Date:   Wed Sep 17 11:45:26 2008 +0900
40858     sh: Fix typo in SH serial driver
40860     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40861     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40863 commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
40864 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40865 Date:   Wed Sep 17 11:08:36 2008 +0900
40867     sh: Add support any page size and empty_zero_page to SH Linux uImage
40869     Old U-Boot supported 4KB page size only. If this version, Linux
40870     kernel can not get command line from U-Boot.
40871     SH Linux kernel can change page size and empty_zero_page.
40872     This patch support this function and fix promlem.
40874     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40875     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40877 commit ce9f99ddb59628f41dc534e892368a7d66dfc774
40878 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40879 Date:   Thu Aug 28 13:40:52 2008 +0900
40881     sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
40883     Add function of smc911x, pkt_data_pull and pkt_data_push.
40885     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40886     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
40888 commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
40889 Author: Wolfgang Denk <wd@denx.de>
40890 Date:   Thu Sep 18 13:57:32 2008 +0200
40892     ADS5121: fix typo in "rootpath" default setting
40894     Signed-off-by: Wolfgang Denk <wd@denx.de>
40896 commit c9e8436b10cca53fca4904ecbadcd6231ad72c38
40897 Author: Remy Bohmer <linux@bohmer.net>
40898 Date:   Tue Sep 16 14:55:44 2008 +0200
40900     USB layer of U-Boot causes USB protocol errors while using USB memory sticks
40902     There are several differences between Linux, Windows and U-boot for initialising the
40903     USB devices. While analysing the behaviour of U-boot it turned out that U-boot does
40904     things really different, and some are wrong (compared to the USB standard).
40906     This patch fixes some errors:
40907     * The NEW_init procedure that was already in the code is good, while the old procedure
40908       is wrong. See code comments for more info.
40909     * On a Control request the data returned by the device can be more than 8 bytes, while
40910       the host limits it to 8 bytes. This caused the host to generate a DataOverrun error.
40911       This results in a lot of USB sticks not being recognised, and the transmission ended
40912       frequently with a CTL:TIMEOUT Error.
40913     * Added a flag CONFIG_LEGACY_USB_INIT_SEQ to allow users to use the old init procedure.
40915     Signed-off-by: Remy Bohmer <linux@bohmer.net>
40916     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
40918 commit 6f5794a6f78b313231256958fd73673c6aacc116
40919 Author: Remy Bohmer <linux@bohmer.net>
40920 Date:   Tue Sep 16 14:55:43 2008 +0200
40922     Refactoring parts of the common USB OHCI code
40924     This patch refactors some large routines of the USB OHCI code by
40925     making some routines smaller and more readable which helps
40926     debugging and understanding the code. (Makes the code looks
40927     somewhat more like the Linux implementation.)
40929     Also made entire file compliant to Linux Coding Rules (checkpatch.pl compliant)
40931     Signed-off-by: Remy Bohmer <linux@bohmer.net>
40932     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
40934 commit be19d324edc1a1d7f393d24e10d164cd94c91a00
40935 Author: Remy Bohmer <linux@bohmer.net>
40936 Date:   Tue Sep 16 14:55:42 2008 +0200
40938     Fix for USB sticks not working on ARM while using GCC 4.x compilers
40940     The GCC-compiler makes an optimisation error while optimising the routine
40941     usb_set_maxpacket(). This should be fixed in the compiler in the first place,
40942     but there lots of compilers out there that makes this error, that it is
40943     probably wiser to workaround it in U-boot itself.
40945     What happens is that the register r3 is used as loop-counter 'i', but gets
40946     overwritten later on. From there it starts using register r3 for several other
40947     things and the assembler code is becoming a big mess. This is clearly a compiler bug.
40949     This error occurs on at least several versions of Code Sourcery Lite compilers
40950     for ARM. Like the Edition 2008q1, and 2008q3, It has also been seen on other
40951     compilers, while compiling for armv4t, or armv5te with Os, O1 and O2.
40953     We work around it by splitting up this routine in 2 parts, and making sure that
40954     the split out part is NOT inlined any longer. This will make GCC spit out assembler
40955     that do not show this problem. Another possibility is to adapt the Makefile to stop
40956     optimisation for the complete file. I think this solution is nicer.
40958     Signed-off-by: Remy Bohmer <linux@bohmer.net>
40959     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
40961 commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
40962 Author: Wolfgang Denk <wd@denx.de>
40963 Date:   Wed Sep 17 10:17:55 2008 +0200
40965     Coding style cleanup; update CHANEGLOG
40967     Signed-off-by: Wolfgang Denk <wd@denx.de>
40969 commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
40970 Author: Victor Gallardo <vgallardo@amcc.com>
40971 Date:   Tue Sep 16 06:59:13 2008 -0700
40973     ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
40975     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
40976     Signed-off-by: Adam Graham <agraham@amcc.com>
40977     Signed-off-by: Stefan Roese <sr@denx.de>
40979 commit ce47eb402c5e29a025399dc282246414fc492940
40980 Author: Peter Tyser <ptyser@xes-inc.com>
40981 Date:   Tue Sep 16 10:04:47 2008 -0500
40983     Support for multiple SGMII/TBI interfaces for TSEC ethernet
40985     Fix TBI PHY accesses to use the proper offset in CPU register space. The
40986     previous code would incorrectly access the TBI PHY by reading/writing to CPU
40987     register space at the same location as would be used to access external PHYs.
40989     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
40990     Acked-by: Andy Fleming <afleming@freescale.com>
40992 commit 7c803be2eb3cae245dedda438776e08fb122250f
40993 Author: Wolfgang Denk <wd@denx.de>
40994 Date:   Tue Sep 16 18:02:19 2008 +0200
40996     TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
40998     After switching to using the CFI flash driver, the correct remapping
40999     of the flash banks was forgotten.
41001     Also, some boards were not adapted, and the old legacy flash driver
41002     was not removed yet.
41004     Signed-off-by: Wolfgang Denk <wd@denx.de>
41006 commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
41007 Author: Wolfgang Denk <wd@denx.de>
41008 Date:   Sun Sep 14 00:59:35 2008 +0200
41010     Prepare v2008.10-rc2
41012     Signed-off-by: Wolfgang Denk <wd@denx.de>
41014 commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
41015 Author: Wolfgang Denk <wd@denx.de>
41016 Date:   Sat Sep 13 02:23:05 2008 +0200
41018     Coding style cleanup, update CHANGELOG
41020     Signed-off-by: Wolfgang Denk <wd@denx.de>
41022 commit 0c32565f536609d78feef35c88bbc39d3ac53a73
41023 Author: Peter Tyser <ptyser@xes-inc.com>
41024 Date:   Wed Sep 10 09:18:34 2008 -0500
41026     Update mailing list email and archive addresses
41028     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
41030 commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
41031 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
41032 Date:   Thu Sep 11 15:40:01 2008 +0200
41034     85xx: socrates: autoprobe Lime chip
41036     This patch is an attempt to implement autoprobing for the Lime
41037     presence on the bus.
41038     Configure GPCM for Lime CS2 and try to access chip ID registers.
41039     Second read atempt delivers register values if the chip is present.
41041     Signed-off-by: Anatolij Gustschin <agust@denx.de>
41043 commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
41044 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
41045 Date:   Thu Sep 11 15:40:01 2008 +0200
41047     85xx: socrates: Add support for new image format.
41049     Signed-off-by: Detlev Zundel <dzu@denx.de>
41051 commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
41052 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
41053 Date:   Thu Sep 11 17:28:18 2008 +0900
41055     sh: Fix compile error for r2dplus
41057     netdev.h was not include by r2dplus.
41059     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
41061 commit 56844a22b76c719e600047e23b80465a44d76abd
41062 Author: Heiko Schocher <hs@denx.de>
41063 Date:   Thu Sep 11 08:11:23 2008 +0200
41065     powerpc: Fix bootm to boot up again with a Ramdisk
41067     Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
41068     and this stopped Linux from booting with a Ramdisk. This patch fixes
41069     this, by deleting the useless dummy mem reservation.
41071     When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
41072     added to of_size, so we dont need anymore a dummy mem reservation.
41074     I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
41075     system (=0x44 bytes) and rounded it up to 0x80).
41077     Signed-off-by: Heiko Schocher <hs@denx.de>
41078     Acked-by: Kumar Gala <galak@kernel.crashing.org>
41080 commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
41081 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
41082 Date:   Mon Sep 8 02:46:13 2008 +0200
41084     Add support for LZMA uncompression algorithm.
41086     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
41087     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41089 commit 0008b6d968160abe2bfd936493f3a516a7c8da20
41090 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41091 Date:   Fri Jun 27 23:04:20 2008 +0400
41093     fsl_elbc_nand: ecclayout cleanups
41095     This patch deletes oobavail assignments, they're calculated by the nand
41096     core code in nand_scan_tail, plus current oobavail values are wrong for
41097     the LP NANDs.
41099     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41100     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
41101     Signed-off-by: Scott Wood <scottwood@freescale.com>
41103 commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
41104 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41105 Date:   Fri Jun 27 23:04:13 2008 +0400
41107     fsl_elbc_nand: implement support for flash-based BBT
41109     This patch implements support for flash-based BBT for chips working
41110     through ELBC NAND controller, so that NAND core will not have to re-scan
41111     for bad blocks on every boot.
41113     Because ELBC controller may provide HW-generated ECCs we should adjust
41114     bbt pattern and bbt version positions in the OOB free area.
41116     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41117     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
41118     Signed-off-by: Scott Wood <scottwood@freescale.com>
41120 commit 97ae023648e764f794ffb9c52da109d6caf09c47
41121 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41122 Date:   Fri Jun 27 23:04:04 2008 +0400
41124     fsl_elbc_nand: fix OOB workability for large page NAND chips
41126     For large page chips, nand_bbt is looking into OOB area, and checking
41127     for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
41128     reserved for bbt means.
41130     But ELBC driver is specifying ecclayout so that oobfree area starts at
41131     offset 1, so only one byte left for the bbt purposes.
41133     This causes problems with any OOB users, namely JFFS2: after first mount
41134     JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
41136       OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
41137       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
41138       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
41139       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
41141     And on the next boot, NAND core will rescan for bad blocks, then will
41142     see "0xff 0x19" pattern, and will mark all blocks as bad ones.
41144     To fix the issue we should implement our own bad block pattern: just one
41145     byte at OOB start. Though, this will work only for x8 chips. For x16
41146     chips two bytes must be checked. Since ELBC driver does not support x16
41147     NANDs (yet), we're safe for now.
41149     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41150     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
41151     Signed-off-by: Scott Wood <scottwood@freescale.com>
41153 commit 7238ada313057a85409485b8ee21515dc10c07a5
41154 Author: Wolfgang Denk <wd@denx.de>
41155 Date:   Fri Sep 12 13:52:21 2008 +0200
41157     MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
41159     Signed-off-by: Wolfgang Denk <wd@denx.de>
41161 commit b18410e508a12ba0a177dfc2a386857c806fa96d
41162 Author: Stefan Roese <sr@denx.de>
41163 Date:   Thu Sep 11 13:05:56 2008 +0200
41165     ppc4xx: Enable device tree (FDT) support in zeus board port
41167     Signed-off-by: Stefan Roese <sr@denx.de>
41169 commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
41170 Author: Stefan Roese <sr@denx.de>
41171 Date:   Wed Sep 10 16:53:47 2008 +0200
41173     ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
41175     This patch fixes a problem introdiced with patch
41176     bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
41177     initdram()].
41179     The boards affected are:
41180     - PCI405
41181     - PPChameleonEVB
41182     - quad100hd
41183     - taihu
41184     - zeus
41186     Signed-off-by: Stefan Roese <sr@denx.de>
41188 commit 61737c59a3285f6fadf96a5836879898c04ec28d
41189 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41190 Date:   Thu Sep 11 19:41:26 2008 -0400
41192     ppc4xx: Add .gitignore file to xilinx-ppc440 boards
41194     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41195     Signed-off-by: Stefan Roese <sr@denx.de>
41197 commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
41198 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41199 Date:   Thu Sep 11 19:41:25 2008 -0400
41201     ppc4xx: Fix compilation of v5fx30teval_flash
41203     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41204     Signed-off-by: Stefan Roese <sr@denx.de>
41206 commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
41207 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41208 Date:   Wed Sep 10 17:44:30 2008 -0400
41210     ppc4xx: Fix in-tree build for ppc440-generic boards
41212     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41213     Signed-off-by: Stefan Roese <sr@denx.de>
41215 commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
41216 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41217 Date:   Fri Sep 12 02:20:47 2008 +0200
41219     ARM: synchronize mach-types.h with linux 2.6.27-rc6
41221     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41223 commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
41224 Author: Jens Scharsig <esw@bus-elektronik.de>
41225 Date:   Fri Sep 12 02:20:47 2008 +0200
41227     at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
41229     This patch prevents linker error on AT91RM9200 boards, if
41230     CONFIG_CMD_I2_TREE is set.
41231     It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
41233     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
41235 commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
41236 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41237 Date:   Fri Sep 12 02:20:47 2008 +0200
41239     ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
41241     ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
41243     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41245 commit 03db53335c8eba656a7c44d1555b1a4514383e33
41246 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
41247 Date:   Fri Sep 12 02:20:46 2008 +0200
41249     make: Remove redundant __ARM__ addition when cross-compiling on *BSD
41251     __ARM__ is given by arm_config.mk automatically.
41253     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
41255 commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
41256 Author: Claudio Scordino <claudio@evidence.eu.com>
41257 Date:   Fri Sep 12 02:20:46 2008 +0200
41259     Fix MACH_TYPE for the AT91RM9200DK board.
41261     Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
41263 commit 274737e5eb25b2bcd3af3a96da923effd543284f
41264 Author: Andrew Dyer <adyer@righthandtech.com>
41265 Date:   Fri Sep 12 02:20:46 2008 +0200
41267     i.mx change get_timer(base) to return time since base
41269     This patch changes get_timer() for i.MX to return the time since
41270     'base' instead of the time since the counter was at zero.
41272     Symptom seen is flash timeout errors when erasing or programming a
41273     sector using the common cfi flash code.
41275     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
41277 commit 48fed40575b3e8eae960eb0141509ddd9a73012a
41278 Author: Andrew Dyer <adyer@righthandtech.com>
41279 Date:   Fri Sep 12 02:20:46 2008 +0200
41281     i.MX use u-boot baud rate and don't assume UART master clock
41283     1) Change the i.MX serial driver to use the baud rate set in the
41284      u-boot environment
41286     2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
41288     3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
41289      one to clear" like other status bits in the reg.)
41291     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
41293 commit 6e1551a870d360805b9d172dc56d935064abe71d
41294 Author: Andrew Dyer <adyer@righthandtech.com>
41295 Date:   Fri Sep 12 02:20:46 2008 +0200
41297     arm920t fix constant error in start.S
41299     Code in cpu/arm920t/start.S will die with a compilation error if
41300     CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
41301     the ARM sub instruction.  Change the code so that each is subtracted
41302     independently to avoid the error.
41304     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
41306 commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
41307 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
41308 Date:   Fri Sep 12 02:20:40 2008 +0200
41310     ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
41312     - Correct Invalid #define of MPUTIM_PTV_MASK for
41313        omap1510 & omap730 register definition
41315      MPUTIM_PTV_MASK is defined as
41316      #define MPUTIM_PTV_MASK            (0x7<<PTV_BIT)
41318      while it should have been
41319      #define MPUTIM_PTV_MASK            (0x7<<MPUTIM_PTV_BIT)
41321     - Below Patch corrects the same
41323     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
41325 commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
41326 Author: Adrian Filipi <adrian.filipi@eurotech.com>
41327 Date:   Fri Jul 18 11:52:02 2008 -0400
41329     Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
41331     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
41333 commit eb16135df20535b0d19969f50fb5bd17f95e9c25
41334 Author: Guennadi Liakhovetski <lg@denx.de>
41335 Date:   Thu Aug 28 12:25:11 2008 +0200
41337     i.MX31: document timer precision option
41339     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
41341 commit 1a6337b01351b82a45b0defa76f08744511c580b
41342 Author: Magnus Lilja <lilja.magnus@gmail.com>
41343 Date:   Fri Aug 29 10:36:18 2008 +0200
41345     i.MX31: Make the SPI bus and chip select configurable for MC13783
41347     The i.MX31 has three SPI buses and each bus has several chip selects
41348     and the MC13783 chip can be connected to any of these. The current
41349     RTC driver for MC13783 is hardcoded for CSPI2/SS2.
41351     This patch makes make MC13783 SPI bus and chip select configurable
41352     via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
41354     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
41356 commit 8c4ebec25b21e355b8488698ec1594da9701fff4
41357 Author: Magnus Lilja <lilja.magnus@gmail.com>
41358 Date:   Fri Aug 29 10:36:17 2008 +0200
41360     i.MX31: Add reset_timer() and modify get_timer_masked().
41362     This patch adds the reset_timer() function (needed by nand_base.c) and
41363     modifies the get_timer_masked() to work in the same way as the omap24xx
41364     function.
41366     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
41368 commit deeec4991a55de243787002ede24d2331d234fc8
41369 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41370 Date:   Wed Sep 10 22:48:09 2008 +0200
41372     ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
41374     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41376 commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
41377 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41378 Date:   Wed Sep 10 22:48:09 2008 +0200
41380     bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
41382     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41384 commit 0e8d158664a913392cb01fb11a948d83f72e105e
41385 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41386 Date:   Wed Sep 10 22:48:06 2008 +0200
41388     rename CFG_ENV macros to CONFIG_ENV
41390     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41392 commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
41393 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41394 Date:   Wed Sep 10 22:48:05 2008 +0200
41396     nvedit: rename error comment to CONFIG_ENV_IS_IN_
41398     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41400 commit b64b775e7546ed138df360ceb3a71ee358cb9a01
41401 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41402 Date:   Wed Sep 10 22:48:05 2008 +0200
41404     cmd_mem: Move conditional compilation to Makefile
41406     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41408 commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
41409 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41410 Date:   Wed Sep 10 22:48:05 2008 +0200
41412     move cmd_get_data_size to command.c
41414     add CMD_DATA_SIZE macro to enable it
41416     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41418 commit 507641d2491980531932b9f25dab37fe5e6c3a1a
41419 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41420 Date:   Wed Sep 10 22:48:04 2008 +0200
41422     env_flash: Move conditional compilation to Makefile
41424     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41426 commit 5a1aceb0689e2f731491838970884a673ef7e7d3
41427 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41428 Date:   Wed Sep 10 22:48:04 2008 +0200
41430     rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
41432     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41434 commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
41435 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41436 Date:   Wed Sep 10 22:48:03 2008 +0200
41438     cleanup use of CFG_ENV_IS_IN_FLASH
41440     - #if CFG_ENV_IS_IN_FLASH
41441     - #if (CFG_ENV_IS_IN_FLASH == 1)
41442     - #define CFG_ENV_IS_IN_FLASH 0
41444     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41446 commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
41447 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41448 Date:   Wed Sep 10 22:48:01 2008 +0200
41450     rename environment.c in env_embedded.c to reflect is functionality
41452     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41454 commit c0878af6e32f0fd8e13a6ca315b9add64441115a
41455 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41456 Date:   Wed Sep 10 22:48:01 2008 +0200
41458     env_nowhere: Move conditional compilation to Makefile
41460     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41462 commit 93f6d72544da4510a146bc4c93d609b0116cde37
41463 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41464 Date:   Wed Sep 10 22:48:00 2008 +0200
41466     rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
41468     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41470 commit 2556ef78113b5f089dfcac5da90bf31dd568397b
41471 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41472 Date:   Wed Sep 10 22:48:00 2008 +0200
41474     env_sf: Move conditional compilation to Makefile
41476     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41478 commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
41479 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41480 Date:   Wed Sep 10 22:48:00 2008 +0200
41482     rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
41484     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41486 commit 55c5f49910ec8225347aa1d211352a84de6649b4
41487 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41488 Date:   Wed Sep 10 22:48:00 2008 +0200
41490     env_onenand: Move conditional compilation to Makefile
41492     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41494 commit 9656138ff1a34d4c4768db6b490deffc40ee674b
41495 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41496 Date:   Wed Sep 10 22:47:59 2008 +0200
41498     rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
41500     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41502 commit 957a0e69575683efd70ace147746bbb3d8e7c501
41503 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41504 Date:   Wed Sep 10 22:47:59 2008 +0200
41506     env_nvram: Move conditional compilation to Makefile
41508     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41510 commit 9314cee6917444ab88bd4e758da7a30975120187
41511 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41512 Date:   Wed Sep 10 22:47:59 2008 +0200
41514     rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
41516     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41518 commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
41519 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41520 Date:   Wed Sep 10 22:47:59 2008 +0200
41522     env_nand: Move conditional compilation to Makefile
41524     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41526 commit 51bfee192099206a4397f15f3b93516e01f58ab0
41527 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41528 Date:   Wed Sep 10 22:47:58 2008 +0200
41530     rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
41532     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41534 commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
41535 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41536 Date:   Wed Sep 10 22:47:58 2008 +0200
41538     env_dataflash: Move conditional compilation to Makefile
41540     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41542 commit 057c849c45b9ee19df8ff3acdeee66be52819962
41543 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41544 Date:   Wed Sep 10 22:47:58 2008 +0200
41546     rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
41548     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41550 commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
41551 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41552 Date:   Wed Sep 10 22:47:52 2008 +0200
41554     cmd_eeprom: Move conditional compilation to Makefile
41556     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41558 commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
41559 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41560 Date:   Fri Sep 5 09:19:54 2008 +0200
41562     env_eeprom: Move conditional compilation to Makefile
41564     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41566 commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
41567 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41568 Date:   Fri Sep 5 09:19:30 2008 +0200
41570     rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
41572     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41574 commit 32628c5008105a732212003d83b75f05e5243bb2
41575 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41576 Date:   Sat Aug 30 23:54:58 2008 +0200
41578     cmd_mac: Move conditional compilation to Makefile
41580     finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
41581     start in commit ad8f8687b78c3e917b173f038926695383c55555
41583     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41585 commit e5648acab153f0f429bfc714902c5aaa7879f71b
41586 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41587 Date:   Sat Aug 30 23:47:41 2008 +0200
41589     cmd_fdc: Move conditional compilation to Makefile
41591     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41593 commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
41594 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41595 Date:   Sat Aug 30 23:47:38 2008 +0200
41597     common/Makefile: add core command section
41599     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41601 commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
41602 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41603 Date:   Sat Aug 30 23:29:57 2008 +0200
41605     cmd_vfd: Move conditional compilation to Makefile
41607     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41609 commit 6644641d072aee3087da129d8443187196a4d8a9
41610 Author: Scott Wood <scottwood@freescale.com>
41611 Date:   Wed Sep 10 11:48:49 2008 -0500
41613     delta, zylonite: Update nand_oobinfo to nand_ecclayout.
41615     This is part of the switch to newer upstream MTD code.
41617     Signed-off-by: Scott Wood <scottwood@freescale.com>
41619 commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
41620 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41621 Date:   Sat Aug 30 17:06:55 2008 -0400
41623     ARM DaVinci: Fix broken HW ECC for large page NAND.
41625     Based on original patch by Bernard Blackham <bernard@largestprime.net>
41627     U-boot's HW ECC support for large page NAND on Davinci is completely
41628     broken.  Some kernels, such as the 2.6.10 one supported by
41629     MontaVista for DaVinci, rely upon this broken behaviour as they
41630     share the same code for ECCs. In the existing scheme, error
41631     detection *might* work on large page, but error correction
41632     definitely does not.  Small page ECC correction works, but the
41633     format is not compatible with the mainline git kernel.
41635     This patch adds ECC code that matches what is currently in the
41636     Davinci git repository (since NAND support was added in 2.6.24).
41637     This makes the ECC and OOB layout written by u-boot compatible with
41638     Linux for both small page and large page devices and fixes ECC
41639     correction for large page devices.
41641     The old behaviour can be restored by defining the macro
41642     CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
41644     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41645     Acked-by: Sergey Kubushyn <ksi@koi8.net>
41646     Signed-off-by: Scott Wood <scottwood@freescale.com>
41648 commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
41649 Author: Heiko Schocher <hs@denx.de>
41650 Date:   Wed Sep 10 11:15:28 2008 +0200
41652     muas3001: update BR4 settings
41654     Also set up the port pins for using I2C.
41656     Signed-off-by: Heiko Schocher <hs@denx.de>
41658 commit 3591293509e0c0bcf244b0f974775bff2e25697e
41659 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
41660 Date:   Wed Sep 10 09:43:49 2008 +0300
41662     autoscr: Fix one-character lines and non-newline terminated scripts
41664     When not using hush, the autoscr command now executes lines that are
41665     only one character long. It also runs the last line of scripts even if
41666     it does not end in a newline.
41668     Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
41670 commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
41671 Author: Victor Gallardo <vgallardo@amcc.com>
41672 Date:   Tue Sep 9 15:13:29 2008 -0700
41674     ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
41676     On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
41677     and glacier.
41679     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
41681 commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
41682 Author: Heiko Schocher <hs@denx.de>
41683 Date:   Mon Sep 8 10:21:11 2008 +0200
41685     muas3001: added support for the LM75 sensor.
41687     Signed-off-by: Heiko Schocher <hs@denx.de>
41689 commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
41690 Author: Heiko Schocher <hs@denx.de>
41691 Date:   Mon Sep 8 10:20:19 2008 +0200
41693     muas3001: activate WDT for the muas3001 board.
41695     Signed-off-by: Heiko Schocher <hs@denx.de>
41697 commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
41698 Author: Heiko Schocher <hs@denx.de>
41699 Date:   Mon Sep 8 10:19:36 2008 +0200
41701     muas3001: added 64MB SDRAM autodetection.
41703     Signed-off-by: Heiko Schocher <hs@denx.de>
41705 commit 5251469943895de4bb9a04d5053352cc22acb7d5
41706 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
41707 Date:   Thu Aug 21 07:12:26 2008 -0700
41709     Fix printf errors under -DDEBUG
41711     Fix printf format-string/arg mismatches under -DDEBUG.
41713     These warnings occur with DEBUG defined for a platform using
41714     cpu/mpc85xx.  Users of other architectures can unearth similar
41715     problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
41716     after "CFLAGS += $(call cc-option,-fno-stack-protector)".
41718     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
41719     Signed-off-by: Andy Fleming <afleming@freescale.com>
41721 commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
41722 Author: Wolfgang Denk <wd@denx.de>
41723 Date:   Tue Sep 9 23:55:18 2008 +0200
41725     Update CHANGELOG, prepare 2008-10-rc1 release
41727     Signed-off-by: Wolfgang Denk <wd@denx.de>
41729 commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
41730 Author: Kumar Gala <galak@kernel.crashing.org>
41731 Date:   Mon Sep 8 08:51:29 2008 -0500
41733     85xx: Ensure timebase is zero on secondary cores
41735     The e500um says the timebase is volatile out of reset.  To ensure
41736     TB sync works we need to make sure its zero.
41738     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41740 commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
41741 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41742 Date:   Tue Sep 9 22:18:24 2008 +0200
41744     bootm_load_os: fix load_end debug message
41746     print load_end value not pointer
41748     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41750 commit 1d9af0be764960e6cc1c093e97176c3542796820
41751 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41752 Date:   Tue Sep 9 22:18:23 2008 +0200
41754     bootm: enable fdt support only on ppc, m68k and sparc
41756     ...as done in image.c
41758     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41760 commit 748b5274e76f81df85cfcffaffedc323678d0623
41761 Author: Markus Heidelberg <markus.heidelberg@web.de>
41762 Date:   Tue Sep 9 18:51:05 2008 +0200
41764     common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
41766     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
41768 commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
41769 Author: Markus Heidelberg <markus.heidelberg@web.de>
41770 Date:   Tue Sep 9 17:31:46 2008 +0200
41772     gitignore: add tags files and Vim swap file
41774     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
41776 commit 1d9b67b23fca6a25154333733204339802510720
41777 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
41778 Date:   Tue Sep 9 17:52:47 2008 +0900
41780     add board_eth_init() for sh7785lcr board
41782     Fix the problem that cannot work RTL8169 on sh7785lcr board.
41784     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
41786 commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
41787 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41788 Date:   Wed Aug 6 16:08:41 2008 -0500
41790     mtd: SPI Flash: Support the STMicro Flash
41792     Add MTD SPI Flash support for M25P16, M25P20, M25P32,
41793     M25P40, M25P64, M25P80, M25P128.
41795     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
41796     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41798 commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
41799 Author: Wolfgang Denk <wd@denx.de>
41800 Date:   Tue Sep 9 17:55:31 2008 +0200
41802     trab: fix build problem after change to use do_div()
41804     We must link with libgeneric now.
41806     Signed-off-by: Wolfgang Denk <wd@denx.de>
41808 commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
41809 Author: Ryan CHEN <ryan.chen@st.com>
41810 Date:   Wed Aug 20 13:00:17 2008 -0400
41812     Correct drv_usb_kbd_init function
41814     The patch is that check if usb_get_dev_index() function return valid
41815     pointer. If valid, continue. Otherwise return -1.
41817     Signed-off-by: Ryan Chen <ryan.chen@st.com>
41818     Acked-by: Markus Klotzbuecher <mk@denx.de>
41820 commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
41821 Author: Remy Bohmer <linux@bohmer.net>
41822 Date:   Wed Aug 20 11:22:02 2008 +0200
41824     Make usb-stop() safe to call multiple times in a row.
41826     A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
41827     enabled the usb_stop() command in common/cmd_bootm.c which was
41828     not enabled for some time, because no board did actually set the
41829     CFG_CMD_USB flag. So, now the usb_stop() is executed before
41830     loading the linux kernel.
41832     However, the usb_ohci driver hangs up (at least on AT91SAM) if the
41833     driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
41834     If some other piece of code calls usb_stop() before the bootm command,
41835     this command will hangup the system during boot.
41836     (usb start and stop is typically used while booting from usb memory stick)
41838     But, stopping the usb stack twice is useless anyway, and a flag already
41839     existed that kept track on the usb_init()/usb_stop() calls.
41840     So, we now check if the usb stack is really started before we stop it.
41842     This problem is now fixed in both the upper as low-level layer.
41844     Signed-off-by: Remy Bohmer <linux@bohmer.net>
41845     Acked-by: Markus Klotzbuecher <mk@denx.de>
41847 commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
41848 Author: Wolfgang Denk <wd@denx.de>
41849 Date:   Tue Sep 9 16:55:47 2008 +0200
41851     Makefile: fix bug introduced by commit 47ffd6c2
41853 commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
41854 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41855 Date:   Tue Sep 9 10:00:33 2008 -0400
41857     ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
41859     This patch solves the problems compiling ml507, v5fx30teval and
41860     ppc440-generic out of tree.
41862     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41864 commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
41865 Author: Nícolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
41866 Date:   Thu Sep 4 15:35:46 2008 -0300
41868     Fix dev_print when called from usb_stor_info (usb storage command)
41870     Fix output of the usb storage command. It was printing "Device 0: not
41871     available" because IF_TYPE_USB was not included into the switch
41872     statement.
41874     Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
41876 commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
41877 Author: Bartlomiej Sieka <tur@semihalf.com>
41878 Date:   Tue Sep 9 12:58:16 2008 +0200
41880     FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
41882     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
41884 commit 919f550dc11a13abf01c6bc713c968de790b8d7c
41885 Author: Bartlomiej Sieka <tur@semihalf.com>
41886 Date:   Tue Sep 9 12:58:15 2008 +0200
41888     FIT: add ability to check hashes of all images in FIT, improve output
41890     - add function fit_all_image_check_hashes() that verifies if all
41891       hashes of all images in the FIT are valid
41892     - improve output of fit_image_check_hashes() when the hash check fails
41894     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
41896 commit 1de1fa408967cef6804bb046b904114519bb36f0
41897 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41898 Date:   Mon Sep 8 20:54:39 2008 +0200
41900     qemu_mips: Update linux bootm to support dynamic cmdline
41902     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41904 commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
41905 Author: Peter Tyser <ptyser@xes-inc.com>
41906 Date:   Mon Sep 8 14:56:49 2008 -0500
41908     Add support for booting of INTEGRITY operating system uImages
41910     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
41912 commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
41913 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41914 Date:   Mon Sep 8 21:01:29 2008 +0200
41916     mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
41918     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41920 commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
41921 Author: Kumar Gala <galak@kernel.crashing.org>
41922 Date:   Mon Sep 8 13:57:12 2008 -0500
41924     Remove support for booting ARTOS images
41926     Pantelis Antoniou stated:
41927         AFAIK, it is still used but the products using PPC are long gone.
41928         Nuke it plz (from orbit).
41930     So remove it since it cleans up a usage of env_get_char outside of
41931     the environment code.
41933     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41935 commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
41936 Author: Wolfgang Denk <wd@denx.de>
41937 Date:   Tue Sep 9 15:45:18 2008 +0200
41939     Makefile: compile and link each module just once
41941     Several source files need to be compiled and linked when one or more
41942     config options are selected. To allow for easy selection in the
41943     Makefiles yet to avoild multiple compilation (which costs build time)
41944     and especially multiple linking (which causes errors), we use
41945     "COBJS = $(sort COBJS-y)" which eliminates duplicates.
41947     By courtesy of Detlev Zundel who suggested this approach.
41949     Signed-off-by: Wolfgang Denk <wd@denx.de>
41951 commit 48d0192fe869948fef14b460b5f0c85bca933693
41952 Author: Andreas Engel <andreas.engel@ericsson.com>
41953 Date:   Mon Sep 8 14:30:53 2008 +0200
41955     Moved conditional compile into Makefile
41957     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
41959 commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
41960 Author: Andreas Engel <andreas.engel@ericsson.com>
41961 Date:   Mon Sep 8 10:17:31 2008 +0200
41963     Merged serial_pl010.c and serial_pl011.c.
41965     They only differ in the init function.
41966     This also adds the missing watchdog support for the PL011.
41968     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
41970 commit 0817d688f307ee2c0598e79175c94a40ce90337b
41971 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41972 Date:   Sun Sep 7 17:10:27 2008 -0400
41974     Remove gap fill in srec object v2
41976     SREC files do not need gap fill: The load address is specified in the
41977     file. On the other hand, it can't be avoided in a .bin object. It has
41978     no information about memory location.
41980     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41982 commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
41983 Author: Markus Heidelberg <markus.heidelberg@web.de>
41984 Date:   Sun Sep 7 20:18:27 2008 +0200
41986     README: fix missing subdirectory in the documentation
41988     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
41990 commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
41991 Author: Graeme Russ <graeme.russ@gmail.com>
41992 Date:   Sun Sep 7 07:08:42 2008 +1000
41994     Update i386 code (sc520_cdp)
41996     Attempt to bring i386 / sc520 inline with master
41998     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
42000 commit 5608692104efa8d56df803dc79ea41ac3607eee5
42001 Author: Guennadi Liakhovetski <lg@denx.de>
42002 Date:   Thu Sep 4 13:01:49 2008 +0200
42004     fw_env: add NAND support
42006     Add support for environment in NAND with automatic NOR / NAND recognition,
42007     including unaligned environment, bad-block skipping, redundant environment
42008     copy.
42010     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
42012 commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
42013 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42014 Date:   Tue Sep 9 09:50:24 2008 +0200
42016     ppc4xx: Fix out-of-tree building of CPCI405 variants
42018     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42019     Acked-by: Stefan Roese <sr@denx.de>
42021 commit 59f630588e3fdbd698a0a2798e52a8924e899563
42022 Author: Sergei Poselenov <sposelenov@emcraft.com>
42023 Date:   Fri Aug 15 15:42:11 2008 +0200
42025     Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
42027     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
42029 commit e64987a892353f3d49eb242d997820ef8f538912
42030 Author: Anatolij Gustschin <agust@denx.de>
42031 Date:   Fri Aug 15 15:42:13 2008 +0200
42033     85xx: socrates: Enable Lime support.
42035     This patch adds Lime GDC support together with support for the PWM
42036     backlight control through the w83782d chip.  The reset pin of the
42037     latter is attached to GPIO, so we need to reset it in
42038     early_board_init_r.
42040     Signed-off-by: Anatolij Gustschin <agust@denx.de>
42042 commit 3e79b588b5199f35016f178fc0d5d1266382097f
42043 Author: Detlev Zundel <dzu@denx.de>
42044 Date:   Fri Aug 15 15:42:12 2008 +0200
42046     85xx: Socrates: Major code update.
42048     - Update the local bus ranges in the FDT for Linux for the various
42049       devices connected to the local bus via chip-select.
42051     - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
42052       lower than 66 MHz and uses I/O accessor functions consequently.
42054     - UPM data update.
42056     - Update of default environment and configuration.  Use I2C multibus
42057       as we do have two I2C buses.  Also enable sdram and ext2 commands.
42059     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
42060     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
42061     Signed-off-by: Detlev Zundel <dzu@denx.de>
42063 commit e8d18541c6ceab821f75faab031740b33fdbfa4b
42064 Author: Timur Tabi <timur@freescale.com>
42065 Date:   Fri Jul 18 16:52:23 2008 +0200
42067     Update Freescale 85xx boards to sys_eeprom.c
42069     The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
42070     format, and so it obsoletes board/freescale/common/cds_eeprom.c.  Freescale
42071     86xx boards already use sys_eeprom.c, so this patch migrates the remaining
42072     Freescale 85xx boards to use it as well.  cds_eeprom.c is deleted.
42074     Signed-off-by: Timur Tabi <timur@freescale.com>
42076 commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
42077 Author: Wolfgang Denk <wd@denx.de>
42078 Date:   Tue Sep 9 10:08:02 2008 +0200
42080     lib_ppc/interrupts.c: make board_show_activity() a weak function
42082     This allows to use show_activity() without having to
42083     define an empty board_show_activity() function.
42085     Signed-off-by: Wolfgang Denk <wd@denx.de>
42087 commit fe876787f8743883ce58fed61525eaa2f34da4c5
42088 Author: Wolfgang Denk <wd@denx.de>
42089 Date:   Tue Sep 9 10:06:44 2008 +0200
42091     stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
42093     Signed-off-by: Wolfgang Denk <wd@denx.de>
42095 commit 965de106ba8900372c8b16dc60d5acab7f925e38
42096 Author: Wolfgang Denk <wd@denx.de>
42097 Date:   Tue Sep 9 10:03:47 2008 +0200
42099     NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
42101     Signed-off-by: Wolfgang Denk <wd@denx.de>
42103 commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
42104 Author: Sergei Poselenov <sposelenov@emcraft.com>
42105 Date:   Fri Aug 15 15:42:11 2008 +0200
42107     Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
42109     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
42111 commit 36241ca29d4804a1006fb3f26069effda5202581
42112 Author: Anatolij Gustschin <agust@denx.de>
42113 Date:   Fri Aug 15 15:42:13 2008 +0200
42115     85xx: socrates: Enable Lime support.
42117     This patch adds Lime GDC support together with support for the PWM
42118     backlight control through the w83782d chip.  The reset pin of the
42119     latter is attached to GPIO, so we need to reset it in
42120     early_board_init_r.
42122     Signed-off-by: Anatolij Gustschin <agust@denx.de>
42124 commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
42125 Author: Detlev Zundel <dzu@denx.de>
42126 Date:   Fri Aug 15 15:42:12 2008 +0200
42128     85xx: Socrates: Major code update.
42130     - Update the local bus ranges in the FDT for Linux for the various
42131       devices connected to the local bus via chip-select.
42133     - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
42134       lower than 66 MHz and uses I/O accessor functions consequently.
42136     - UPM data update.
42138     - Update of default environment and configuration.  Use I2C multibus
42139       as we do have two I2C buses.  Also enable sdram and ext2 commands.
42141     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
42142     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
42143     Signed-off-by: Detlev Zundel <dzu@denx.de>
42145 commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
42146 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42147 Date:   Tue Sep 9 01:22:39 2008 +0200
42149     disk-on-chip: remove duplicate doc_probe declaration
42151     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42153 commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
42154 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42155 Date:   Tue Sep 9 00:59:40 2008 +0200
42157     onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
42159     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42161 commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
42162 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42163 Date:   Tue Sep 9 00:59:39 2008 +0200
42165     rs5c372: fix rtc_set prototype
42167     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42169 commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
42170 Author: Sergei Poselenov <sposelenov@emcraft.com>
42171 Date:   Thu Aug 14 14:08:28 2008 +0200
42173     ARM: fix warning: target CPU does not support interworking
42175     This patch fixes warnings like this:
42177     start.S:0: warning: target CPU does not support interworking
42179     which come from some ARM cross compilers and are caused by hard-coded
42180     (with "--with-cpu=arm9" configuration option) ARM targets (which
42181     support ARM Thumb instructions), while the ARM target selected from
42182     the command line (with "-march=armv4") doesn't support Thumb
42183     instructions.
42185     This warning is issued by the compiler regardless of the real use of
42186     the Thumb instructions in code.
42188     To fix this problem, we use options according to compiler version
42189     being used.
42191     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
42192     Signed-off-by: Wolfgang Denk <wd@denx.de>
42194 commit 4265c35fbcb248e58179007621d61d32d0b3b82a
42195 Author: Sergei Poselenov <sposelenov@emcraft.com>
42196 Date:   Thu Aug 14 14:08:28 2008 +0200
42198     ARM: Use do_div() instead of division for "long long".
42200     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
42201     Signed-off-by: Wolfgang Denk <wd@denx.de>
42203 commit 8febd13c69cb68652577d1a9fcbde954bf784155
42204 Author: Timur Tabi <timur@freescale.com>
42205 Date:   Fri Jul 18 16:52:23 2008 +0200
42207     Update Freescale 85xx boards to sys_eeprom.c
42209     The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
42210     format, and so it obsoletes board/freescale/common/cds_eeprom.c.  Freescale
42211     86xx boards already use sys_eeprom.c, so this patch migrates the remaining
42212     Freescale 85xx boards to use it as well.  cds_eeprom.c is deleted.
42214     Signed-off-by: Timur Tabi <timur@freescale.com>
42216 commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
42217 Author: Wolfgang Denk <wd@denx.de>
42218 Date:   Mon Sep 8 23:26:22 2008 +0200
42220     lib_arm/bootm.c: fix compile warnings
42222     bootm.c:128: warning: label 'error' defined but not used
42223     bootm.c:65: warning: unused variable 'ret'
42225     Signed-off-by: Wolfgang Denk <wd@denx.de>
42227 commit 2e3c867d0a63c563a51e65b776973b008f16cec5
42228 Author: Wolfgang Denk <wd@denx.de>
42229 Date:   Mon Sep 8 22:46:42 2008 +0200
42231     ml507: fix out of tree build problem
42233     Signed-off-by: Wolfgang Denk <wd@denx.de>
42235 commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
42236 Author: Wolfgang Denk <wd@denx.de>
42237 Date:   Mon Sep 8 22:10:28 2008 +0200
42239     common/cmd_bootm.c: fix printf() format warnings
42241     Signed-off-by: Wolfgang Denk <wd@denx.de>
42243 commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
42244 Author: Wolfgang Denk <wd@denx.de>
42245 Date:   Mon Sep 8 22:37:45 2008 +0200
42247     BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
42249     missing doc_probe() prototype.
42251     Signed-off-by: Wolfgang Denk <wd@denx.de>
42253 commit 2c5e3cc4994897d364b148942ff23e47783198f6
42254 Author: Wolfgang Denk <wd@denx.de>
42255 Date:   Mon Sep 8 21:28:14 2008 +0200
42257     mk48t59: fix compile problem introduced by commit d1e23194
42259     Signed-off-by: Wolfgang Denk <wd@denx.de>
42261 commit 5ff889349d2ace13f10c9335e09365fcec8247cc
42262 Author: Stefan Roese <sr@denx.de>
42263 Date:   Mon Sep 8 14:11:12 2008 +0200
42265     ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
42267     This patch moves some 4xx specific prototypes out of include common.h
42268     to a ppc4xx specific header.
42270     Signed-off-by: Stefan Roese <sr@denx.de>
42272 commit ac53ee8318678190bf3c68da477a84a657d86fb0
42273 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42274 Date:   Fri Sep 5 15:34:04 2008 +0200
42276     ppc4xx: Update CPCI405(AB) configuration
42278     This patch add FDT support and command line editing capabilities
42279     for CPCI405 and CPCI405AB boards.
42281     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42282     Signed-off-by: Stefan Roese <sr@denx.de>
42284 commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
42285 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42286 Date:   Fri Sep 5 15:34:03 2008 +0200
42288     ppc4xx: Cleanup CPCI405 linker script
42290     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42291     Signed-off-by: Stefan Roese <sr@denx.de>
42293 commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
42294 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42295 Date:   Fri Sep 5 15:34:02 2008 +0200
42297     ppc4xx: Update CPCI405 variants handling
42299     This patch replaces the BOARD_REVISION variable in include/config.mk
42300     by a using a temporary include file in the platform directory.
42302     The former way does not work anymore and the latter is also used by
42303     some other boards.
42305     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42306     Signed-off-by: Stefan Roese <sr@denx.de>
42308 commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
42309 Author: Stefan Roese <sr@denx.de>
42310 Date:   Mon Sep 8 10:01:48 2008 +0200
42312     ppc4xx: Remove CONFIG_CS8952_PHY define
42314     Since this define is only used on one board that was never really in
42315     production, removing this compile time option doesn't hurt and makes
42316     the code more readable.
42318     Signed-off-by: Stefan Roese <sr@denx.de>
42320 commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
42321 Author: Stefan Roese <sr@denx.de>
42322 Date:   Fri Sep 5 14:11:40 2008 +0200
42324     ppc4xx: Fix compilation warning for PIP405
42326     This patch fixes a compilation warning for the PIP405 board. It moves the
42327     #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
42328     occur anymore. I am a little unsure if this #ifdef is at the correct
42329     place now or if it could be removed completely. This needs to get
42330     tested on the PIP405 board.
42332     Signed-off-by: Stefan Roese <sr@denx.de>
42334 commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
42335 Author: Stefan Roese <sr@denx.de>
42336 Date:   Fri Sep 5 14:09:09 2008 +0200
42338     ppc4xx: Fix compilation warning for canyonlands & glacier
42340     Signed-off-by: Stefan Roese <sr@denx.de>
42342 commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
42343 Author: Kumar Gala <galak@kernel.crashing.org>
42344 Date:   Fri Sep 5 14:40:29 2008 -0500
42346     Fix compiler warning in mpc8xxx ddr code
42348     ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
42349     ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
42350     ctrl_regs.c:523: note: 'caslat' was declared here
42352     Add a warning in DDR1 case if cas_latency isn't a value we know about.
42354     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42355     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42357 commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
42358 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42359 Date:   Mon Sep 1 23:06:23 2008 +0200
42361     rtc: allow rtc_set to return an error and use it in cmd_date
42363     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42365 commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
42366 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42367 Date:   Mon Sep 1 01:16:33 2008 +0200
42369     ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
42371     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42373 commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
42374 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42375 Date:   Sun Aug 31 05:37:04 2008 +0900
42377     config.mk: Move arch-specific condition to $(ARCH)_config.mk
42379     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42381 commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
42382 Author: Kumar Gala <galak@kernel.crashing.org>
42383 Date:   Fri Aug 29 19:08:29 2008 -0500
42385     Prevent crash if random/invalid ramdisks are passed to bootm
42387     Adds returning an error from the ramdisk detection code if
42388     its not a real ramdisk (invalid).  There is no reason we can't
42389     just return back to the console if we detect an invalid
42390     ramdisk or CRC error.
42392     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42394 commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
42395 Author: Anatolij Gustschin <agust@denx.de>
42396 Date:   Fri Aug 29 21:04:45 2008 +0200
42398     Prevent crash if random DTB address is passed to bootm
42400     This patch adds bootm_start() return value check. If
42401     error status is returned, we do not proceed further to
42402     prevent board reset or crash as we still can recover
42403     at this point.
42405     Signed-off-by: Anatolij Gustschin <agust@denx.de>
42407 commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
42408 Author: Andrew Dyer <adyer@righthandtech.com>
42409 Date:   Fri Aug 29 12:30:39 2008 -0500
42411     clean up some #if !defined() in drivers/video/cfb_console.c
42413     rearrange some #if !defined() / #else / #endif statements to remove
42414     the negative logic.
42416     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
42418 commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
42419 Author: Kyungmin Park <kmpark@infradead.org>
42420 Date:   Fri Aug 29 09:02:20 2008 +0900
42422     apollon: use the last memory area for u-boot
42424     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
42426 commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
42427 Author: Heiko Schocher <hs@denx.de>
42428 Date:   Thu Aug 28 13:50:42 2008 +0200
42430     TQM8272: move NAND part in seperate File
42432     I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
42433     because I have no longer access to the hardware.
42435     Signed-off-by: Heiko Schocher <hs@denx.de>
42437 commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
42438 Author: Heiko Schocher <hs@denx.de>
42439 Date:   Thu Aug 28 13:48:36 2008 +0200
42441     TQM8272: Fix compiling error for the TQM8272 board.
42443     Fix compile problems caused by
42444     commit  cfa460adfdefcc30d104e1a9ee44994ee349bb7b
42446     Signed-off-by: Heiko Schocher <hs@denx.de>
42448 commit 1a7f8ccec981648ccd38fca2535490582eee08e6
42449 Author: Kyungmin Park <kmpark@infradead.org>
42450 Date:   Wed Aug 27 14:45:20 2008 +0900
42452     Add JFFS2 command support on OneNAND
42454     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
42456 commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
42457 Author: Mark Jackson <mpfj@mimc.co.uk>
42458 Date:   Mon Aug 25 19:21:30 2008 +0100
42460     Allow console input to be disabled
42462     Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
42464     When CONFIG_DISABLE_CONSOLE is defined, setting
42465     GD_FLG_DISABLE_CONSOLE disables all console input and output.
42467     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
42469 commit 2b22d608f370565c87f55928b524207031419c11
42470 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
42471 Date:   Wed Jul 30 12:39:29 2008 +0200
42473     loads: allow negative offsets
42475     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
42477 commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
42478 Author: Yuri Tikhonov <yur@emcraft.com>
42479 Date:   Thu Sep 4 11:19:05 2008 +0200
42481     USB EHCI: reset root hub
42483     Some of multi-function USB controllers (e.g. ISP1562) allow root hub
42484     resetting only via EHCI registers. So, this patch adds the
42485     corresponding kind of reset to OHCI's hc_reset() if the newly
42486     introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
42487     board).
42489     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42490     Acked-by: Markus Klotzbuecher <mk@denx.de>
42492 commit 5875d358f025c1b042d8a0f08384b756de7256c9
42493 Author: Yuri Tikhonov <yur@emcraft.com>
42494 Date:   Fri Aug 15 15:42:09 2008 +0200
42496     RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
42498     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
42500 commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
42501 Author: Stefan Roese <sr@denx.de>
42502 Date:   Fri Sep 5 10:47:46 2008 +0200
42504     devices: Use list_add_tail() instead of list_add() to register a device
42506     This patch fixes a problem spotted on Glacier/Canyonlands (and most
42507     likely lots of other board ports), that no serial output was seen
42508     after console initialization in console_init_r(). This is because the
42509     last added console device was used instead of the first added.
42511     This patch fixes this problem by using list_add_tail() instead of
42512     list_add() to register a device. This way the first added console
42513     is used again.
42515     Signed-off-by: Stefan Roese <sr@denx.de>
42517 commit 78d78236896d62bb8ca7302af38d8f1493eb2651
42518 Author: Victor Gallardo <vgallardo@amcc.com>
42519 Date:   Thu Sep 4 23:49:36 2008 -0700
42521     ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
42523     This patch adds GPCS, SGMII and M88E1112 PHY support
42524     for the AMCC PPC460GT/EX processors.
42526     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
42527     Signed-off-by: Stefan Roese <sr@denx.de>
42529 commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
42530 Author: Adam Graham <agraham@amcc.com>
42531 Date:   Wed Sep 3 12:26:59 2008 -0700
42533     ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
42535     Signed-off-by: Adam Graham <agraham@amcc.com>
42536     Signed-off-by: Stefan Roese <sr@denx.de>
42538 commit 075d0b81e896e8735ae26372cd384f87cbd24e41
42539 Author: Adam Graham <agraham@amcc.com>
42540 Date:   Wed Sep 3 12:26:28 2008 -0700
42542     ppc4xx: IBM Memory Controller DDR autocalibration routines
42544     Alternate SDRAM DDR autocalibration routine that can be generically used
42545     for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
42546     support of more DIMM/memory chip vendors and gets the DDR autocalibration
42547     values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
42549     Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
42550     "Method_A" and "Method_B".  DDR autocalibration Method_A scans the full range
42551     of possible PPC4xx  SDRAM Controller DDR autocalibration values and takes a
42552     lot longer to run than Method_B.  Method_B executes in the same amount of time
42553     as the currently existing DDR autocalibration routine, i.e. 1 second or so.
42554     Normally Method_B is used and it is set as the default method.
42556     The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
42557     Controller registers.[bit-field]:
42558     1)  SDRAM0_RQDC.[RQFD]
42559     2)  SDRAM0_RFDC.[RFFD]
42561     This alternate PPC4xx DDR autocalibration code calibrates the following
42562     IBM SDRAM Controller registers.[bit-field]:
42564     1)  SDRAM0_WRDTR.[WDTR]
42565     2)  SDRAM0_CLKTR.[CKTR]
42566     3)  SDRAM0_RQDC.[RQFD]
42567     4)  SDRAM0_RFDC.[RFFD]
42569     and will also use the calibrated settings of the above four registers that
42570     produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
42571     register.[bit-field].
42573     Signed-off-by: Adam Graham <agraham@amcc.com>
42574     Signed-off-by: Stefan Roese <sr@denx.de>
42576 commit e07f4a8033b6270b8103049adb6456f660ff4a89
42577 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
42578 Date:   Mon Sep 1 13:09:39 2008 -0400
42580     ppc44x: Unification of virtex5 pp440 boards
42582     This patch provides an unificated way of handling xilinx v5 ppc440 boards.
42584     It unificates 3 different things:
42586     1) Source code
42587     A new board called ppc440-generic has been created. This board includes
42588     a generic tlb initialization (Maps the whole memory into virtual) and
42589     defines board_pre_init, checkboard, initdram and get_sys_info weakly,
42590     so, they can be replaced by specific functions.
42592     If a new board needs to redefine any of the previous functions
42593     (specific initialization) it can create a new directory with the
42594     specific initializations needed. (see the example ml507 board).
42596     2) Configuration file
42597     Common configurations are located under configs/xilinx-ppc440.h, this
42598     header file interpretes the xparameters file generated by EDK and
42599     configurates u-boot in correspondence. Example: if there is a Temac,
42600     allows CMD_CONFIG_NET
42601     Specific configuration are located under specific configuration file.
42602     (see the example ml507 board)
42604     3) Makefile
42605     Some work has been done in order to not duplicate work in the Main
42606     Makefile. Please see the attached code.
42608     In order to support new boards they can be implemented in the next way:
42610     a) Simple Generic Board  (90% of the time)
42611     Using EDK generates a new xparameters.h file, replace
42612     ppc440-generic/xparameters.h  and run make xilinx-ppc440-generic_config
42613     && make
42615     b) Simple Boards with special u-boot parameters (9 % of the time)
42616     Create a new file under configs for it (use ml507.h as example) and
42617     change your paramaters. Create a new Makefile paragraph and compile
42619     c) Complex boards (1% of the time)
42620     Create a new folder for the board, like the ml507
42622     Finally, it adds support for the Avnet FX30T Evaluation board, following
42623     the new generic structure:
42625     Cheap board by Avnet for evaluating the Virtex5 FX technology.
42627     This patch adds support for:
42628      - UartLite
42629      - 16MB Flash
42630      - 64MB RAM
42632     Prior using U-boot in this board, read carefully the ERRATA by Avnet
42633     to solve some memory initialization issues.
42635     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
42636     Signed-off-by: Stefan Roese <sr@denx.de>
42638 commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
42639 Author: Nick Spence <nick.spence@freescale.com>
42640 Date:   Tue Sep 2 15:21:16 2008 -0500
42642     mpc83xx: fix mpc8313 in-tree building with NAND
42644     and add mpc8313 NAND build to MAKEALL
42646     Signed-off-by: Nick Spence <nick.spence@freescale.com>
42647     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42649 commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
42650 Author: Nick Spence <nick.spence@freescale.com>
42651 Date:   Thu Aug 28 14:09:25 2008 -0700
42653     mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
42655     Cleans up some latent issues with the data cache control so that
42656     dcache_enable() and dcache_disable() will work reliably (after
42657     unlock_ram_in_cache() has been called)
42659     Signed-off-by: Nick Spence <nick.spence@freescale.com>
42660     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42662 commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
42663 Author: Nick Spence <nick.spence@freescale.com>
42664 Date:   Thu Aug 28 14:09:19 2008 -0700
42666     mpc83xx: Store and display Arbiter Event Register values
42668     Record the Arbiter Event Register values and optionally display them.
42670     The Arbiter Event Register can record the type and effective address of
42671     an arbiter error, even through an HRESET. This patch stores the values in
42672     the global data structure.
42674     Display of the Arbiter Event registers immediately after the RSR value
42675     can be enabled with defines. The Arbiter values will only be displayed
42676     if an arbiter event has occured since the last Power On Reset, and either
42677     of the following defines exist:
42678      #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
42679                                         and type register values
42680      #define CONFIG_DISPLAY_AER_FULL  - display and interpret the arbiter
42681                                         event register values
42683     Address Only transactions are one of the trapped events that can register
42684     as an arbiter event. They occur with some cache manipulation instructions
42685     if the HID0_ABE (Address Broadcast Enable) is set and the memory region
42686     has the MEMORY_COHERENCE WIMG bit set. Setting:
42687      #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
42688                                   only events, so that it can still capture
42689                                   other real problems.
42691     Signed-off-by: Nick Spence <nick.spence@freescale.com>
42692     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42694 commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
42695 Author: Nick Spence <nick.spence@freescale.com>
42696 Date:   Thu Aug 28 14:09:11 2008 -0700
42698     mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
42700     This is needed in unlock_ram_in_cache() because it is called from C and
42701     will corrupt the small data area anchor that is kept in R2.
42703     lock_ram_in_cache() is modified similarly as good coding practice, but
42704     is not called from C.
42706     Signed-off-by: Nick Spence <nick.spence@freescale.com>
42707     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42709 commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
42710 Author: Nick Spence <nick.spence@freescale.com>
42711 Date:   Fri Aug 22 23:52:50 2008 -0700
42713     MPC83XX: Fix GPIO configuration - set gpio level before direction
42715     Set DAT value before DIR values to avoid creating glitches on the
42716     GPIO signals.
42718     Set gpio level register before direction register to inhibit
42719     glitches on high level output pins.
42721     Dir and data gets cleared at powerup, so high level output lines see
42722     a short low pulse between setting the direction and level registers.
42724     Issue was seen on a new board with the nReset line of the NOR flash
42725     connected to a GPIO. Setting the direction register puts the NOR flash
42726     in reset so the next instruction to set the level cannot get executed.
42728     Signed-off-by: Nick Spence <nick.spence@freescale.com>
42729     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
42730     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42732 commit 7007c5975ee900ad70983b0681d3251e221f8321
42733 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42734 Date:   Tue Sep 2 02:58:32 2008 +0200
42736     doc/qemu_mips: add doc howto debug u-boot with gdb
42738     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42740 commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
42741 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42742 Date:   Wed Sep 3 17:15:45 2008 +0200
42744     ppx4xx: Fix broken DASA_SIM board
42746     This patch adds initdram() to DASA_SIM boards that has been
42747     removed accidentally by a previous commit.
42749     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42750     Signed-off-by: Stefan Roese <sr@denx.de>
42752 commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
42753 Author: Stefan Roese <sr@denx.de>
42754 Date:   Mon Sep 1 08:35:37 2008 +0200
42756     ppc4xx: Remove reference to common/lists.o from some esd linker scripts
42758     This patch removes some direct references to common/lists.o from some
42759     esd linker scripts. This is necessary because the lists source was moved
42760     and is not in the "common" directory anymore.
42762     Signed-off-by: Stefan Roese <sr@denx.de>
42764 commit 97b0734d65f8a0b03df0a335a2addc759da56107
42765 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42766 Date:   Tue Sep 2 16:33:05 2008 +0200
42768     ppc4xx: Remove obsolete or unused functions from some esd boards
42770     This patch removes initdram() and testdram() from most esd 405 platforms.
42771     Some boards also have an empty dummy implementation of
42772     misc_init_f(). This is also removed.
42774     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42775     Signed-off-by: Stefan Roese <sr@denx.de>
42777 commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
42778 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42779 Date:   Tue Sep 2 15:07:54 2008 +0200
42781     ppc4xx: Update VOM405 board configuration
42783     - remove PCI code
42784     - add command line editing
42785     - minor cleanup
42787     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42788     Signed-off-by: Stefan Roese <sr@denx.de>
42790 commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
42791 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42792 Date:   Tue Sep 2 15:07:53 2008 +0200
42794     ppc4xx: Remove obsolete initdram() function from VOM405 board
42796     This patch removed the obsolete initdram() function from
42797     VOM405 platform file.
42799     Some minor cleanup.
42801     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42802     Signed-off-by: Stefan Roese <sr@denx.de>
42804 commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
42805 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42806 Date:   Tue Sep 2 15:07:52 2008 +0200
42808     ppc4xx: Cleanup VOM405 linker script
42810     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42811     Signed-off-by: Stefan Roese <sr@denx.de>
42813 commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
42814 Author: Matthias Fuchs <mf@esd.eu>
42815 Date:   Tue Sep 2 15:07:51 2008 +0200
42817     ppc4xx: Add fdt support for VOM405 boards
42819     Signed-off-by: Matthias Fuchs <mf@esd.eu>
42820     Signed-off-by: Stefan Roese <sr@denx.de>
42822 commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
42823 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42824 Date:   Tue Sep 2 11:36:14 2008 +0200
42826     ppc4xx: Coding style cleanup
42828     Wrap long lines etc.
42830     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42831     Signed-off-by: Stefan Roese <sr@denx.de>
42833 commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
42834 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42835 Date:   Tue Sep 2 11:35:56 2008 +0200
42837     ppc4xx: Enable USB on PLU405 boards
42839     This patch enables the PCI-OHCI controller on PLU405 board.
42841     Also the default CPU frequency is updated to 266 MHz and
42842     command line editing is enabled.
42844     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42845     Signed-off-by: Stefan Roese <sr@denx.de>
42847 commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
42848 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42849 Date:   Tue Sep 2 11:35:35 2008 +0200
42851     ppc4xx: Cleanup PLU405 platform file
42853     This patch
42854     - wraps some long lines
42855     - removes unused/obsolete functions: misc_init_f() and initdram()
42857     Signed-off-by: Matthias Fuchs <mf@esd.eu>
42858     Signed-off-by: Stefan Roese <sr@denx.de>
42860 commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
42861 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42862 Date:   Tue Sep 2 11:35:04 2008 +0200
42864     ppc4xx: Cleanup PLU405 linker script
42866     Signed-off-by: Matthias Fuchs <mf@esd.eu>
42867     Signed-off-by: Stefan Roese <sr@denx.de>
42869 commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
42870 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42871 Date:   Tue Sep 2 11:34:36 2008 +0200
42873     ppc4xx: Add fdt support for PLU405 boards
42875     Signed-off-by: Matthias Fuchs <mf@esd.eu>
42876     Signed-off-by: Stefan Roese <sr@denx.de>
42878 commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
42879 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42880 Date:   Tue Sep 2 11:34:08 2008 +0200
42882     ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
42884     Signed-off-by: Matthias Fuchs <mf@esd.eu>
42885     Signed-off-by: Stefan Roese <sr@denx.de>
42887 commit be1b0d2777e179191a57b138b660547a17e55aad
42888 Author: Jochen Friedrich <jochen@scram.de>
42889 Date:   Tue Sep 2 11:24:59 2008 +0200
42891     Don't tftp to unknown flash
42893     If a board has a variable number of flash banks, there are empty entries
42894     in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
42895     "Outside available Flash". This patch skips flash banks with unknown
42896     flash ids.
42898     Signed-off-by: Jochen Friedrich <jochen@scram.de>
42899     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42901 commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
42902 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42903 Date:   Thu Aug 28 13:40:44 2008 +0900
42905     net: smc911x: Add pkt_data_pull and pkt_data_push function
42907     The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
42908     Byte-swapping is necessary, and so poor performance is inevitable.
42909     This problem cannot evade by the swap function of CHIP, this can
42910     evade by software Byte-swapping.
42911     And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
42912     functions necessary to solve this problem.
42914     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42915     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42917 commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
42918 Author: Ben Warren <biggerbadderben@gmail.com>
42919 Date:   Sun Aug 31 20:37:00 2008 -0700
42921     Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
42923     Affected boards:
42924         db64360
42925         db64460
42926         katmai
42927         taihu
42928         taishan
42929         yucca
42930         cpc45
42931         cpu87
42932         eXalion
42933         elppc
42934         debris
42935         kvme080
42936         mpc8315erdb
42937         integratorap
42938         ixdp425
42939         oxc
42940         pm826
42941         pm828
42942         pm854
42943         pm856
42944         ppmc7xx
42945         sc3
42946         sc520_spunk
42947         sorcery
42948         tqm8272
42949         tqm85xx
42950         utx8245
42952     Removed initialization of the driver from net/eth.c
42953     Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
42955     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42957 commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
42958 Author: Ben Warren <biggerbadderben@gmail.com>
42959 Date:   Sun Aug 31 10:45:44 2008 -0700
42961     Moved initialization of TULIP Ethernet controller to board_eth_init()
42963     Affected boards:
42964         cu824
42965         bab7xx
42966         adciop
42967         dasa_sim
42968         mousse
42969         mpc8540eval
42970         musenki
42971         mvblue
42972         pcippc2/pcippc6
42973         sbc8240
42974         stxssa
42976     Removed initialization of the driver from net/eth.c
42978     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42980 commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
42981 Author: Ben Warren <biggerbadderben@gmail.com>
42982 Date:   Sun Aug 31 10:44:19 2008 -0700
42984     Moved initialization of E1000 Ethernet controller to board_eth_init()
42986     Affected boards:
42987         ap1000
42988         mvbc_p
42989         PM854
42991     Removed initialization of the driver from net/eth.c
42993     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42995 commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
42996 Author: Ben Warren <biggerbadderben@gmail.com>
42997 Date:   Sun Aug 31 10:40:51 2008 -0700
42999     Moved initialization of plb2800 Ethernet driver to board_eth_init
43001     Affected boards:
43002         purple
43004     Removed initialization of controller from net/eth.c
43006     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43008 commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
43009 Author: Ben Warren <biggerbadderben@gmail.com>
43010 Date:   Sun Aug 31 10:39:12 2008 -0700
43012     Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
43014     Modified board_eth_init() functions of boards that have this FEC in addition
43015     to other Ethernet controllers.
43017     Affected boards:
43018         bc3450
43019         icecube
43020         mvbc_p
43021         o2dnt
43022         pm520
43023         total5200
43024         tq5200
43026     Removed initialization of controller from net/eth.c
43028     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43030 commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
43031 Author: Ben Warren <biggerbadderben@gmail.com>
43032 Date:   Sun Aug 31 10:36:38 2008 -0700
43034     Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
43036     Added a cpu_eth_init() function to MPC512x CPU directory and
43037     removed code from net/eth.c
43039     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43041 commit 8218bd2aa68820b878a8413493ae17fd8d21f944
43042 Author: Ben Warren <biggerbadderben@gmail.com>
43043 Date:   Sun Aug 31 10:16:59 2008 -0700
43045     Moved initialization of IncaIP Ethernet controller to board_eth_init
43047     Affected boards:
43048         IncaIP
43050     Removed initialization of the driver from net/eth.c
43052     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43054 commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
43055 Author: Ben Warren <biggerbadderben@gmail.com>
43056 Date:   Sun Aug 31 10:15:26 2008 -0700
43058     Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
43060         Affected boards:
43061             AmigaOneG3SE
43063         Removed initialization of the driver from net/eth.c
43065     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43067 commit 6aca145e067efe75398e9fac97822bd3700de0b2
43068 Author: Ben Warren <biggerbadderben@gmail.com>
43069 Date:   Sun Aug 31 10:13:34 2008 -0700
43071     Moved initialization of GT6426x Ethernet controller to board_eth_init()
43073     Affected boards:
43074         EVB64260
43075         P3G4
43076         ZUMA
43078     Removed initialization of the driver from net/eth.c
43080     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43082 commit e3090534d62045dcb73f5392bacc64a4e8e443dc
43083 Author: Ben Warren <biggerbadderben@gmail.com>
43084 Date:   Sun Aug 31 10:08:43 2008 -0700
43086     Moved initialization of PCNET Ethernet controller to board_eth_init()
43088     Affected boards:
43089         PN62
43090         sc520_cdp
43092     Removed initialization of the driver from net/eth.c
43094     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43096 commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
43097 Author: Ben Warren <biggerbadderben@gmail.com>
43098 Date:   Sun Aug 31 10:07:16 2008 -0700
43100     Moved initialization of NATSEMI Ethernet controller to board_eth_init()
43102     Affected boards:
43103         a3000
43105     Removed initialization of the driver from net/eth.c
43107     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43109 commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
43110 Author: Ben Warren <biggerbadderben@gmail.com>
43111 Date:   Sun Aug 31 10:03:22 2008 -0700
43113     Moved initialization of NS8382X Ethernet controller to board_eth_init()
43115     Affected boards:
43116         bc3450
43117         cpci5200
43118         mecp5200
43119         pf2000
43120         icecube
43121         o2dnt
43122         pm520
43123         sandpoint8245
43124         total5200
43125         tqm5200
43127     Removed initialization of the driver from net/eth.c
43129     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43131 commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
43132 Author: Ben Warren <biggerbadderben@gmail.com>
43133 Date:   Sun Aug 31 09:59:33 2008 -0700
43135     Moved initialization of TSI108 Ethernet controller to board_eth_init()
43137     Affected boards:
43138         mpc7448hpc2
43140     Removed initialization of the driver from net/eth.c
43142     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43144 commit 0b252f50ae218ae15bfb63af44227972686ebc56
43145 Author: Ben Warren <biggerbadderben@gmail.com>
43146 Date:   Sun Aug 31 21:41:08 2008 -0700
43148     Moved initialization of RTL8139 Ethernet controller to board_eth_init()
43150     Affected boards:
43151         hidden_dragon
43152         MPC8544DS
43153         MPC8610HPCN
43154         R2DPLUS
43155         TB0229
43157     Removed initialization of the driver from net/eth.c
43159     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43161 commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
43162 Author: Ben Warren <biggerbadderben@gmail.com>
43163 Date:   Sun Aug 31 09:49:42 2008 -0700
43165     Moved initialization of RTL8169 Ethernet controller to board_eth_init()
43167     Affected boards:
43168         linkstation
43169         r7780mp
43171     Removed initialization of the driver from net/eth.c
43173     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43175 commit 3ae071e44256144d6c1e3febb65f6c56bd433769
43176 Author: Ben Warren <biggerbadderben@gmail.com>
43177 Date:   Tue Aug 12 22:11:53 2008 -0700
43179     Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
43181     Removed at91sam9_eth_initialize() from net/eth.c
43183     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43185 commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
43186 Author: Ben Warren <biggerbadderben@gmail.com>
43187 Date:   Sun Aug 31 22:22:04 2008 -0700
43189     Introduce netdev.h header file and remove externs
43191     This addresses all drivers whose initializers have already
43192     been moved to board_eth_init()/cpu_eth_init().
43194     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43196 commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
43197 Author: Andy Fleming <afleming@freescale.com>
43198 Date:   Sun Aug 31 16:33:30 2008 -0500
43200     Add pixis_set_sgmii command
43202     The 8544DS and 8572DS platforms support an optional SGMII riser card to
43203     expose ethernet over an SGMII interface.  Once the card is in, it is also
43204     necessary to configure the board such that it uses the card, rather than
43205     the on-board ethernet ports.  This can either be done by flipping dip switches
43206     on the motherboard, or by modifying registers in the pixis.  Either way
43207     requires a reboot.
43209     This adds a command to allow users to choose which ports are routed through
43210     the SGMII card, and which through the onboard ports.  It also allows users
43211     to revert to the current switch settings.
43213     This code does not work on the 8572, as the PIXIS is different.
43215     Signed-off-by: Andy Fleming <afleming@freescale.com>
43216     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43218 commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
43219 Author: Andy Fleming <afleming@freescale.com>
43220 Date:   Sun Aug 31 16:33:29 2008 -0500
43222     Add SGMII support for the 8544 DS
43224     The 8544 DS has an optional SGMII Riser card, which uses different PHY
43225     addresses.  Check if we are in SGMII mode, and invoke the SGMII Riser
43226     setup code if so.
43228     Signed-off-by: Andy Fleming <afleming@freescale.com>
43229     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43231 commit 652f7c2eef76a1340928bd660845441e932d86a2
43232 Author: Andy Fleming <afleming@freescale.com>
43233 Date:   Sun Aug 31 16:33:28 2008 -0500
43235     Add support for Freescale SGMII Riser Card
43237     The 8544DS and 8572DS systems have an optional SGMII riser card which
43238     exposes new ethernet ports which are connected to the eTSECs via an
43239     SGMII interface.  The SGMII PHYs for this board are offset from the standard
43240     PHY addresses, so this code modifies the passed in tsec_info structure to
43241     use the SGMII PHYs on the card, instead.
43243     Signed-off-by: Andy Fleming <afleming@freescale.com>
43244     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43246 commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
43247 Author: Andy Fleming <afleming@freescale.com>
43248 Date:   Sun Aug 31 16:33:27 2008 -0500
43250     Add SGMII support to the tsec
43252     Adds support for configuring the TBI to talk properly with the SerDes.
43254     Signed-off-by: Andy Fleming <afleming@freescale.com>
43255     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43257 commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
43258 Author: Andy Fleming <afleming@freescale.com>
43259 Date:   Sun Aug 31 16:33:26 2008 -0500
43261     Pass in tsec_info struct through tsec_initialize
43263     The tsec driver contains a hard-coded array of configuration information
43264     for the tsec ethernet controllers.  We create a default function that works
43265     for most tsecs, and allow that to be overridden by board code.  It creates
43266     an array of tsec_info structures, which are then parsed by the corresponding
43267     driver instance to determine configuration.  Also, add regs, miiregs, and
43268     devname fields to the tsec_info structure, so that we don't need the kludgy
43269     "index" parameter.
43271     Signed-off-by: Andy Fleming <afleming@freescale.com>
43272     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43274 commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
43275 Author: Andy Fleming <afleming@freescale.com>
43276 Date:   Sun Aug 31 16:33:25 2008 -0500
43278     tsec: Move tsec.h to include/
43280     This is to prepare the way for board code passing in the tsec_info structure
43282     Signed-off-by: Andy Fleming <afleming@freescale.com>
43283     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43285 commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
43286 Author: Sergei Poselenov <sposelenov@emcraft.com>
43287 Date:   Fri Jun 6 15:52:44 2008 +0200
43289     PHY: Add support for the M88E1121R Marvell chip.
43291     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
43292     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
43293     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43295 commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
43296 Author: Wolfgang Denk <wd@denx.de>
43297 Date:   Tue Sep 2 21:17:36 2008 +0200
43299     fw_env.c: fix build problems with MTD_VERSION=old
43301     (as needed to support old 2.4 Linux kernel based releases)
43303     Signed-off-by: Wolfgang Denk <wd@denx.de>
43305 commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
43306 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43307 Date:   Mon Sep 1 17:11:26 2008 +0200
43309     device: make device_register() clone the device
43311     This is expected by the callers, but this fact was hidden well within
43312     the old list implementation.
43314     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43316 commit baf449fc5ff96f071bb0e3789fd3265f6d4fd9a0
43317 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43318 Date:   Mon Sep 1 14:00:07 2008 +0200
43320     avr32: Add support for "GPIO" port mux
43322     The "GPIO" port mux is used on AVR32 UC3 parts as well as AT32AP7200 and
43323     all later AVR32 chips. This patch adds a driver for it, implementing the
43324     same API as the existing portmux-pio driver but with more functionality.
43326     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43328 commit d92852579546c46bdaac978e0b6767a6645b69e0
43329 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43330 Date:   Fri Aug 15 15:02:29 2008 +0200
43332     atstk1000: Convert to new-style makefile
43334     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43336 commit 25e6854d42c11046a468576179b5494f850311b2
43337 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43338 Date:   Sun Aug 31 18:46:35 2008 +0200
43340     avr32: use board_early_init_r instead of board_init_info
43342     Replace the avr32-specific board_init_info hook by the standard
43343     board_early_init_r hook and make it optional.
43345     board_early_init_r() runs somewhat earlier than board_init_info used to
43346     do, but this isn't a problem for any of the in-tree boards.
43348     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43350 commit 36d375faf5cff98e8dca32aabbbb1ec6036437dd
43351 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43352 Date:   Sun Aug 31 18:24:24 2008 +0200
43354     avr32: Use board_postclk_init instead of gclk_init
43356     Replace the avr32-specific gclk_init() board hook with the standard
43357     board_postclk_init() hook which is supposed to run at the same point
43358     during initialization.
43360     Provide a dummy weak alias for boards not implementing this hook. The
43361     cost of this is:
43362       - 2 bytes for the dummy function (retal 0)
43363       - 2 bytes for each unnecessary function call (short rcall)
43365     which is a pretty small price to pay for avoiding lots of #ifdef
43366     clutter. In this particular case, all boards probably end up slightly
43367     smaller because we avoid the conditional checking if the gclk_init
43368     symbol is NULL.
43370     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43372 commit abdde2b1d570b1ee77606bf783444fcddf7f0965
43373 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43374 Date:   Sun Aug 31 18:07:35 2008 +0200
43376     hammerhead: Use gclk helper functions
43378     Use the new gclk helper functions to set up the PHY clock instead of
43379     accessing the PM registers directly.
43381     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43383 commit 98090cd75cdb40b2ab94c806c338540a5716748b
43384 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43385 Date:   Sun Aug 31 18:05:32 2008 +0200
43387     avr32: Add gclk helper functions
43389     Add two helper functions for configuring and enabling generic clocks:
43390       - gclk_enable_output: Enables output on a GCLKx pin
43391       - gclk_set_rate: Configures a gclk to run at a specific rate
43393     This should eliminate any reason to go mucking about with PM registers
43394     from board code.
43396     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43398 commit ab0df36fc7db9dda0b786b909f653e279dfeb9cf
43399 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43400 Date:   Fri Aug 29 21:09:49 2008 +0200
43402     avr32: refactor the portmux/gpio code
43404       - Separate the portmux configuration functionality from the GPIO pin
43405         control API.
43406       - Separate the controller-specific code from the chip-specific code.
43407       - Allow "ganged" port configuration (multiple pins at once).
43408       - Add more flexibility to the "canned" peripheral select functions:
43409           - Allow using more than 23 address bits, more chip selects, as
43410         well as NAND- and CF-specific pins.
43411           - Make the MACB SPEED pin optional, and choose between MII/RMII
43412         using a parameter instead of an #ifdef.
43413           - Make it possible to use other MMC slots than slot 0, and support
43414         different MMC/SDCard data bus widths.
43415       - Use more reasonable pull-up defaults; floating pins may consume a
43416         lot of power.
43417       - Get rid of some custom portmux code from the mimc200 board code. The
43418         old gpio/portmux API couldn't really handle its requirements, but
43419         the new one can.
43420       - Add documentation.
43422     The end result is slightly smaller code for all boards. Which isn't
43423     really the point, but at least it isn't any larger.
43425     This has been verified on ATSTK1002 and ATNGW100. I'd appreciate if
43426     the board maintainers could help me test this on their boards. In
43427     particular, the mimc200 port has lost a lot of code, so I'm hoping Mark
43428     can help me out.
43430     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43431     Cc: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
43432     Cc: Mark Jackson <mpfj@mimc.co.uk>
43433     Cc: Alex Raimondi <alex.raimondi@miromico.ch>
43434     Cc: Julien May <julien.may@miromico.ch>
43436     Changes since v1:
43437       * Enable pullup on NWAIT
43438       * Add missing include to portmux-pio.h
43439       * Rename CONFIG_PIO2 -> CONFIG_PORTMUX_PIO to match docs
43441 commit 4c24e8288c601cb773ab02528b48a8577970e867
43442 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43443 Date:   Sat Aug 30 17:28:36 2008 +0200
43445     avr32: data_bits should reflect the actual number of data bits
43447     Make the data_bits enum in struct sdram_config reflect the actual number
43448     of data bits on the bus, i.e. 16 or 32. Having 0 mean 16 bits and 1 mean
43449     32 bits is just too confusing.
43451     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43453 commit 66b7bc5175325809718d8d49ef073bc1036ad71b
43454 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43455 Date:   Fri Aug 29 17:48:18 2008 +0200
43457     avr32: Update README
43459     Remove some outdated and/or unnecessary information, and add updated
43460     information about the toolchain and buildroot.
43462     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43464 commit c75e772a2f061a508bba28ded1b5bea91f0442b0
43465 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43466 Date:   Sun Aug 31 23:28:15 2008 +0900
43468     sh: Remove CC line from board's Makefile
43470     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43472 commit 468eae0660de6fdfd9999944c536ecc4797bd944
43473 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43474 Date:   Sun Aug 31 23:25:57 2008 +0900
43476     sh: Replaced "@./mkconfig" for @$(MKCONFIG)
43478     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43480 commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
43481 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43482 Date:   Thu Aug 28 14:50:52 2008 +0900
43484     sh: Add support sh2 to MAKEALL
43486     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43487     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43489 commit 6f3d8bb5faa12dbf3031382286784c978df038ee
43490 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43491 Date:   Thu Aug 28 14:52:23 2008 +0900
43493     sh: Fix compile error rsk7203 board
43495     This boards used old type preprocessor.
43496     This patch fix compile error.
43498     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43499     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43501 commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
43502 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43503 Date:   Thu Aug 28 14:53:31 2008 +0900
43505     sh: Fix compile error sh7785lcr board
43507     This boards used old type preprocessor.
43508     This patch fix compile error.
43510     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43511     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43513 commit 6f0da4972e48f99d37bc522814940a6022cd3084
43514 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43515 Date:   Fri Aug 22 17:39:09 2008 +0900
43517     sh: Renesas Solutions AP325RXA board support
43519     AP325RXA is SH7723's reference board.
43520     This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
43521     In this patch, support SCIF, NOR Flash, and Ethernet.
43523     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43524     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43526 commit ab09f433b50bb83b5e440c335bc3839ee069e534
43527 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43528 Date:   Fri Aug 22 17:48:51 2008 +0900
43530     sh: add support Renesas SH7723
43532     Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
43533     This patch supports CPU register's header file and SCIF serial driver.
43535     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43536     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43538 commit c655fad06ba3fb042dbc667724a40e1a9a091248
43539 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43540 Date:   Sun Aug 31 23:02:04 2008 +0900
43542     sh: Renesas RSK+ 7203 board support
43544     This adds initial support for the RTE RSK+ SH7203 board.
43546     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43547     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43549 commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
43550 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43551 Date:   Thu Jul 3 23:11:02 2008 +0900
43553     sh: Add support Renesas SH7203 processor
43555     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43556     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43558 commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
43559 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43560 Date:   Sun Aug 31 22:48:33 2008 +0900
43562     sh: Add support SH2/SH2A which is CPU of Renesas Technology
43564     Add support SH2/SH2A basic function.
43566     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43567     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43569 commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
43570 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43571 Date:   Sun Aug 31 22:45:08 2008 +0900
43573     sh: Renesas R0P7785LC0011RL board support
43575     This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
43576     Graphic, Ethernet, USB, SD, RTC, and I2C controller.
43578     This patch supports the following functions:
43579      - 128MB DDR2-SDRAM (29-bit address mode only)
43580      - NOR Flash
43581      - USB host
43582      - Ethernet
43584     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
43585     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43587 commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
43588 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
43589 Date:   Thu Jul 10 19:32:53 2008 +0900
43591     sh: add support for SH7785
43593     Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
43594     This patch supports CPU register's header file.
43596     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
43597     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43599 commit d6e04258be8f2408845468d3cf722a4cf0433445
43600 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43601 Date:   Sun Aug 31 04:45:42 2008 +0200
43603     davinci: fix remaining dm644x_eth
43605     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43607 commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
43608 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43609 Date:   Sun Aug 31 04:24:56 2008 +0200
43611     fs: Move conditional compilation to Makefile
43613     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43615 commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
43616 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43617 Date:   Sun Aug 31 04:24:55 2008 +0200
43619     devices: merge to list_head
43621     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43623 commit ef0255fc75f28655f9681422079287d68a14dbaa
43624 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43625 Date:   Sun Aug 31 04:24:51 2008 +0200
43627     update linux/list
43629     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43631 commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
43632 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43633 Date:   Sun Aug 31 00:39:48 2008 +0200
43635     smdk6400: add gitignore
43637     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43639 commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
43640 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43641 Date:   Sun Aug 31 00:39:48 2008 +0200
43643     smdk6400: Use CONFIG_FLASH_CFI_DRIVER
43645     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43647 commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
43648 Author: Guennadi Liakhovetski <lg@denx.de>
43649 Date:   Sun Aug 31 00:39:47 2008 +0200
43651     smdk6400: remove redundant bootargs definition
43653     Double bootargs setting leads to a duplicated environmant entry.
43655     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43657 commit 11edcfe260f20dcea79284a3e95270989d433854
43658 Author: Guennadi Liakhovetski <lg@denx.de>
43659 Date:   Sun Aug 31 00:39:47 2008 +0200
43661     ARM: Add support for S3C6400 based SMDK6400 board
43663     SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
43664     driver for it too. The board can also boot from the NOR flash, but due to
43665     hardware limitations it can only address 64KiB on it, which is not enough
43666     for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
43668     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43670 commit e0056b341069796eaea11eae0fc8eb93a3dceaac
43671 Author: Guennadi Liakhovetski <lg@denx.de>
43672 Date:   Sun Aug 31 00:39:47 2008 +0200
43674     NAND: add NAND driver for S3C64XX
43676     Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
43678     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43680 commit 3fe7b589f9c7463df39056f8872006a67f56a91c
43681 Author: Guennadi Liakhovetski <lg@denx.de>
43682 Date:   Sun Aug 31 00:39:47 2008 +0200
43684     S3C64XX: remove broken HWFLOW support from the serial driver
43686     As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
43687     broken and currently unused. Remove it.
43689     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43691 commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
43692 Author: Guennadi Liakhovetski <lg@denx.de>
43693 Date:   Sun Aug 31 00:39:47 2008 +0200
43695     serial: add S3C64XX serial driver
43697     Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
43699     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43701 commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
43702 Author: Guennadi Liakhovetski <lg@denx.de>
43703 Date:   Sun Aug 31 00:39:46 2008 +0200
43705     USB: Add support for OHCI controller on S3C6400
43707     Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
43708     try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
43709     it should work too and we could still profit from instruction cache.
43711     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43713 commit 9b07773f8883665b002500c190507e9fd99b7181
43714 Author: Guennadi Liakhovetski <lg@denx.de>
43715 Date:   Sun Aug 31 00:39:46 2008 +0200
43717     ARM: Add arm1176 core with S3C6400 SoC
43719     Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
43721     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
43723 commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
43724 Author: Sandeep Paulraj <s-paulraj@ti.com>
43725 Date:   Sun Aug 31 00:39:46 2008 +0200
43727     ARM DaVinci: Changing function names for EMAC driver
43729     DM644x is just one of a series of DaVinci chips that use the EMAC driver.
43730     By replacing all the function names that start with dm644x_* to davinci_*
43731     we make these function more portable. I have tested this change on my EVM.
43732     DM6467 is another DaVinci SOC which uses the EMAC driver and i will
43733     be sending patches that add DaVinci DM6467 support to the list soon.
43735     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
43737 commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
43738 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
43739 Date:   Sat Aug 30 23:21:30 2008 +0200
43741     Integrator[AP/CP] - Remove unused file memsetup.S
43743     - memsetup.s is changed/merged to lowlevel_init.S
43744       memsetup.S has a global label memsetup that just returns back to caller
43745     - memsetup global label is changed/merged to lowlevel_init
43746       This label is not called from anywhere.
43748     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
43750 commit 89d51d022a63be1a851eda983c8cbce1a044f65f
43751 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
43752 Date:   Wed Aug 27 21:35:52 2008 +0200
43754     ARM DaVinci: Standardize names of directories/files
43756     ARM DaVinci: Standardize names of directories/files.
43758     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
43759     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43761 commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
43762 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
43763 Date:   Fri Jul 11 15:10:13 2008 -0400
43765     ARM DaVinci: Move common functions to board/davinci/common
43767     ARM DaVinci: Move common functions to board/davinci/common.
43769     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
43771 commit c2b4b2e4814f4ace9015fdb64132894327400bf0
43772 Author: Stefan Roese <sr@denx.de>
43773 Date:   Fri Aug 29 11:56:49 2008 +0200
43775     ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
43777     This function is needed for the new NAND infrastructure. We only need
43778     a dummy implementation though for the NDFC.
43780     Signed-off-by: Stefan Roese <sr@denx.de>
43782 commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
43783 Author: Stefan Roese <sr@denx.de>
43784 Date:   Fri Aug 29 12:06:27 2008 +0200
43786     ppc4xx: Increase image size for NAND boot target
43788     This is needed since now with HUSH enabled (amcc-common.h) the image
43789     read from NAND exceeds the previous limit.
43791     Signed-off-by: Stefan Roese <sr@denx.de>
43793 commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
43794 Author: Ben Warren <biggerbadderben@gmail.com>
43795 Date:   Thu Aug 28 23:58:30 2008 -0700
43797     Move MPC512x_FEC driver to drivers/net
43799     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43801 commit 80b00af01b3c9154774de2936f05a051e92f6a03
43802 Author: Ben Warren <biggerbadderben@gmail.com>
43803 Date:   Thu Aug 28 23:58:29 2008 -0700
43805     Move MPC5xxx_FEC driver to drivers/net
43807     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43809 commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
43810 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43811 Date:   Fri Aug 29 21:53:57 2008 +0200
43813     cmd_terminal: remove no need ifdef
43815     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43817 commit 578118bdf122877ae769776be002255be447b4fa
43818 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43819 Date:   Fri Aug 29 21:53:57 2008 +0200
43821     common/Makefile: order by functionality
43823     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43825 commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
43826 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43827 Date:   Fri Aug 29 21:53:56 2008 +0200
43829     miiphyutil: Move conditional compilation to Makefile
43831     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43833 commit 81789c39db3f0f6b621df8c0ec66014d701f368e
43834 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43835 Date:   Fri Aug 29 21:53:37 2008 +0200
43837     autoscript: Move conditional compilation to Makefile
43839     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43841 commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
43842 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43843 Date:   Fri Aug 29 01:18:11 2008 +0200
43845     crc16: move to lib_generic
43847     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43849 commit 55195773eacefb22dd483a3c560ea30a14263ce1
43850 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43851 Date:   Fri Aug 29 01:18:01 2008 +0200
43853     miiphybb: move to drivers/net/phy
43855     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43857 commit e8314035996a9118ac5948df2ff8a2f2161ed67a
43858 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43859 Date:   Thu Aug 28 12:31:51 2008 +0200
43861     soft_spi: move to drivers/spi
43863     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43865 commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
43866 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43867 Date:   Thu Aug 28 12:31:51 2008 +0200
43869     soft_i2c: move to drivers/i2c
43871     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43873 commit 717a222229fdb77703e9174d0eb08a4b41febf49
43874 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43875 Date:   Thu Aug 28 12:31:48 2008 +0200
43877     gunzip: move to lib_generic
43879     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43881 commit 52aef8f9ba28b747973bf76741c23db658d5773c
43882 Author: Wolfgang Ocker <weo@reccoware.de>
43883 Date:   Tue Aug 26 19:55:23 2008 +0200
43885     ppc4xx: NAND configuration
43887     Made NAND bank configuration setting a config variable.
43889     Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
43890     Signed-off-by: Stefan Roese <sr@denx.de>
43892 commit 5bc542a593abc9e974fbd34704af85c37c366c60
43893 Author: Victor Gallardo <vgallardo@amcc.com>
43894 Date:   Thu Aug 28 16:03:28 2008 -0700
43896     ppc4xx: fix UIC external_interrupt hang on UIC0
43898     This patch fixes a UIC external_interrupt hang if critical or non-critical
43899     interrupt is set at the same time as a normal interrupt is set on UIC0.
43901     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
43902     Signed-off-by: Stefan Roese <sr@denx.de>
43904 commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
43905 Author: Prodyut  Hazarika <phazarika@amcc.com>
43906 Date:   Wed Aug 27 16:39:00 2008 -0700
43908     ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
43910     Removed Magic numbers from Initialization preload registers
43911     Tested with Kilauea, Glacier, Canyonlands and Katmai boards
43912     About 5-7% improvement seen for LMBench memtests
43914     Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
43915     Signed-off-by: Stefan Roese <sr@denx.de>
43917 commit 8a490422bed685c9491274ec997f62061d88620b
43918 Author: John Rigby <jrigby@freescale.com>
43919 Date:   Thu Aug 28 13:17:07 2008 -0600
43921     ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
43923     MPC5121 rev 2 silicon has a new register for controlling how long
43924     CS is asserted after deassertion of ALE in multiplexed mode.
43926     The default is to assert CS together with ALE.  The alternative
43927     is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
43929     The default is wrong for the NOR flash and CPLD on the ADS5121.
43931     This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
43932     it does so conditionally based on silicon rev 2.0 or greater.
43934     Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
43935     Signed-off-by: John Rigby <jrigby@freescale.com>
43937 commit 5d9a5efa4b332f442b54a755d49969123c3a8742
43938 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43939 Date:   Tue Aug 19 00:56:46 2008 +0600
43941     Add I2C frequency dividers for ColdFire
43943     The existing I2C freqency dividers for FDR does not apply
43944     to ColdFire platforms; thus, a seperate table is added
43945     based on MCF5xxx Reference Manual
43947     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
43948     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43949     Acked-by: Tabi Timur <timur@freescale.com>
43951 commit eec567a67e00d1ed8d941e9098b7d421f4091abf
43952 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43953 Date:   Tue Aug 19 03:01:19 2008 +0600
43955     ColdFire: I2C fix for multiple platforms
43957     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43959 commit d53cf6a9c7423cba668b867978648645f71c3090
43960 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43961 Date:   Tue Aug 19 00:37:13 2008 +0600
43963     ColdFire: Add CONFIG_MII_INIT for M5272C3
43965     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43967 commit f78ced3028d4130b24a318943a70cf5584ab16f4
43968 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43969 Date:   Tue Aug 19 00:26:25 2008 +0600
43971     ColdFire: Multiple fixes for MCF5445x platforms
43973     Add FEC pin set and mii reset in __mii_init(). Change
43974     legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
43975     change cfi_offset to 0, and change CFG_FLASH_CFI to
43976     CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
43977     M54455EVB env settings in configuration file.
43979     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43981 commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
43982 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43983 Date:   Fri Aug 15 18:24:25 2008 +0000
43985     ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
43987     The user manuals recommend 7.
43989     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
43990     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43992 commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
43993 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43994 Date:   Fri Aug 15 16:50:07 2008 +0000
43996     ColdFire: Raise uart baudrate to 115200 bps
43998     M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
43999     uart baudrate increase from 19200 to 115200 bps
44001     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
44003 commit ab6ba842682552ccf071d0034da0a20633d1d1ac
44004 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
44005 Date:   Wed Aug 13 12:07:03 2008 +0000
44007     ColdFire: Fix board.c warning message
44009     Implicit declaration of nand_init() warning message
44011     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
44013 commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
44014 Author: Kumar Gala <galak@kernel.crashing.org>
44015 Date:   Wed Aug 27 01:10:34 2008 -0500
44017     FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
44019     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44021 commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
44022 Author: Heiko Schocher <hs@denx.de>
44023 Date:   Thu Aug 21 20:44:49 2008 +0200
44025     mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
44027     Signed-off-by: Heiko Schocher <hs@denx.de>
44029 commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
44030 Author: Kumar Gala <galak@kernel.crashing.org>
44031 Date:   Tue Aug 19 14:46:36 2008 -0500
44033     mpc85xx: remove redudant code with lib_ppc/interrupts.c
44035     For some reason we duplicated the majority of code in lib_ppc/interrupts.c
44036     not show how that happened, but there is no good reason for it.
44038     Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
44039     they exist.
44041     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44043 commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
44044 Author: Kumar Gala <galak@kernel.crashing.org>
44045 Date:   Fri Jul 25 13:31:05 2008 -0500
44047     mpc85xx: Add support for the MPC8536DS reference board
44049     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44050     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
44051     Signed-off-by: Dejan Minic <minic@freescale.com>
44052     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
44053     Signed-off-by: Dave Liu <daveliu@freescale.com>
44054     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44056 commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
44057 Author: Kumar Gala <galak@kernel.crashing.org>
44058 Date:   Tue Aug 12 11:14:19 2008 -0500
44060     mpc85xx: Add support for the MPC8536
44062     The MPC8536 Adds SDHC and SATA controllers to the PQ3 family.  We
44063     also have SERDES init code for the 8536.
44065     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44066     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
44067     Signed-off-by: Dejan Minic <minic@freescale.com>
44068     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
44069     Signed-off-by: Dave Liu <daveliu@freescale.com>
44071 commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
44072 Author: Kumar Gala <galak@kernel.crashing.org>
44073 Date:   Tue Aug 12 11:13:08 2008 -0500
44075     mpc85xx: Add support for the MPC8572DS reference board
44077     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44079 commit 457caecdbca3df21a93abff19eab12dbc61b7897
44080 Author: Kumar Gala <galak@kernel.crashing.org>
44081 Date:   Wed Aug 27 01:05:35 2008 -0500
44083     FSL DDR: Remove old SPD support from cpu/mpc85xx
44085     All 85xx boards have been converted to the new code so we can
44086     remove the old SPD DDR setup code.
44088     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44090 commit 0e7927db138976469e7257e29c1338050a50fcd9
44091 Author: Kumar Gala <galak@kernel.crashing.org>
44092 Date:   Wed Aug 27 01:04:07 2008 -0500
44094     FSL DDR: Convert STXSSA to new DDR code.
44096     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44098 commit c360d9b970fbb9c13744c355879671165bbb9b9e
44099 Author: Kumar Gala <galak@kernel.crashing.org>
44100 Date:   Wed Aug 27 01:03:42 2008 -0500
44102     FSL DDR: Convert STXGP3 to new DDR code.
44104     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44106 commit 8e55313b7ae12352a343f9b9962e662dbd897187
44107 Author: Kumar Gala <galak@kernel.crashing.org>
44108 Date:   Tue Aug 26 23:52:58 2008 -0500
44110     FSL DDR: Convert SBC8560 to new DDR code.
44112     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44114 commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
44115 Author: Kumar Gala <galak@kernel.crashing.org>
44116 Date:   Tue Aug 26 23:52:32 2008 -0500
44118     FSL DDR: Convert MPC8540EVAL to new DDR code.
44120     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44122 commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
44123 Author: Kumar Gala <galak@kernel.crashing.org>
44124 Date:   Tue Aug 26 23:52:07 2008 -0500
44126     FSL DDR: Convert PM856 to new DDR code.
44128     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44130 commit d53bd3e17bd4f460257c19255569ea6dcfaae817
44131 Author: Kumar Gala <galak@kernel.crashing.org>
44132 Date:   Tue Aug 26 23:51:49 2008 -0500
44134     FSL DDR: Convert PM854 to new DDR code.
44136     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44138 commit 33b9079ba20926f14238fff863b68a98e938948e
44139 Author: Kumar Gala <galak@kernel.crashing.org>
44140 Date:   Tue Aug 26 23:15:28 2008 -0500
44142     FSL DDR: Convert sbc8548 to new DDR code.
44144     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44146 commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
44147 Author: Kumar Gala <galak@kernel.crashing.org>
44148 Date:   Tue Aug 26 23:14:14 2008 -0500
44150     FSL DDR: Convert atum8548 to new DDR code.
44152     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44154 commit be0bd8234b9777ecd63c4c686f72af070d886517
44155 Author: Kumar Gala <galak@kernel.crashing.org>
44156 Date:   Tue Aug 26 22:56:56 2008 -0500
44158     FSL DDR: Convert socrates to new DDR code.
44160     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44162 commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
44163 Author: Kumar Gala <galak@kernel.crashing.org>
44164 Date:   Tue Aug 26 08:02:30 2008 -0500
44166     FSL DDR: Convert MPC8544DS to new DDR code.
44168     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44170 commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
44171 Author: Jon Loeliger <jdl@freescale.com>
44172 Date:   Tue Mar 18 13:51:05 2008 -0500
44174     FSL DDR: Convert MPC8568MDS to new DDR code.
44176     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44177     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44179 commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
44180 Author: Jon Loeliger <jdl@freescale.com>
44181 Date:   Tue Mar 18 13:51:06 2008 -0500
44183     FSL DDR: Convert MPC8548CDS to new DDR code.
44185     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44186     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44188 commit aa11d85cf318b961e029fe50d68ca47d004bce93
44189 Author: Jon Loeliger <jdl@freescale.com>
44190 Date:   Mon Mar 17 15:48:18 2008 -0500
44192     FSL DDR: Convert MPC8541CDS to new DDR code.
44194     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44195     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44197 commit 2b40edb10d81da7bba724edbccd7f53777112579
44198 Author: Jon Loeliger <jdl@freescale.com>
44199 Date:   Tue Mar 18 11:12:42 2008 -0500
44201     FSL DDR: Convert MPC8555ADS to new DDR code.
44203     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44204     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44206 commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
44207 Author: Jon Loeliger <jdl@freescale.com>
44208 Date:   Tue Mar 18 11:12:44 2008 -0500
44210     FSL DDR: Convert MPC8560ADS to new DDR code.
44212     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44213     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44215 commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
44216 Author: Kumar Gala <galak@kernel.crashing.org>
44217 Date:   Fri Jun 6 13:12:18 2008 -0500
44219     FSL DDR: Convert MPC8540ADS to new DDR code.
44221     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44223 commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
44224 Author: Kumar Gala <galak@kernel.crashing.org>
44225 Date:   Tue Aug 26 21:34:55 2008 -0500
44227     FSL DDR: Add 85xx specific register setting
44229     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44231 commit 6fb1b7346849ccd0c20306143e334f5b76143070
44232 Author: Kumar Gala <galak@kernel.crashing.org>
44233 Date:   Mon Jun 9 11:07:46 2008 -0500
44235     FSL DDR: Add e500 TLB helper for DDR code
44237     Provide a helper function that board code can call to map TLBs when
44238     setting up DDR.
44240     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44242 commit d26b739afe5a6760bd345743188759cd9d0f3b47
44243 Author: Andrew Dyer <adyer@righthandtech.com>
44244 Date:   Tue Aug 26 17:03:38 2008 -0500
44246     dm9000 remove dead external phy support, gpio fix
44248     dm9000 has code to detect and initialize external phy parts, but later
44249     on in the code the part is forced to use the internal phy
44250     unconditionally.  Remove the unused/untested code.
44252     change the GPIO initialization so that only the GPIO used as an
44253     internal phy reset (hardwired in the chip) is set as an output.  The
44254     remaining GPIO need to be handled by board specific code to prevent
44255     possible drive conflicts.  Set as inputs for safety.
44257     replace a few magic numbers with defines
44259     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
44260     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44262 commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
44263 Author: Peter Tyser <ptyser@xes-inc.com>
44264 Date:   Tue Aug 26 11:17:48 2008 -0500
44266     Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
44268     cmd_net.c command descriptions were updated to describe the optional
44269     hostIPaddr argument.  The dhcp command help message was also updated
44270     to more closely reflect the other commands in cmd_net.c
44272     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
44273     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44275 commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
44276 Author: Remy Bohmer <linux@bohmer.net>
44277 Date:   Wed Aug 20 11:30:28 2008 +0200
44279     Fix bogus error message in the DHCP handler
44281     The DHCP handler has 1 state that is not listed in this case, causing a
44282     failure message when there is actually no failure.
44284     Signed-off-by: Remy Bohmer <linux@bohmer.net>
44285     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44287 commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
44288 Author: Remy Bohmer <linux@bohmer.net>
44289 Date:   Wed Aug 20 11:30:27 2008 +0200
44291     Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
44293     The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
44294     missing extern inside the net/bootp.h header
44296     Signed-off-by: Remy Bohmer <linux@bohmer.net>
44297     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44299 commit 1803f7f91ff35ca402259065df7557107dcf28a2
44300 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
44301 Date:   Tue Aug 19 21:26:32 2008 +0000
44303     ColdFire: Add FEC Buffer descriptors in SRAM
44305     Add FEC Buffer descriptors and data buffer in SRAM for
44306     faster execution and access.
44308     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
44309     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44311 commit 429be27ce195210d4b9decf9e867b9ca6155a87d
44312 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
44313 Date:   Thu Aug 21 23:55:11 2008 +0000
44315     Fix ColdFire FEC warning messages
44317     Types mismatch and implicit declaration of icache_invalid()
44318     warning messages
44320     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
44321     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44323 commit 6a002171098e968bd5b362347d2831224fab6048
44324 Author: Ben Warren <biggerbadderben@gmail.com>
44325 Date:   Sat Jul 12 00:17:50 2008 -0700
44327     Moved initialization of SKGE Ethernet driver to board code.
44329     The only board using this driver is the SL8245 board.
44330     Removed initialization for the driver from net/eth.c
44332     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44334 commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
44335 Author: Ben Warren <biggerbadderben@gmail.com>
44336 Date:   Sat Jul 12 00:08:45 2008 -0700
44338     Moved conditional compilation to Makefile for SK98 Ethernet driver
44340     Brute-force removal of #ifdefs.  Didn't touch the code.
44341     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44343 commit 65d3d99c28dc363d15eaee78225ff643df499b97
44344 Author: Ben Warren <biggerbadderben@gmail.com>
44345 Date:   Fri Jul 11 23:42:19 2008 -0700
44347     Moved initialization of ULI526X Ethernet driver to board code.
44349     The only board using this driver is the Freescale MPC8610HPCD board.
44350     Removed initialization for the driver from net/eth.c
44352     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44354 commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
44355 Author: Ben Warren <biggerbadderben@gmail.com>
44356 Date:   Fri Jul 11 23:15:28 2008 -0700
44358     Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
44360     Added board_eth_init() function to bf537-stamp board.
44361     Removed initialization for the Blackin EMAC driver from net/eth.c
44363     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44365 commit fc363ce35408f348cacced68505f3747a53e3d7c
44366 Author: Ben Warren <biggerbadderben@gmail.com>
44367 Date:   Wed Jul 9 01:04:19 2008 -0700
44369     Moved initialization of GRETH Ethernet driver to CPU directory
44371     Added a cpu_eth_init() function to leon2/leon3 CPU directories and
44372     removed code from net/eth.c
44374     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44376 commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
44377 Author: Ben Warren <biggerbadderben@gmail.com>
44378 Date:   Tue Aug 26 22:16:25 2008 -0700
44380     Moved initialization of MCFFEC Ethernet driver to CPU directory
44382     Added a cpu_eth_init() function to coldfire CPU directories and
44383     removed code from net/eth.c
44385     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44387 commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
44388 Author: Ben Warren <biggerbadderben@gmail.com>
44389 Date:   Tue Aug 26 22:12:36 2008 -0700
44391     Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
44393     Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
44394     removed code from net/eth.c
44396     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44398 commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
44399 Author: Kumar Gala <galak@kernel.crashing.org>
44400 Date:   Tue Aug 26 15:01:38 2008 -0500
44402     FSL DDR: Remove old SPD support from cpu/mpc86xx
44404     All 86xx boards have been converted to the new code so we can
44405     remove the old SPD DDR setup code.
44407     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44409 commit 9bd4e5911b750837515466bc7449087698b88e0e
44410 Author: Kumar Gala <galak@kernel.crashing.org>
44411 Date:   Tue Aug 26 15:01:37 2008 -0500
44413     FSL DDR: Convert SBC8641D to new DDR code.
44415     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44417 commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
44418 Author: Jon Loeliger <jdl@freescale.com>
44419 Date:   Tue Aug 26 15:01:36 2008 -0500
44421     FSL DDR: Convert MPC8610HPCD to new DDR code.
44423     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44424     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44426 commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
44427 Author: Kumar Gala <galak@kernel.crashing.org>
44428 Date:   Tue Aug 26 15:01:35 2008 -0500
44430     FSL DDR: Convert MPC8641HPCN to new DDR code.
44432     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44433     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44435 commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
44436 Author: Kumar Gala <galak@kernel.crashing.org>
44437 Date:   Tue Aug 26 15:01:34 2008 -0500
44439     FSL DDR: Add 86xx specific register setting
44441     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44443 commit 233fdd502a6c227f476212b3097653ad48d7e254
44444 Author: Kumar Gala <galak@kernel.crashing.org>
44445 Date:   Tue Aug 26 15:01:32 2008 -0500
44447     FSL DDR: Add DDR2 DIMM paramter support
44449     Compute DIMM parameters based upon the SPD information.
44451     Signed-off-by: James Yang <James.Yang@freescale.com>
44452     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44453     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44455 commit 05c05a2363a6ac11e0e405926034546ffad71fad
44456 Author: Kumar Gala <galak@kernel.crashing.org>
44457 Date:   Tue Aug 26 15:01:30 2008 -0500
44459     FSL DDR: Add DDR1 DIMM paramter support
44461     Compute DIMM parameters based upon the SPD information in spd.
44463     Signed-off-by: James Yang <James.Yang@freescale.com>
44464     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44465     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44467 commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
44468 Author: Kumar Gala <galak@kernel.crashing.org>
44469 Date:   Tue Aug 26 15:01:29 2008 -0500
44471     FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
44473     The main purpose of this rewrite it to be able to share the same
44474     initialization code on all FSL PowerPC products that have DDR
44475     controllers.  (83xx, 85xx, 86xx).
44477     The code is broken up into the following steps:
44478         GET_SPD
44479         COMPUTE_DIMM_PARMS
44480         COMPUTE_COMMON_PARMS
44481         GATHER_OPTS
44482         ASSIGN_ADDRESSES
44483         COMPUTE_REGS
44484         PROGRAM_REGS
44486     This allows us to share more code an easily allow for board specific code
44487     overrides.
44489     Additionally this code base adds support for >4G of DDR and provides a
44490     foundation for supporting interleaving on processors with more than one
44491     controller.
44493     Signed-off-by: James Yang <James.Yang@freescale.com>
44494     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44495     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
44496     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
44497     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44499 commit f784e32b4bce0013983506b11af4b85b8ca3d36e
44500 Author: Kumar Gala <galak@kernel.crashing.org>
44501 Date:   Tue Aug 26 15:01:28 2008 -0500
44503     FSL DDR: Provide a generic set_ddr_laws()
44505     Provide a helper function that will setup the last available
44506     LAWs (upto 2) for DDR.  Useful for SPD/dyanmic DDR setting code.
44508     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44510 commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
44511 Author: James Yang <James.Yang@freescale.com>
44512 Date:   Tue Aug 26 15:01:27 2008 -0500
44514     Add proper SPD definitions for DDR1/2/3
44516     Also adds helper functions for DDR1/2 to verify the checksum.
44518     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44520 commit 285db74716c724ae8a0ff177878fd09a74428c7b
44521 Author: Wolfgang Denk <wd@denx.de>
44522 Date:   Wed Aug 27 01:02:48 2008 +0200
44524     Update CHANGELOG
44526     Signed-off-by: Wolfgang Denk <wd@denx.de>
44528 commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
44529 Author: Heiko Schocher <hs@denx.de>
44530 Date:   Tue Aug 19 10:08:49 2008 +0200
44532     Add support for muas3001 board (MPC8270)
44534     Signed-off-by: Heiko Schocher <hs@denx.de>
44536 commit 322098bff32410d2a00031649b47c4ec90a66d9a
44537 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
44538 Date:   Tue Aug 19 08:31:18 2008 +0530
44540     common/cmd_load.c cleanup - remove unused variables
44542     - Remove unused global variable os_data_count.
44543     - Remove unused variable z.
44545     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
44547 commit 306620b762a4f9fa6678568ad2e8772dec145208
44548 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
44549 Date:   Mon Aug 18 13:35:27 2008 +0200
44551     remove MVS1 board
44553     MVS1 board has reached end-of-life and can be removed completely.
44555     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
44557 commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
44558 Author: Kumar Gala <galak@kernel.crashing.org>
44559 Date:   Fri Aug 15 08:24:45 2008 -0500
44561     bootm: refactor do_reset and os boot function args
44563     There is no need for each OS specific function to call do_reset() we
44564     can just do it once in bootm. This means its feasible on an error for
44565     the OS boot function to return.
44567     Also, remove passing in cmd_tbl_t as its not needed by the OS boot
44568     functions.  flag isn't currently used but might be in the future so
44569     we left it alone.
44571     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44573 commit 40afac22a9c602e55c501c800f1c064324711b56
44574 Author: Kumar Gala <galak@kernel.crashing.org>
44575 Date:   Fri Aug 15 08:24:44 2008 -0500
44577     fdt: Added resize command
44579     Resize the fdt to size + padding to 4k boundary
44581     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44583 commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
44584 Author: Kumar Gala <galak@kernel.crashing.org>
44585 Date:   Fri Aug 15 08:24:43 2008 -0500
44587     fdt: refactor initrd related code
44589     Created a new fdt_initrd() to deal with setting the initrd properties
44590     in the device tree and fixing up the mem reserve.  We can use this
44591     both in the choosen node handling and lets us remove some duplicated
44592     code when we fixup the initrd info in bootm on PPC.
44594     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44596 commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
44597 Author: Kumar Gala <galak@kernel.crashing.org>
44598 Date:   Fri Aug 15 08:24:42 2008 -0500
44600     fdt: refactor fdt resize code
44602     Move the fdt resizing code out of ppc specific boot code and into
44603     common fdt support code.
44605     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44607 commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
44608 Author: Kumar Gala <galak@kernel.crashing.org>
44609 Date:   Fri Aug 15 08:24:41 2008 -0500
44611     bootm: refactor image detection and os load steps
44613     Created a bootm_start() that handles the parsing and detection of all
44614     the images that will be used by the bootm command (OS, ramdisk, fdt).
44615     As part of this we now tract all the relevant image offsets in the
44616     bootm_headers_t struct. This will allow us to have all the needed
44617     state for future sub-commands and lets us reduce a bit of arch
44618     specific code on SPARC.
44620     Created a bootm_load_os() that deals with decompression and loading
44621     the OS image.
44623     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44625 commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
44626 Author: Kumar Gala <galak@kernel.crashing.org>
44627 Date:   Fri Aug 15 08:24:40 2008 -0500
44629     bootm: move lmb into the bootm_headers_t structure
44631     To allow for persistent state between future bootm subcommands we
44632     need the lmb to exist in a global state.
44633     Moving it into the bootm_headers_t allows us to do that.
44635     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44637 commit 54f9c86691309b2f919f567f9255b8bcad2c7651
44638 Author: Kumar Gala <galak@kernel.crashing.org>
44639 Date:   Fri Aug 15 08:24:39 2008 -0500
44641     bootm: Set working fdt address as part of the bootm flow
44643     Set the fdt working address so "fdt FOO" commands can be used as part
44644     of the bootm flow.  Also set an the environment variable "fdtaddr"
44645     with the value.
44647     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44649 commit 06a09918f3903450313e2047a9cc258bf5872f46
44650 Author: Kumar Gala <galak@kernel.crashing.org>
44651 Date:   Fri Aug 15 08:24:38 2008 -0500
44653     bootm: refactor fdt locating and relocation code
44655     Move the code that handles finding a device tree blob and relocating
44656     it (if needed) into common code so all arch's have access to it.
44658     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44660 commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
44661 Author: Kumar Gala <galak@kernel.crashing.org>
44662 Date:   Fri Aug 15 08:24:37 2008 -0500
44664     bootm: refactor ramdisk locating code
44666     Move determing if we have a ramdisk and where its located into the
44667     common code. Keep track of the ramdisk start and end in the
44668     bootm_headers_t image struct.
44670     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44672 commit c160a9544743e80e8889edb2275538e7764ce334
44673 Author: Kumar Gala <galak@kernel.crashing.org>
44674 Date:   Fri Aug 15 08:24:36 2008 -0500
44676     bootm: refactor entry point code
44678     Move entry point code out of each arch and into common code.
44679     Keep the entry point in the bootm_headers_t images struct.
44681     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44683 commit 20220d22b9f41446288588cd2e457e0077a18bed
44684 Author: Randy Vinson <rvinson@mvista.com>
44685 Date:   Wed Aug 13 11:44:57 2008 -0700
44687     mpc7448hpc2: Fix PCI I/O space mapping.
44689     PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
44690     PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
44691     space such that 0xFA000000 in the processor's address space maps to 0
44692     on the PCI I/O bus.
44694     Signed-off-by Randy Vinson <rvinson@mvista.com>
44695     Acked-by: Roy Zang <tie-fei.zang@freescale.com>
44697 commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
44698 Author: Guennadi Liakhovetski <lg@denx.de>
44699 Date:   Wed Aug 13 18:10:26 2008 +0200
44701     i.MX31: Specify maintainers for i.MX31-based boards
44703     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
44704     Signed-off-by: Wolfgang Denk <wd@denx.de>
44706 commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
44707 Author: Wolfgang Denk <wd@denx.de>
44708 Date:   Tue Aug 26 15:01:28 2008 +0200
44710     ADS5121: adjust image addresses in RAM and flash
44712     Use the same mapping in flash as used by Linux
44714     Signed-off-by: Wolfgang Denk <wd@denx.de>
44716 commit 19f101412c16edee9fd55db4039e1d68a833b28b
44717 Author: Wolfgang Denk <wd@denx.de>
44718 Date:   Tue Aug 26 13:14:34 2008 +0200
44720     cmd_mem.c: Fix help message alignment
44722     Bug was introced by "Big white-space cleanup" (53677ef1)
44724     Signed-off-by: Wolfgang Denk <wd@denx.de>
44726 commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
44727 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
44728 Date:   Wed Aug 20 11:11:52 2008 +0200
44730     change mvBL-M7 default env and move to vendor subdir
44732     fix mvBL-M7 config and move to matrix_vision subdir
44734     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
44735     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44737 commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
44738 Author: Nick Spence <nick.spence@freescale.com>
44739 Date:   Fri Aug 22 23:52:40 2008 -0700
44741     MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
44743     This patch adds elements to the 83xx sysconf structure and #define values that are used
44744     by mpc83xx family devices.
44746     Signed-off-by: Nick Spence <nick.spence@freescale.com>
44747     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44749 commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
44750 Author: Ira W. Snyder <iws@ovro.caltech.edu>
44751 Date:   Fri Aug 22 11:00:15 2008 -0700
44753     MPC8349EMDS: Add PCI Agent (PCISLAVE) support
44755     Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
44756     PCI card rather than a host computer.
44758     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
44759     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44761 commit 4ff9aea9d6b5602683a920951ef896996438af62
44762 Author: Ira W. Snyder <iws@ovro.caltech.edu>
44763 Date:   Fri Aug 22 11:00:14 2008 -0700
44765     mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
44767     This adds a helper function to unlock the PCI configuration bit, so that
44768     any extra PCI setup (such as outbound windows, etc.) can be done after
44769     using the 83XX_GENERIC_PCI code to set up the PCI bus.
44771     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
44772     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44774 commit 162338e1fcde231ca4d562e5ebd7859456731691
44775 Author: Ira W. Snyder <iws@ovro.caltech.edu>
44776 Date:   Fri Aug 22 11:00:13 2008 -0700
44778     MPC8349EMDS: use 83XX_GENERIC_PCI setup code
44780     Change the MPC8349EMDS board to use the generic PCI initialization code
44781     for the mpc83xx cpu.
44783     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
44784     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44786 commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
44787 Author: Kim Phillips <kim.phillips@freescale.com>
44788 Date:   Mon Aug 25 14:53:09 2008 -0500
44790     fix out of tree building
44792     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44794 commit a49d10cf027d059ee15c262010a05cdaec0961e1
44795 Author: Wolfgang Denk <wd@denx.de>
44796 Date:   Mon Aug 25 23:45:41 2008 +0200
44798     Minor coding style cleanup, updte CHANGELOG
44800     Signed-off-by: Wolfgang Denk <wd@denx.de>
44802 commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
44803 Author: Stefan Roese <sr@denx.de>
44804 Date:   Wed Aug 20 20:29:38 2008 +0200
44806     RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
44808     This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
44809     to combine both config options into one line. This even allows defining
44810     both options and not generating the target object twice.
44812     Signed-off-by: Stefan Roese <sr@denx.de>
44814 commit 079edb913dbae147b50a488cf02e03f473fc5f28
44815 Author: Jens Gehrlein <sew_s@tqs.de>
44816 Date:   Fri Jul 4 16:50:05 2008 +0200
44818     MX31: fix bit masks in function mx31_decode_pll()
44820     Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
44822     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
44824 commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
44825 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
44826 Date:   Mon Aug 25 11:11:34 2008 +0200
44828     Correct ARM Versatile Timer Initialization
44830      - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
44831        -- Timer Value Register @ TIMER Base + 4 is Read-only.
44832        -- Prescale Value (Bits 3-2 of TIMER Control register)
44833         can only be one of 00,01,10. 11 is undefined.
44834        -- CFG_HZ for Versatile board is set to
44835         #define CFG_HZ          (1000000 / 256)
44836         So Prescale bits is set to indicate
44837         - 8 Stages of Prescale, Clock divided by 256
44838      - The Timer Control Register has one Undefined/Shouldn't Use Bit
44839        So we should do read/modify/write Operation
44841     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
44843 commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
44844 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
44845 Date:   Mon Aug 25 11:30:29 2008 +0200
44847     Add ARM AMBA PL031 RTC Support
44849     Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
44851 commit e39411674669cc880e1ec4a8ca4794fb15c33a45
44852 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
44853 Date:   Tue Aug 19 16:21:03 2008 -0400
44855     ARM DaVinci: Removed redundant NAND initialization code.
44857     ARM DaVinci: Removed redundant NAND initialization code.
44859     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
44861 commit b3fb663b20d995ca41327db877ddb168279b3f62
44862 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
44863 Date:   Tue Aug 19 16:21:00 2008 -0400
44865     ARM DaVinci: Fix compilation error with new MTD code.
44867     ARM DaVinci: Fix compilation error with new MTD code.
44869     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
44871 commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
44872 Author: Gerald Van Baren <vanbaren@cideas.com>
44873 Date:   Fri Aug 22 14:37:05 2008 -0400
44875     Add note on dereferencing /aliases pointers
44877     Replace the "must quote special characters" note with a hint on
44878     how to dereference /aliases pointers by omitting the leading "/".
44879     This feature was introduced by Kumar Gala as a libfdt enhancement
44880     in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
44882     Example:
44884     => fdt print /aliases
44885     aliases {
44886             ethernet0 = "/qe@e0100000/ucc@2000";
44887             ethernet1 = "/qe@e0100000/ucc@3000";
44888             serial0 = "/soc8360@e0000000/serial@4500";
44889             serial1 = "/soc8360@e0000000/serial@4600";
44890             pci0 = "/pci@e0008500";
44891     };
44892     => fdt print ethernet0
44893     ucc@2000 {
44894             device_type = "network";
44895             compatible = "ucc_geth";
44896             cell-index = <0x1>;
44897             reg = <0x2000 0x200>;
44898             interrupts = <0x20>;
44899             interrupt-parent = <0x2>;
44900             local-mac-address = [00 00 00 00 00 00];
44901             rx-clock-name = "none";
44902             tx-clock-name = "clk9";
44903             phy-handle = <0x3>;
44904             phy-connection-type = "rgmii-id";
44905             pio-handle = <0x4>;
44906     };
44908     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44910 commit feeca3f578b7f53c032ba203698751c982f8bf5a
44911 Author: Kumar Gala <galak@kernel.crashing.org>
44912 Date:   Thu Aug 14 08:28:19 2008 -0500
44914     libfdt: Add support for using aliases in fdt_path_offset()
44916     If the path doesn't start with '/' check to see if it matches some alias
44917     under "/aliases" and substitute the matching alias value in the path
44918     and retry the lookup.
44920     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44921     Acked-by: David Gibson <david@gibson.dropbear.id.au>
44922     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
44924 commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
44925 Author: David Gibson <david@gibson.dropbear.id.au>
44926 Date:   Wed Aug 6 14:50:49 2008 +1000
44928     libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
44930     As well as fdt_subnode_offset(), libfdt includes an
44931     fdt_subnode_offset_namelen() function that takes the subnode name to
44932     look up not as a NUL-terminated string, but as a string with an
44933     explicit length.  This can be useful when the caller has the name as
44934     part of a longer string, such as a full path.
44936     However, we don't have corresponding 'namelen' versions for
44937     fdt_get_property() and fdt_getprop().  There are less obvious use
44938     cases for these variants on property names, but there are
44939     circumstances where they can be useful e.g. looking up property names
44940     which need to be parsed from a longer string buffer such as user input
44941     or a configuration file, or looking up an alias in a path with
44942     IEEE1275 style aliases.
44944     So, since it's very easy to implement such variants, this patch does
44945     so.  The original NUL-terminated variants are, of course, implemented
44946     in terms of the namelen versions.
44948     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
44950 commit f171746f701ea58bf6a53e835b53d2aaebee0d81
44951 Author: David Gibson <david@gibson.dropbear.id.au>
44952 Date:   Tue Jul 29 14:51:22 2008 +1000
44954     libfdt: Forgot one function when cleaning the namespace
44956     In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
44957     libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
44958     chance of collisions with things from whatever package libfdt is
44959     embedded in, pulled into the libfdt build via that environment's
44960     libfdt_env.h.
44962     Except... I missed one.  This patch applies the same treatment to
44963     _stringlist_contains().  While we're at it, also make it static since
44964     it's only used in the same file.
44966     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
44968 commit 46390da15411351fc3b498bd8c1615f78fe80df0
44969 Author: Wolfram Sang <w.sang@pengutronix.de>
44970 Date:   Wed Jul 9 11:22:44 2008 +0200
44972     libfdt: Improve documentation in libfdt.h
44974     Fix a few typos and mistakes.
44976     Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
44977     Acked-by: David Gibson <david@gibson.dropbear.id.au>
44979 commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
44980 Author: David Gibson <david@gibson.dropbear.id.au>
44981 Date:   Wed Jul 9 14:10:24 2008 +1000
44983     libfdt: Increase namespace-pollution paranoia
44985     libfdt is supposed to easy to embed in projects all and sundry.
44986     Often, it won't be practical to separate the embedded libfdt's
44987     namespace from that of the surrounding project.  Which means there can
44988     be namespace conflicts between even libfdt's internal/static functions
44989     and functions or macros coming from the surrounding project's headers
44990     via libfdt_env.h.
44992     This patch, therefore, renames a bunch of libfdt internal functions
44993     and macros and makes a few other chances to reduce the chances of
44994     namespace collisions with embedding projects.  Specifically:
44995         - Internal functions (even static ones) are now named _fdt_*()
44997         - The type and (static) global for the error table in
44998               fdt_strerror() gain an fdt_ prefix
45000         - The unused macro PALIGN is removed
45002         - The memeq and streq macros are removed and open-coded in the
45003               users (they were only used once each)
45005         - Other macros gain an FDT_ prefix
45007         - To save some of the bulk from the previous change, an
45008               FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
45009               FDT_ALIGN(x, FDT_TAGSIZE)
45011     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
45013 commit c66830263af19831f2b7db307f79d1943febf7f9
45014 Author: David Gibson <david@gibson.dropbear.id.au>
45015 Date:   Mon Jul 7 10:14:15 2008 +1000
45017     dtc: Enable and fix -Wcast-qual warnings
45019     Enabling -Wcast-qual warnings in dtc shows up a number of places where
45020     we are incorrectly discarding a const qualification.  There are also
45021     some places where we are intentionally discarding the 'const', and we
45022     need an ugly cast through uintptr_t to suppress the warning.  However,
45023     most of these are pretty well isolated with the *_w() functions.  So
45024     in the interests of maximum safety with const qualifications, this
45025     patch enables the warnings and fixes the existing complaints.
45027     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
45028     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
45030 commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
45031 Author: David Gibson <david@gibson.dropbear.id.au>
45032 Date:   Mon Jul 7 10:10:48 2008 +1000
45034     dtc: Enable and fix -Wpointer-arith warnings
45036     This patch turns on the -Wpointer-arith option in the dtc Makefile,
45037     and fixes the resulting warnings due to using (void *) in pointer
45038     arithmetic.  While convenient, pointer arithmetic on void * is not
45039     portable, so it's better that we avoid it, particularly in libfdt.
45041     Also add necessary definition of uintptr_t needed by David Gibson's
45042     changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
45043     comes from stdint.h, which u-boot doesn't have). -- gvb
45045     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
45046     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
45048 commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
45049 Author: Tirumala R Marri <tmarri@amcc.com>
45050 Date:   Thu Aug 21 21:54:53 2008 -0700
45052     ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
45054     During recent PCI-E tests it has been found that current
45055     driverl level and de-emphasis values are not set correctly.
45056     After sweeping throgh all de-ephasis values, it was found that
45057     0x130 is a right value. Where 0x13 is driver level and 0 is
45058     de-emphasis.
45060     Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
45061     Signed-off-by: Stefan Roese <sr@denx.de>
45063 commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
45064 Author: Remy Bohmer <linux@bohmer.net>
45065 Date:   Wed Aug 20 20:46:56 2008 +0200
45067     Make the YAFFS filesystem work
45069     Recently the YAFFS filesystem support has been added to U-boot.
45070     However, just enabling CONFIG_YAFFS2 is not enough to get it working.
45072     ymount will generate an exception (when dereferencing mtd->readoob()), because
45073     the genericDevice is a null pointer. Further, a lot of logging is produced
45074     while using YAFFS fs, so logging should also be disabled.
45075     Both issues are solved by this patch.
45077     With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
45078     in U-boot, as well as in Linux.
45080     Tested on a Atmel AT91SAM9261EK board.
45082     Signed-off-by: Remy Bohmer <linux@bohmer.net>
45083     Acked-by: William Juul <william.juul@tandberg.com>
45084     Signed-off-by: Scott Wood <scottwood@freescale.com>
45086 commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
45087 Author: Kyungmin Park <kmpark@infradead.org>
45088 Date:   Tue Aug 19 08:42:53 2008 +0900
45090     Fix OneNAND read_oob/write_oob functions compatability
45092     Also sync with kernel OneNAND codes
45094     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
45095     Signed-off-by: Scott Wood <scottwood@freescale.com>
45097 commit 8d765456c1d33f2010d2717ee58de7647fdc6346
45098 Author: Scott Wood <scottwood@freescale.com>
45099 Date:   Mon Aug 18 17:11:20 2008 -0500
45101     NAND: Remove delay from nand_boot_fsl_elbc.c.
45103     It was for debugging purposes, and shouldn't have been left in.
45105     Signed-off-by: Scott Wood <scottwood@freescale.com>
45107 commit f556483734126793522fb7a8cf36af90da78f084
45108 Author: Stefan Roese <sr@denx.de>
45109 Date:   Thu Aug 21 11:05:03 2008 +0200
45111     ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
45113     This patch fixes some minor issues introduced with the patch:
45114     ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
45116     - Rework memory-queue and PLB arbiter optimization code, that the
45117       local variable is not needed anymore. This removes one #ifdef.
45118     - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
45119       of XXX+ 0x01). This was not introduced by Prodyut, just a
45120       copy-paste problem.
45122     Signed-off-by: Stefan Roese <sr@denx.de>
45124 commit 079589bcfb24ba11068460276a3cc9549ab5346f
45125 Author: Prodyut  Hazarika <phazarika@amcc.com>
45126 Date:   Wed Aug 20 09:38:51 2008 -0700
45128     ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
45129         PPC405EX and PPC460EX/GT/SX
45131     - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
45132       processors
45133     - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
45134       across processors (405 and 440/460)
45135     - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
45136       processors
45137     - Add register bit definitions for Memory Queue Configuration registers
45139     Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
45140     Signed-off-by: Stefan Roese <sr@denx.de>
45142 commit ba37aa03287c5483c61c0a3e320c8888bee0143a
45143 Author: Kumar Gala <galak@kernel.crashing.org>
45144 Date:   Tue Aug 19 15:41:18 2008 -0500
45146     fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
45148     Move to using the environment variables 'ethaddr', 'eth1addr', etc..
45149     instead of bd->bi_enetaddr, bi_enet1addr, etc.
45151     This makes the code a bit more flexible to the number of ethernet
45152     interfaces.
45154     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45156 commit 4cacf7c64609839f809e2f9c45873f1d65861703
45157 Author: Stefan Roese <sr@denx.de>
45158 Date:   Tue Aug 19 14:57:55 2008 +0200
45160     hush: Fix printf debug macro in hush.c so that it usable in U-Boot
45162     This patch changes the debug_printf() marco for U-Boot in hush.c and
45163     moves the definition of DEBUG_SHELL to a place that is actually compiled
45164     under U-Boot.
45166     Signed-off-by: Stefan Roese <sr@denx.de>
45168 commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
45169 Author: Heiko Schocher <hs@denx.de>
45170 Date:   Tue Aug 19 09:57:41 2008 +0200
45172     cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
45174     Commit      00b1883a4cac59d97cd297b1a3a398db85982865
45175     missed a few boards:
45176         include/configs/M5253DEMO.h
45177         include/configs/ml507.h
45178         include/configs/redwood.h
45180     This patch fixes this.
45182     Signed-off-by: Heiko Schocher <hs@denx.de>
45184 commit 0768b7a872964085eece8d5e9fec9175e9deb161
45185 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45186 Date:   Mon Aug 18 13:41:27 2008 +0200
45188     Consolidate strmhz() implementation
45190     ARM, i386, m68k and ppc all have identical implementations of strmhz().
45191     Other architectures don't provide this function at all.
45193     This patch moves strmhz() into lib_generic, reducing code duplication
45194     and providing a more unified API across architectures.
45196     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45198 commit a928d0df211f1d829308d335d19be3ca42558dfc
45199 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
45200 Date:   Mon Aug 18 12:02:51 2008 +0200
45202     fix mvbc_p board build warnings
45204     fix build warnings @ mvBC-P board by using correct types, i.e. change
45205     out_be32 to out_be16 and out_8 accordingly.
45207     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
45209 commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
45210 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45211 Date:   Sat Aug 16 18:54:27 2008 +0200
45213     Makefile: fix posix support on find
45215     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45217 commit bef92e215d945cc574399c1a1b00a3a76d35aa03
45218 Author: Axel Beierlein <belatronix@web.de>
45219 Date:   Sat Aug 16 00:30:48 2008 +0200
45221     Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
45223     Tested with TQM5200S on STK52XX.200 Board
45225     Signed-off-by: Axel Beierlein <belatronix@web.de>
45227 commit 0800707b6d5041a840a65d556032c15c584b55f8
45228 Author: Peter Tyser <ptyser@xes-inc.com>
45229 Date:   Fri Aug 15 14:36:32 2008 -0500
45231     mod_i2c_mem() bugfix
45233     The last used chip, address, and address length were not being
45234     stored for the imm and imn commands.
45236     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
45238 commit 4afbef967275b2f636abae86f91b81becee7ad03
45239 Author: Steven A. Falco <sfalco@harris.com>
45240 Date:   Fri Aug 15 15:37:31 2008 -0400
45242     Fix typo in spelling of ATAPI.
45244     Correct a small spelling mistake.
45246     Signed-off-by: Steven A. Falco <sfalco@harris.com>
45248 commit 36c2d3062ecc6ab85f8e237180eb134464c48418
45249 Author: Steven A. Falco <sfalco@harris.com>
45250 Date:   Fri Aug 15 15:34:10 2008 -0400
45252     Add a hook to allow board-specific PIO mode setting.
45254     This patch adds a hook whereby a board-specific routine can be called to
45255     configure hardware for a PIO mode.  The prototype for the board-specific
45256     routine is:
45258         int inline ide_set_piomode(int pio_mode)
45260     ide_set_piomode should be prepared to configure hardware for a pio_mode
45261     between 0 and 6, inclusive.  It should return 0 on success or 1 on failure.
45263     Signed-off-by: Steven A. Falco <sfalco@harris.com>
45265 commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
45266 Author: Steven A. Falco <sfalco@harris.com>
45267 Date:   Fri Aug 15 15:29:12 2008 -0400
45269     Replace enums in ata.h with an include of libata.h
45271     This patch removes some enums from ata.h and replaces them with an
45272     include of libata.h.  This way, we eliminate duplicated code, and
45273     prevent errors whereby the different versions could be out of sync.
45275     Signed-off-by: Steven A. Falco <sfalco@harris.com>
45277 commit 0de0afbca865ecf482b4d2b635236746def8518f
45278 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45279 Date:   Fri Aug 15 18:32:41 2008 +0200
45281     coldfire: fix CFI drivers activation with new macro
45283     rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
45285     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45287 commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
45288 Author: Kumar Gala <galak@kernel.crashing.org>
45289 Date:   Fri Aug 15 08:24:35 2008 -0500
45291     fdt: fdt addr w/o any args reports back the current working address
45293     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45295 commit f953d99fd528a496b400a706b511eaf8e3ea66af
45296 Author: Kumar Gala <galak@kernel.crashing.org>
45297 Date:   Fri Aug 15 08:24:34 2008 -0500
45299     fdt: added the ability to set initrd start/end via chosen command
45301     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45303 commit ffa4bafacaef67058463b3d7d0099ced57569dd2
45304 Author: Kumar Gala <galak@kernel.crashing.org>
45305 Date:   Fri Aug 15 08:24:33 2008 -0500
45307     Add command to enable/disable interrupts
45309     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45311 commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
45312 Author: Nick Spence <nick.spence@freescale.com>
45313 Date:   Tue Aug 19 22:21:16 2008 -0700
45315     CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
45317     This patch fixes a missing vendor code in the flash_real_protect() function.
45319     Signed-off-by: Nick Spence <nick.spence@freescale.com>
45320     Signed-off-by: Stefan Roese <sr@denx.de>
45322 commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
45323 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45324 Date:   Tue Aug 19 16:53:39 2008 +0000
45326     CFI: Fix AMD Legacy sector protect
45328     New implement sector lock and unlock or softlock commands
45329     do not exist in AMD legacy flash. Thus, causing issue
45330     when erasing AMD legacy flash (such as lv040)
45332     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45333     Signed-off-by: Stefan Roese <sr@denx.de>
45335 commit 492671404140f09d5b21b3d2ce4e362c0692c069
45336 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45337 Date:   Wed Aug 20 09:40:16 2008 +0200
45339     hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
45341     CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
45343     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45345 commit 33eac2b3d946fc998a09245dfe54d017079b9056
45346 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45347 Date:   Wed Aug 20 09:28:36 2008 +0200
45349     hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
45351     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45353 commit 25da0b84195fdda89a943b2d25757db5afeef5b8
45354 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45355 Date:   Wed Aug 20 09:27:37 2008 +0200
45357     favr-32-ezkit: Fix printf format warnings
45359     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45361 commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
45362 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45363 Date:   Fri Aug 15 12:04:25 2008 +0200
45365     MAINTAINERS: Sort avr32 section alphabetically
45367     The rest of the MAINTAINERS file appears to be sorted
45368     almost-alphabetically, but entries for the newly added AVR32 boards were
45369     added somewhat randomly. This patch sorts the list alphabetically again.
45371     Also update my e-mail address. The old one still works, but it may not
45372     work forever.
45374     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45376 commit 13b50fe3bc065c48911fa373231421280855a9d6
45377 Author: Mark Jackson <mpfj@mimc.co.uk>
45378 Date:   Wed Jul 30 13:07:27 2008 +0100
45380     avr32: Add MIMC200 board
45382     The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
45383     8MByte FLASH and 128KByte FRAM.
45385     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
45386     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45388 commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
45389 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
45390 Date:   Wed Jul 9 21:07:34 2008 +0900
45392     rtl8169: add support for RTL8110SCL
45394     This patch fixes a problem that RTL8110SCL started transfer
45395     with an incorrect memory address.
45397     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
45398     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
45400 commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
45401 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45402 Date:   Wed Jun 25 15:48:52 2008 -0500
45404     Fix dm9000 receive status and len little endian issue
45406     The received status and len was in little endian
45407     format and caused the ethernet unable to proceed
45408     further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
45410     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45411     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
45413 commit fcd69a1a57fb2af4d26201422095a4be9f36963e
45414 Author: Kumar Gala <galak@kernel.crashing.org>
45415 Date:   Fri Aug 15 08:24:32 2008 -0500
45417     Clean up usage of icache_disable/dcache_disable
45419     There is no point in disabling the icache on 7xx/74xx/86xx parts and not
45420     also flushing the icache.  All callers of invalidate_l1_instruction_cache()
45421     call icache_disable() right after.  Make it so icache_disable() calls
45422     invalidate_l1_instruction_cache() for us.
45424     Also, dcache_disable() already calls dcache_flush() so there is no point
45425     in the explicit calls of dcache_flush().
45427     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45429 commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
45430 Author: Kumar Gala <galak@kernel.crashing.org>
45431 Date:   Fri Aug 15 08:24:31 2008 -0500
45433     Update linux bootm to support ePAPR client interface
45435     The ePAPR spec has some subtle differences from the current device
45436     tree based boot interface to the powerpc linux kernel. The powerpc
45437     linux kernel currently ignores the differences that ePAPR specifies.
45439     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45441 commit b734e5556a239b3be5f9693b2f4b4b739683ec16
45442 Author: Wolfgang Denk <wd@denx.de>
45443 Date:   Mon Aug 18 23:50:20 2008 +0200
45445     Minor code cleanup: keep lists sorted.
45447     Signed-off-by: Wolfgang Denk <wd@denx.de>
45449 commit d0039d4ed275e6ca09fb417895024ad02be118c4
45450 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
45451 Date:   Wed Jul 23 19:10:14 2008 +0200
45453     Add support for ADT7460 I2C monitor chip
45455     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
45457 commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
45458 Author: Michal Simek <monstr@monstr.eu>
45459 Date:   Mon Jul 14 19:45:45 2008 +0200
45461     video: Clean drivers/video/Makefile
45463     Signed-off-by: Michal Simek <monstr@monstr.eu>
45465 commit 871c18dd301752270e1f74328c846c3104be1e2e
45466 Author: Michal Simek <monstr@monstr.eu>
45467 Date:   Mon Jul 14 19:45:37 2008 +0200
45469     rtc: Clean drivers/rtc/Makefile
45471     Signed-off-by: Michal Simek <monstr@monstr.eu>
45473 commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
45474 Author: Michal Simek <monstr@monstr.eu>
45475 Date:   Mon Jul 14 19:45:35 2008 +0200
45477     i2c: Clean drivers/i2c/ Makefile
45479     Signed-off-by: Michal Simek <monstr@monstr.eu>
45481 commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
45482 Author: Harald Welte <laforge@openmoko.org>
45483 Date:   Wed Jul 9 22:30:30 2008 +0800
45485     Add 'license' command to U-Boot command line
45487     The 'license' command includes the U-Boot license (GPLv2) into the
45488     actual bootloader binary. The license text can be shown interactively
45489     at the U-Boot commandline.
45491     For products where the commandline can actually be accessed by the
45492     end user, this helps to prevent inadvertent GPL violations, since the
45493     GPLv2 license text can no longer be 'forgotten' to be included into
45494     the product.
45496     The 'license' command can be enabled by CONFIG_CMD_LICENSE.
45498     Signed-off-by: Harald Welte <laforge@openmoko.org>
45500 commit fe2ce5500ebf43d79d227190bd2370232d5b113d
45501 Author: Harald Welte <laforge@gnumonks.org>
45502 Date:   Sun Jul 6 15:56:38 2008 +0800
45504     add 'unzip' command to u-boot commandline
45506     [PATCH] add new 'unzip' command to u-boot commandline
45508     common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
45509     memory to memory, and option CONFIG_CMD_UNZIP to enable it
45511     Signed-off-by: Werner Almesberger <werner@openmoko.org>
45512     Signed-off-by: Harald Welte <laforge@openmoko.org>
45514 commit 07efc9e321619c3dec213310c32e011aa6f02783
45515 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45516 Date:   Wed Aug 6 19:37:17 2008 -0500
45518     Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
45520     The CFG_ENV_SIZE is not suitable used for SPI flash erase
45521     sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
45522     Add condition check if CFG_ENV_SIZE is larger than
45523     CFG_ENV_SECT_SIZE, calculate the right number of sectors for
45524     erasing.
45526     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45528 commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
45529 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45530 Date:   Mon Aug 11 15:54:25 2008 +0000
45532     ColdFire: Multiple fixes for M5282EVB
45534     Incorrect CFG_HZ value, change 1000000 to 1000.
45535     Rename #waring to #warning. RAMBAR1 uses twice
45536     in start.S, rename the later to FLASHBAR. Insert
45537     nop for DRAM setup. And, env_offset in linker file.
45539     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45541 commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
45542 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45543 Date:   Mon Aug 11 15:26:43 2008 +0000
45545     ColdFire: Move m5282evb from board to board/freescale
45547     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45549 commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
45550 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45551 Date:   Mon Aug 11 15:25:07 2008 +0000
45553     ColdFire: Move m5272c3 from board to board/freescale
45555     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45557 commit 659e9bad629a480f606b286d5703aef7159edf98
45558 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45559 Date:   Mon Aug 11 15:23:16 2008 +0000
45561     ColdFire: Move m5271evb from board to board/freescale
45563     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45565 commit 05316f8ece8206339a208ec052f039cd0f7ca922
45566 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45567 Date:   Mon Aug 11 13:41:49 2008 +0000
45569     ColdFire: Add M54451EVB platform support for MCF5445x
45571     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45573 commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
45574 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45575 Date:   Wed Aug 6 19:14:08 2008 -0500
45577     ColdFire: Add Serial Flash support for M54455EVB
45579     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45581 commit 9f751551456828b2d0ff417f10959fb0c7110bd0
45582 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45583 Date:   Wed Jul 23 20:38:53 2008 -0500
45585     ColdFire: Implement SBF feature for M5445EVB
45587     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45589 commit a7323bba229203aae2604afde131ab47bad4eadc
45590 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45591 Date:   Wed Jul 23 17:53:36 2008 -0500
45593     ColdFire: Add SSPI feature for MCF5445x
45595     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45597 commit b2d022d1ac3f59bffa9cec249341e77aea168abc
45598 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45599 Date:   Wed Jul 23 17:37:10 2008 -0500
45601     ColdFire: Use CFI Flash driver for M54455EVB
45603     Remove non-common flash driver in
45604     board/freescale/m54455evb/flash.c. The non-cfi flash will
45605     use CONFIG_FLASH_CFI_LEGACY to configure the flash
45606     attribute.
45608     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45610 commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
45611 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45612 Date:   Wed Jul 23 17:11:47 2008 -0500
45614     ColdFire: Add M5253DEMO platform support for MCF5253
45616     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45618 commit 80ba61fd82569af40e04d4a089257b81881884f2
45619 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45620 Date:   Wed Aug 6 14:17:09 2008 -0500
45622     ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
45624     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45626 commit d361307e73ce1f6fc68760123f37d4876f851f3e
45627 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45628 Date:   Wed Aug 6 14:11:36 2008 -0500
45630     ColdFire: Fix M5253EVB dram bring up issue
45632     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45634 commit 4b0708093e15b412296328bf81325cf9b69fe512
45635 Author: Wolfgang Denk <wd@denx.de>
45636 Date:   Thu Aug 14 14:41:06 2008 +0200
45638     Coding Style cleanup, update CHANGELOG
45640     Signed-off-by: Wolfgang Denk <wd@denx.de>
45642 commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
45643 Author: Scott Wood <scottwood@freescale.com>
45644 Date:   Wed Aug 13 18:24:05 2008 -0500
45646     socrates: Update NAND driver to new API.
45648     Also, fix some minor formatting issues, and simplify the handling of
45649     "state" for writes.
45651     Signed-off-by: Scott Wood <scottwood@freescale.com>
45653 commit ba22d10f39eaeedd035e8265616e31ff88e314d5
45654 Author: Scott Wood <scottwood@freescale.com>
45655 Date:   Wed Aug 13 18:03:40 2008 -0500
45657     quad100hd: Update NAND driver to new API.
45659     Signed-off-by: Scott Wood <scottwood@freescale.com>
45661 commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
45662 Author: Scott Wood <scottwood@freescale.com>
45663 Date:   Wed Aug 13 17:53:48 2008 -0500
45665     m5373evb: Update NAND driver to new API.
45667     Signed-off-by: Scott Wood <scottwood@freescale.com>
45669 commit 1a23a197c8722b805f40895544bbdb1a648c1c82
45670 Author: Scott Wood <scottwood@freescale.com>
45671 Date:   Wed Aug 13 17:04:30 2008 -0500
45673     s3c24x0: Update NAND driver to new API.
45675     Signed-off-by: Scott Wood <scottwood@freescale.com>
45677 commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
45678 Author: Scott Wood <scottwood@freescale.com>
45679 Date:   Wed Aug 13 15:56:00 2008 -0500
45681     at91: Update board NAND drivers to current API.
45683     Signed-off-by: Scott Wood <scottwood@freescale.com>
45685 commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
45686 Author: Kyungmin Park <kmpark@infradead.org>
45687 Date:   Wed Aug 13 09:11:02 2008 +0900
45689     Fix OneNAND build break
45691     Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
45692     - fix bufferram management at erase operation
45693     This patch includes the NAND/OneNAND state filed too.
45695     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
45696     Signed-off-by: Scott Wood <scottwood@freescale.com>
45698 commit 9483df6408c25f16060432de3868901e352e23bc
45699 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45700 Date:   Wed Aug 13 01:40:43 2008 +0200
45702     drivers/mtd/nand_legacy: Move conditional compilation to Makefile
45704     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45706 commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
45707 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45708 Date:   Wed Aug 13 01:40:43 2008 +0200
45710     drivers/mtd/nand: Move conditional compilation to Makefile
45712     rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
45714     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45716 commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
45717 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45718 Date:   Wed Aug 13 01:40:42 2008 +0200
45720     drivers/mtd/onenand: Move conditional compilation to Makefile
45722     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45724 commit 00b1883a4cac59d97cd297b1a3a398db85982865
45725 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45726 Date:   Wed Aug 13 01:40:42 2008 +0200
45728     drivers/mtd: Move conditional compilation to Makefile
45730     rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
45732     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45734 commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
45735 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45736 Date:   Wed Aug 13 01:40:41 2008 +0200
45738     drivers/qe: Move conditional compilation to Makefile
45740     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45742 commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
45743 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45744 Date:   Wed Aug 13 01:40:40 2008 +0200
45746     drivers/pci: Move conditional compilation to Makefile
45748     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45750 commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
45751 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45752 Date:   Wed Aug 13 01:40:40 2008 +0200
45754     drivers/misc: Move conditional compilation to Makefile
45756     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45758 commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
45759 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45760 Date:   Wed Aug 13 01:40:40 2008 +0200
45762     drivers/input: Move conditional compilation to Makefile
45764     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45766 commit 88f57e093114a44aa9a858d52b099bcc52034a8c
45767 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45768 Date:   Wed Aug 13 01:40:39 2008 +0200
45770     drivers/dma: Move conditional compilation to Makefile
45772     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45774 commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
45775 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45776 Date:   Wed Aug 13 01:40:39 2008 +0200
45778     drivers/block: Move conditional compilation to Makefile
45780     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45782 commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
45783 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45784 Date:   Wed Aug 13 01:40:39 2008 +0200
45786     serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
45788     move also conditional compilation to Makefile
45790     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45792 commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
45793 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45794 Date:   Wed Aug 13 01:40:38 2008 +0200
45796     serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
45798     move also conditional compilation to Makefile
45800     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45802 commit d6e9ee92e890f67594ab150689510df361133ead
45803 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45804 Date:   Wed Aug 13 01:40:38 2008 +0200
45806     common: Move conditional compilation to Makefile
45808     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45810 commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
45811 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45812 Date:   Wed Aug 13 01:40:09 2008 +0200
45814     mx31: move freescale's mx31 boards to vendor board dir
45816     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45818 commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
45819 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45820 Date:   Sat Jul 5 23:11:11 2008 +0200
45822     at91: move arch-at91sam9 to arch-at91
45824     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
45826 commit 195ccfc5991d48764b2519941e3507f693851d5d
45827 Author: Fathi BOUDRA <fabo@debian.org>
45828 Date:   Wed Aug 6 10:06:20 2008 +0200
45830     OneNAND: Fill in MTD function pointers for OneNAND.
45832     onenand_print_device_info():
45833      - Now returns a string to be placed in mtd->name,
45834        rather than calling printf.
45835      - Remove verbose parameter as it becomes useless.
45837     Signed-off-by: Fathi Boudra <fabo@debian.org>
45838     Signed-off-by: Scott Wood <scottwood@freescale.com>
45840 commit aa646643b6bc250cb3a4966bf728876e0c10d329
45841 Author: Guennadi Liakhovetski <lg@denx.de>
45842 Date:   Wed Aug 6 21:42:07 2008 +0200
45844     nand_spl: Support page-aligned read in nand_load, use chipselect
45846     Supporting page-aligned reads doesn't incure any sinificant overhead, just
45847     a small change in the algorithm. Also replace in_8 with readb, since there
45848     is no in_8 on ARM.
45850     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
45851     Signed-off-by: Scott Wood <scottwood@freescale.com>
45853 commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
45854 Author: Scott Wood <scottwood@freescale.com>
45855 Date:   Tue Aug 5 11:15:59 2008 -0500
45857     NAND boot: Update large page support for current API.
45859     Also, remove the ctrl variable in favor of passing the constants
45860     directly, and remove redundant (u8) casts.
45862     Signed-off-by: Scott Wood <scottwood@freescale.com>
45864 commit e4c09508545d1c45617ba45391c03c03cbc360b9
45865 Author: Scott Wood <scottwood@freescale.com>
45866 Date:   Mon Jun 30 14:13:28 2008 -0500
45868     NAND boot: MPC8313ERDB support
45870     Note that with older board revisions, NAND boot may only work after a
45871     power-on reset, and not after a warm reset.  I don't have a newer board
45872     to test on; if you have a board with a 33MHz crystal, please let me know
45873     if it works after a warm reset.
45875     Signed-off-by: Scott Wood <scottwood@freescale.com>
45877 commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
45878 Author: Scott Wood <scottwood@freescale.com>
45879 Date:   Thu Jun 26 14:06:52 2008 -0500
45881     mpc8313erdb: Enable NAND in config.
45883     Signed-off-by: Scott Wood <scottwood@freescale.com>
45885 commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
45886 Author: Guennadi Liakhovetski <lg@denx.de>
45887 Date:   Thu Jul 31 12:38:26 2008 +0200
45889     NAND: Do not write or read a whole block if it is larger than the environment
45891     Environment can be smaller than NAND block size, do not need to read a whole
45892     block and minimum for writing is one page. Also remove an unused variable.
45894     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
45895     Signed-off-by: Scott Wood <scottwood@freescale.com>
45897 commit eafcabd15f00c142156235c519fcc55b10993241
45898 Author: Marcel Ziswiler <marcel@ziswiler.com>
45899 Date:   Sun Jun 22 16:30:06 2008 +0200
45901     NAND: chip->state does not always get set.
45903     Fixes an issue with chip->state not always being set causing troubles.
45905     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
45906     Signed-off-by: Scott Wood <scottwood@freescale.com>
45908 commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
45909 Author: Ilya Yanok <yanok@emcraft.com>
45910 Date:   Mon Jun 30 15:34:40 2008 +0200
45912     NAND: Scan bad blocks lazily.
45914     Rather than scanning on boot, scan upon the first attempt to check the
45915     badness of a block.  This speeds up boot when not using NAND, and reduces
45916     the likelihood of needing to reflash via JTAG if NAND becomes
45917     nonfunctional.
45919     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
45920     Signed-off-by: Scott Wood <scottwood@freescale.com>
45922 commit dfbf617ff055e4216f78d358b0867c548916d14b
45923 Author: Scott Wood <scottwood@freescale.com>
45924 Date:   Thu Jun 12 13:20:16 2008 -0500
45926     NAND read/write fix
45928     Implement block-skipping read/write, based on a patch from
45929     Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
45931     Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
45932     Signed-off-by: Scott Wood <scottwood@freescale.com>
45934 commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
45935 Author: Scott Wood <scottwood@freescale.com>
45936 Date:   Thu Jun 12 13:13:23 2008 -0500
45938     NAND: Always skip blocks on read/write/boot.
45940     Use of the non-skipping versions was almost always (if not always)
45941     an error, and no valid use case has been identified.
45943     Signed-off-by: Scott Wood <scottwood@freescale.com>
45945 commit e1c3dbada349992875934575c97b328ab2cb33ca
45946 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
45947 Date:   Thu Jun 12 11:10:21 2008 -0500
45949     nand: fsl_upm: convert to updated MTD NAND infrastructure
45951     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
45952     Signed-off-by: Scott Wood <scottwood@freescale.com>
45954 commit 300253306acc72b1b2e9faf0987f86551151d7cf
45955 Author: Scott Wood <scottwood@freescale.com>
45956 Date:   Thu May 22 15:02:46 2008 -0500
45958     fsl_elbc_nand: Hard-code the FBAR/FPAR split.
45960     The hardware has separate registers for block and page-within-block,
45961     but the division between the two has no apparent relation to the
45962     actual erase block size of the NAND chip.
45964     Signed-off-by: Scott Wood <scottwood@freescale.com>
45966 commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
45967 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
45968 Date:   Fri Mar 28 22:10:54 2008 +0300
45970     fsl_elbc_nand: workaround for hangs during nand write
45972     Using current driver elbc sometimes hangs during nand write. Reading back
45973     last byte helps though (thanks to Scott Wood for the idea).
45975     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
45976     Signed-off-by: Scott Wood <scottwood@freescale.com>
45978 commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
45979 Author: Scott Wood <scottwood@freescale.com>
45980 Date:   Fri Mar 21 16:12:51 2008 -0500
45982     Freescale eLBC FCM NAND driver
45984     This is a driver for the Flash Control Machine of the enhanched Local Bus
45985     Controller found on some Freescale chips (such as the mpc8313 and the
45986     mpc8379).
45988     Signed-off-by: Scott Wood <scottwood@freescale.com>
45990 commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
45991 Author: Scott Wood <scottwood@freescale.com>
45992 Date:   Tue Mar 18 15:29:14 2008 -0500
45994     Don't panic if a controller driver does ecc its own way.
45996     Some hardware, such as the enhanced local bus controller used on some
45997     mpc83xx chips, does ecc transparently when reading and writing data, rather
45998     than providing a generic calculate/correct mechanism that can be exported to
45999     the nand subsystem.
46001     The subsystem should not BUG() when calculate, correct, or hwctl are
46002     missing, if the methods that call them have been overridden.
46004     Signed-off-by: Scott Wood <scottwood@freescale.com>
46006 commit e52b34d40a8a646e3d11638ea8797e96398dba13
46007 Author: Stefan Roese <sr@denx.de>
46008 Date:   Thu Jan 10 18:47:33 2008 +0100
46010     NAND: Make NAND driver less verbose per default
46012     This patch turns off printing of bad blocks per default upon bootup.
46013     This can always be shown via the "nand bad" command later.
46015     Signed-off-by: Stefan Roese <sr@denx.de>
46017 commit fe56a2772e5c59577df906163d0d4b29b056140e
46018 Author: Sergey Kubushyn <ksi@koi8.net>
46019 Date:   Wed Jan 9 15:36:20 2008 +0100
46021     NAND: Davinci driver updates
46023     Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
46024     don't have hardware handy so I can not test it at the moment but changes are
46025     rather trivial so it should work. It would be nice if somebody with a
46026     hardware checked it anyways.
46028     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
46030 commit deac913effd8d80535c9ff4687b6fcdff540c554
46031 Author: Stefan Roese <sr@denx.de>
46032 Date:   Sat Jan 5 16:50:32 2008 +0100
46034     NAND: Fix compilation warning and small coding style issue
46036     Signed-off-by: Stefan Roese <sr@denx.de>
46038 commit c568f77acdf896fc3dd6413ce53205b17ba809a3
46039 Author: Stefan Roese <sr@denx.de>
46040 Date:   Sat Jan 5 16:49:37 2008 +0100
46042     NAND: Update nand_spl driver to match updated nand subsystem
46044     This patch changes the NAND booting driver nand_spl/nand_boot.c to match
46045     the new infrastructure from the updated NAND subsystem. This NAND
46046     subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
46047     subsystem.
46049     Signed-off-by: Stefan Roese <sr@denx.de>
46051 commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
46052 Author: Stefan Roese <sr@denx.de>
46053 Date:   Sat Jan 5 16:47:58 2008 +0100
46055     NAND: Update 4xx NDFC driver to match updated nand subsystem
46057     This patch changes the 4xx NAND driver ndfc.c to match the new
46058     infrastructure from the updated NAND subsystem. This NAND
46059     subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
46060     subsystem.
46062     Tested successfully on AMCC Sequoia and Bamboo.
46064     Signed-off-by: Stefan Roese <sr@denx.de>
46066 commit 12072264528eba33737bc9674e19f0e925ffda23
46067 Author: Stefan Roese <sr@denx.de>
46068 Date:   Sat Jan 5 16:43:25 2008 +0100
46070     NAND: Change nand_wait_ready() to not call nand_wait()
46072     This patch changes nand_wait_ready() to not just call nand_wait(),
46073     since this will send a new command to the NAND chip. We just want to
46074     wait for the chip to become ready here.
46076     Signed-off-by: Stefan Roese <sr@denx.de>
46078 commit 9ad754fef5053144daed3b007adaf1c9bec654c9
46079 Author: William Juul <william.juul@datarespons.no>
46080 Date:   Fri Dec 14 16:33:45 2007 +0100
46082     make nand dump and nand dump.oob work
46084     Signed-off-by: William Juul <william.juul@tandberg.com>
46085     Signed-off-by: Scott Wood <scottwood@freescale.com>
46087 commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
46088 Author: William Juul <william.juul@datarespons.no>
46089 Date:   Mon Nov 19 14:46:00 2007 +0100
46091     moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
46093     Signed-off-by: William Juul <william.juul@tandberg.com>
46095 commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
46096 Author: William Juul <william.juul@tandberg.com>
46097 Date:   Tue Jun 10 16:18:13 2008 -0500
46099     Clean out unneeded files
46101     Signed-off-by: William Juul <william.juul@tandberg.com>
46103 commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
46104 Author: William Juul <william.juul@datarespons.no>
46105 Date:   Fri Nov 16 08:44:27 2007 +0100
46107     Create symlinks from yaffs2/direct to yaffs2
46109     Signed-off-by: William Juul <william.juul@tandberg.com>
46111 commit 90ef117b68387d66763291af0117677644166611
46112 Author: William Juul <william.juul@datarespons.no>
46113 Date:   Thu Nov 15 12:23:57 2007 +0100
46115     Incorporate yaffs2 into U-boot
46117     To use YAFFS2 define CONFIG_YAFFS2
46119     Signed-off-by: William Juul <william.juul@tandberg.com>
46120     Signed-off-by: Scott Wood <scottwood@freescale.com>
46122 commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
46123 Author: William Juul <william.juul@datarespons.no>
46124 Date:   Thu Nov 15 11:13:05 2007 +0100
46126     YAFFS2 import
46128     Direct import of yaffs as a tarball as of 20071113 from their public
46129     CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
46131     The code can also be imported on the command line with:
46132     export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
46133     (Hit return when asked for a password)
46134     cvs checkout yaffs2
46136     Signed-off-by: William Juul <william.juul@tandberg.com>
46137     Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
46139 commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
46140 Author: William Juul <william.juul@datarespons.no>
46141 Date:   Wed Nov 14 14:28:11 2007 +0100
46143     Whitespace cleanup and marking broken code.
46145     Changes requested by maintainer Stefan Roese after
46146     posting patch to U-boot mailing list.
46148     Signed-off-by: William Juul <william.juul@tandberg.com>
46149     Signed-off-by: Scott Wood <scottwood@freescale.com>
46151 commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
46152 Author: William Juul <william.juul@datarespons.no>
46153 Date:   Fri Nov 9 13:32:30 2007 +0100
46155     Fixing coding style issues
46157      - Fixing leading white spaces
46158      - Fixing indentation where 4 spaces are used instead of tab
46159      - Removing C++ comments (//), wherever I introduced them
46161     Signed-off-by: William Juul <william.juul@tandberg.com>
46162     Signed-off-by: Scott Wood <scottwood@freescale.com>
46164 commit 4cbb651b29cb64d378a06729970e1e153bb605b1
46165 Author: William Juul <william.juul@datarespons.no>
46166 Date:   Thu Nov 8 10:39:53 2007 +0100
46168     Remove white space at end.
46170     Signed-off-by: William Juul <william.juul@tandberg.com>
46171     Signed-off-by: Scott Wood <scottwood@freescale.com>
46173 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
46174 Author: William Juul <william.juul@datarespons.no>
46175 Date:   Wed Oct 31 13:53:06 2007 +0100
46177     Update MTD to that of Linux 2.6.22.1
46179     A lot changed in the Linux MTD code, since it was last ported from
46180     Linux to U-Boot. This patch takes U-Boot NAND support to the level
46181     of Linux 2.6.22.1 and will enable support for very large NAND devices
46182     (4KB pages) and ease the compatibility between U-Boot and Linux
46183     filesystems.
46185     This patch is tested on two custom boards with PPC and ARM
46186     processors running YAFFS in U-Boot and Linux using gcc-4.1.2
46187     cross compilers.
46189     MAKEALL ppc/arm has some issues:
46190      * DOC/OneNand/nand_spl is not building (I have not tried porting
46191        these parts, and since I do not have any HW and I am not familiar
46192        with this code/HW I think its best left to someone else.)
46194     Except for the issues mentioned above, I have ported all drivers
46195     necessary to run MAKEALL ppc/arm without errors and warnings. Many
46196     drivers were trivial to port, but some were not so trivial. The
46197     following drivers must be examined carefully and maybe rewritten to
46198     some degree:
46199      cpu/ppc4xx/ndfc.c
46200      cpu/arm926ejs/davinci/nand.c
46201      board/delta/nand.c
46202      board/zylonite/nand.c
46204     Signed-off-by: William Juul <william.juul@tandberg.com>
46205     Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
46206     Signed-off-by: Scott Wood <scottwood@freescale.com>
46208 commit cd82919e6c8a73b363a26f34b734923844e52d1c
46209 Author: Wolfgang Denk <wd@denx.de>
46210 Date:   Tue Aug 12 16:08:38 2008 +0200
46212     Coding style cleanup, update CHANGELOG, prepare release
46214     Signed-off-by: Wolfgang Denk <wd@denx.de>
46216 commit 17e900b8c0f38d922da47073246219dce2a847f2
46217 Author: Wolfgang Denk <wd@denx.de>
46218 Date:   Tue Aug 12 14:54:04 2008 +0200
46220     MVBC_P: fix compile problem
46222     Signed-off-by: Wolfgang Denk <wd@denx.de>
46224 commit 52b047ae48219b59bebe37ba743ab103fd4f8316
46225 Author: Wolfgang Denk <wd@denx.de>
46226 Date:   Tue Aug 12 12:10:11 2008 +0200
46228     MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
46230     Signed-off-by: Wolfgang Denk <wd@denx.de>
46232 commit c9c101c660b3d1995045c61c7c6041f52b6cf335
46233 Author: Wolfgang Denk <wd@denx.de>
46234 Date:   Tue Aug 12 00:36:53 2008 +0200
46236     ads5121: fix compiler warnings (unused variables)
46238     Signed-off-by: Wolfgang Denk <wd@denx.de>
46240 commit 902ca09246039964d59bbcb519b1e1b5aed01308
46241 Author: Kumar Gala <galak@kernel.crashing.org>
46242 Date:   Mon Aug 11 11:29:28 2008 -0500
46244     85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
46246     Use CONFIG_NUM_CPUS to match existing define used by 86xx.
46248     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46249     Acked-by: Jon Loeliger <jdl@freescale.com>
46251 commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
46252 Author: Kumar Gala <galak@kernel.crashing.org>
46253 Date:   Mon Aug 11 09:20:53 2008 -0500
46255     Fix fallout from autostart revert
46257     The autostart revert caused a bit of duplicated code as well as
46258     code that was using images->autostart that needs to get removed so
46259     we can build again.
46261     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46263 commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
46264 Author: Kumar Gala <galak@kernel.crashing.org>
46265 Date:   Mon Aug 11 09:16:25 2008 -0500
46267     Fix compile error related to r8a66597-hcd & usb
46269     When building the 8544DS board we get this error:
46271     In file included from r8a66597-hcd.c:22:
46272     u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
46273     make[1]: *** [r8a66597-hcd.o] Error 1
46275     The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
46276     is set.
46278     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46280 commit 2d0daa03612338a813e3c9d22680e54eabfea378
46281 Author: Becky Bruce <becky.bruce@freescale.com>
46282 Date:   Mon Aug 4 14:02:26 2008 -0500
46284     POWERPC 86xx: Move BAT setup code to C
46286     This is needed because we will be possibly be locating
46287     devices at physical addresses above 32bits, and the asm
46288     preprocessing does not appear to deal with ULL constants
46289     properly. We now call write_bat in lib_ppc/bat_rw.c.
46291     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
46292     Acked-by: Jon Loeliger <jdl@freescale.com>
46294 commit 9de67149db576c91b9c2a0a182652331e7e44211
46295 Author: Becky Bruce <becky.bruce@freescale.com>
46296 Date:   Mon Aug 4 14:01:53 2008 -0500
46298     POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
46300     Perform sync/isync as required by the architecture.
46302     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
46303     Acked-by: Jon Loeliger <jdl@freescale.com>
46305 commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
46306 Author: Becky Bruce <becky.bruce@freescale.com>
46307 Date:   Mon Aug 4 14:01:16 2008 -0500
46309     POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
46311     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
46312     Acked-by: Jon Loeliger <jdl@freescale.com>
46314 commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
46315 Author: Magnus Lilja <lilja.magnus@gmail.com>
46316 Date:   Sun Aug 3 21:44:10 2008 +0200
46318     i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
46320     Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
46321     contacts instead of only the first 256 ones as is the case prior to
46322     this patch.
46324     Add missing MUX_* macros and update board files to use the new macros.
46326     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
46328 commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
46329 Author: Magnus Lilja <lilja.magnus@gmail.com>
46330 Date:   Sun Aug 3 21:43:37 2008 +0200
46332     i.MX31: Fix IOMUX related typos
46334     Correct the names of some IOMUX macros.
46336     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
46338 commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
46339 Author: Steve Sakoman <steve@sakoman.com>
46340 Date:   Mon Aug 11 20:26:16 2008 +0200
46342     OneNAND: Remove unused parameters to onenand_verify_page
46344     The block and page parameters of onenand_verify_page() are not used. This causes a compiler error when CONFIG_MTD_ONENAND_VERIFY_WRITE is enabled.
46346     Signed-off-by: Steve Sakoman <steve@sakoman.com>
46347     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
46349 commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
46350 Author: Anatolij Gustschin <agust@denx.de>
46351 Date:   Fri Aug 8 18:00:40 2008 +0200
46353     video: fix bug in cfb_console code
46355     FILL_15BIT_555RGB macro extension for pixel swapping
46356     by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
46357     introduced a bug in cfb_console:
46359     Bitmaps with odd-numbered width won't be rendered
46360     correctly and even U-Boot crashes are observed on
46361     some platforms while repeated rendering of such
46362     bitmaps with "bmp display". Also if a bitmap is
46363     rendered to an odd-numbered x starting position,
46364     the same problem occurs. This patch is an attempt
46365     to fix it.
46367     Signed-off-by: Anatolij Gustschin <agust@denx.de>
46369 commit d9015f6a50d7258125349ef5c2af836458a0029a
46370 Author: Anatolij Gustschin <agust@denx.de>
46371 Date:   Fri Aug 8 18:00:39 2008 +0200
46373     video: fix bug in logo_plot
46375     If logo_plot() should ever be called with x starting
46376     position other than zero and for pixel depths greater
46377     than 8bpp, logo colors distortion will be observed.
46378     This patch fixes the issue.
46380     Signed-off-by: Anatolij Gustschin <agust@denx.de>
46382 commit 406819ae94f79f5b59e01d163380ca7d83709251
46383 Author: Wolfgang Denk <wd@denx.de>
46384 Date:   Mon Aug 11 00:17:52 2008 +0200
46386     MAINTAINERS: sort entries
46388     Signed-off-by: Wolfgang Denk <wd@denx.de>
46390 commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
46391 Author: Roy Zang <tie-fei.zang@freescale.com>
46392 Date:   Thu Aug 7 18:19:28 2008 +0800
46394     Add mpc7448hpc2 maintainer information
46396     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
46398 commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
46399 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
46400 Date:   Thu Aug 7 13:13:27 2008 +0530
46402     common/cmd_load.c - Minor code & Coding Style cleanup
46404     - os_data_header Variable is a carry over feature
46405        & unused. So removed all instance of this variable
46406      - Minor Code Style Update
46408     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
46409     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46411 commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
46412 Author: Magnus Lilja <lilja.magnus@gmail.com>
46413 Date:   Wed Aug 6 19:32:33 2008 +0200
46415     Update the U-Boot wiki URL.
46417     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
46419 commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
46420 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
46421 Date:   Sun Aug 10 17:56:36 2008 +0200
46423     OneNAND: Remove base address offset usage
46425     While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
46426     using OneNAND and some using NAND, we found some differences in OneNAND and
46427     NAND command address handling.
46429     As this might confuse users (it already confused us), we like to align OneNAND
46430     and NAND address handling.
46432     The issue is that cmd_onenand.c subtracts the onenand base address from the
46433     addresses you type into the u-boot command line so, unlike nand, you can't
46434     use addresses relative to the start of the onenand part e.g. this won't work:
46436     onenand read 82000000 280000 400000
46438     you have to use:
46440     onenand read 82000000 20280000 400000
46442     Looking at recent git, the only board currently using OneNAND is Apollon, and
46443     for this the OneNAND base address is 0 (apollon.h)
46445     #define     CFG_ONENAND_BASE        0x00000000
46447     so patch below won't break any existing boards and will align OneNAND and NAND
46448     handling on boards where OneNAND base address is != 0.
46450     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
46451     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
46452     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
46454 commit c11528083ef6e55e76df742228c26e39d151813d
46455 Author: Kumar Gala <galak@kernel.crashing.org>
46456 Date:   Thu Aug 7 09:28:20 2008 -0500
46458     mpc85xx: workaround old binutils bug
46460     The recent change to move the .bss outside of the image gives older
46461     binutils (ld from eldk4.1/binutils-2.16) some headache:
46463     ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
46464     ppc_85xx-ld: final link failed: Bad value
46466     We workaround it by being explicit about the program headers and not
46467     assigning the .bss to a program header.
46469     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46471 commit 0bf202ec586d4466c900e987720fa635c594d689
46472 Author: Wolfgang Denk <wd@denx.de>
46473 Date:   Sun Aug 10 01:26:26 2008 +0200
46475     Revert "[new uImage] Add autostart flag to bootm_headers structure"
46477     This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
46479     The commit was based on a misunderstanding of the (documented)
46480     meaning of the 'autostart' environment variable. It might cause
46481     boards to hang if 'autostart' was used, with the potential to brick
46482     them. Go back to the documented behaviour.
46484     Conflicts:
46486         common/cmd_bootm.c
46487         common/image.c
46488         include/image.h
46490     Signed-off-by: Wolfgang Denk <wd@denx.de>
46492 commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
46493 Author: Wolfgang Denk <wd@denx.de>
46494 Date:   Sat Aug 9 23:17:32 2008 +0200
46496     TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
46498     - enable CFI driver where this was forgotten
46499     - enable mtdparts support
46500     - adjust default environment
46501     etc.
46503     Signed-off-by: Wolfgang Denk <wd@denx.de>
46505 commit 41266c9b5a5f873df3ec891bb0907616958b5602
46506 Author: Peter Tyser <ptyser@xes-inc.com>
46507 Date:   Tue Aug 5 10:51:57 2008 -0500
46509     FIT: Fix handling of images without ramdisks
46511     boot_get_ramdisk() should not treat the case when a FIT image does
46512     not contain a ramdisk as an error.
46514     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
46515     Acked-by: Michal Simek <monstr@monstr.eu>
46517 commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
46518 Author: Sergey Lapin <slapin@ossfans.org>
46519 Date:   Sat Aug 9 01:39:09 2008 +0400
46521     DataFlash: AT45DB021 fix and AT45DB081 support
46523     Fix for page size of AT45DB021. Also adding bigger AT45DB081
46524     which comes with some newer boards.
46526     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
46528 commit ba9324451b662dd393afa53e5cc36fc5d3d10966
46529 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
46530 Date:   Fri Aug 8 16:30:23 2008 +0900
46532     sh: Update sh7763rdp config
46534     Add sh_eth support to sh7763rdp.
46536     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
46538 commit 21f971ec265f6042ec21636d55d06a6bc0751077
46539 Author: Wolfgang Denk <wd@denx.de>
46540 Date:   Mon Jul 7 01:22:29 2008 +0200
46542     TQM823L: re-enable logo support; update LCD_INFO text
46544     Signed-off-by: Wolfgang Denk <wd@denx.de>
46546 commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
46547 Author: Wolfgang Denk <wd@denx.de>
46548 Date:   Fri Aug 8 16:41:56 2008 +0200
46550     TQM8xxL: fix support for second flash bank
46552     When switching the TQM8xxL modules to use the CFI flash driver,
46553     support for the second flash bank was broken because the CFI driver
46554     did not support dynamically sized banks. This gets fixed now.
46556     Signed-off-by: Wolfgang Denk <wd@denx.de>
46558 commit 2a112b234d879f6390503a5f4e38246acce9d0b0
46559 Author: Wolfgang Denk <wd@denx.de>
46560 Date:   Fri Aug 8 16:39:54 2008 +0200
46562     CFI: allow for dynamically determined flash sizes and addresses
46564     The CFI driver allowed only for static initializers in the
46565     CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
46566     several flash banks contiguously if the bank sizes were not known in
46567     advance, which kind of violates U-Boot's design philosophy.
46569     (will be used for example by the TQM8xxL boards)
46571     Signed-off-by: Wolfgang Denk <wd@denx.de>
46573 commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
46574 Author: Ben Warren <biggerbadderben@gmail.com>
46575 Date:   Thu Aug 7 23:26:35 2008 -0700
46577     QE UEC: Fix compiler warnings
46579     Moved static functions earlier in file so forward declarations are not needed.
46581     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
46583 commit d5d28fe4aad5f4535400647a5617c11039506467
46584 Author: David Saada <David.Saada@ecitele.com>
46585 Date:   Mon Mar 31 02:37:38 2008 -0700
46587     QE UEC: Add MII Commands
46589     Add MII commands to the UEC driver. Note that once a UEC device is selected,
46590     any device on its MDIO bus can be addressed.
46592     Signed-off-by: David Saada <david.saada@ecitele.com>
46593     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
46595 commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
46596 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
46597 Date:   Wed Jul 9 21:07:38 2008 +0900
46599     usb: add support for R8A66597 usb controller
46601     add support for Renesas R8A66597 usb controller.
46602     This patch supports USB Host mode.
46604     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
46605     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46607 commit 1d10dcd041aaeae9fd7c821005692898a0303382
46608 Author: Hunter, Jon <jon-hunter@ti.com>
46609 Date:   Sat Jul 26 18:59:16 2008 -0500
46611     Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
46613     Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
46615     Signed-off-by: Jon Hunter <jon-hunter@ti.com>
46616     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46618 commit eab1007334b93a6209f1ec33615e26ef5311ede7
46619 Author: Steven A. Falco <sfalco@harris.com>
46620 Date:   Wed Aug 6 15:42:52 2008 -0400
46622     ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
46624     The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
46625     configuration to match the schematic, and also sets the SDR0_PFC1 register to
46626     select the corresponding mode for the UARTs.
46628     Signed-off-by: Steven A. Falco <sfalco@harris.com>
46629     Signed-off-by: Stefan Roese <sr@denx.de>
46631 commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
46632 Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
46633 Date:   Wed Aug 6 14:42:13 2008 +0200
46635     avr32: add support for EarthLCD Favr-32 board
46637     This patch adds support for the Favr-32 board made by EarthLCD.
46639     This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
46640     has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
46641     Ethernet, audio out, USB device, SD-card slot, USART and various other
46642     connectors for cennecting stuff to SPI, I2C, GPIO, etc.
46644     Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
46645     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46647 commit bc9019e19758a19a388fb20ef18dc771cd39fdda
46648 Author: Rafael Campos <rafael.campos@hanscan.com>
46649 Date:   Thu Jul 31 10:22:20 2008 +0200
46651     cfi-flash: Added support to flash_real_protect for Atmel flash devices
46653     Some of the flash memories produced by ATMEL start in read-only mode.
46654     We need to unprotect it. This patch allows the AT49BV6416 to work with
46655     cfi_flash memories. Tested in the at91rm9200ek board.
46657     Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
46658     Signed-off-by: Stefan Roese <sr@denx.de>
46660 commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
46661 Author: Guennadi Liakhovetski <lg@denx.de>
46662 Date:   Tue Aug 5 15:36:39 2008 +0200
46664     cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
46666     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
46667     Signed-off-by: Stefan Roese <sr@denx.de>
46669 commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
46670 Author: Stefan Roese <sr@denx.de>
46671 Date:   Wed Aug 6 14:06:03 2008 +0200
46673     Fix merge problems
46675     Signed-off-by: Stefan Roese <sr@denx.de>
46677 commit f2302d4430e7f3f48308d6a585320fe96af8afbd
46678 Author: Stefan Roese <sr@denx.de>
46679 Date:   Wed Aug 6 14:05:38 2008 +0200
46681     Fix merge problems
46683     Signed-off-by: Stefan Roese <sr@denx.de>
46685 commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
46686 Author: Kenneth Johansson <kenneth@southpole.se>
46687 Date:   Tue Jul 15 12:13:38 2008 +0200
46689     mpc5121: Move iopin features from board specific to common files.
46691     And in the process eliminate some duplicate register defines.
46693     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
46695 commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
46696 Author: John Rigby <jrigby@freescale.com>
46697 Date:   Tue Aug 5 17:38:57 2008 -0600
46699     mpc5121: squash some fdt fixup errors
46701     On ADS5121 when booting linux the following errors are seen:
46702         Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
46703         Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
46704         Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
46706     This is caused by ft_cpu_setup trying to deal with
46707     both old and new soc node naming.  This patch
46708     fixes this by being smarter about what to
46709     fixup.
46711     Also do soc node fixups by compatible instead of by path.
46712     A new board config called OF_SOC_COMPAT defined
46713     to be "fsl,mpc5121-immr" replaces the old
46714     OF_SOC node path that was defined to be "soc@80000000".
46716     Old device trees still work, but the compatiblity
46717     is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
46718     which is on by default in include/configs/ads5121.h.
46720     Signed-off-by: John Rigby <jrigby@freescale.com>
46722 commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
46723 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46724 Date:   Sat Aug 2 23:48:30 2008 +0200
46726     drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
46728     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46730 commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
46731 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46732 Date:   Sat Aug 2 23:48:32 2008 +0200
46734     nios2/sysid: fix printf warning
46736     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46738 commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
46739 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46740 Date:   Sat Aug 2 23:48:33 2008 +0200
46742     Fix remaining build issues with MPC8xx FADS boards.
46744     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46746 commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
46747 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46748 Date:   Sat Aug 2 23:48:31 2008 +0200
46750     nios2: fix phys_addr_t and phys_size_t support
46752     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46754 commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
46755 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46756 Date:   Sat Aug 2 23:48:34 2008 +0200
46758     mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
46760     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46762 commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
46763 Author: Mark Jackson <mpfj@mimc.co.uk>
46764 Date:   Fri Aug 1 09:48:29 2008 +0100
46766     Fix bitmap display for atmel lcd controller
46768     The current lcd_display_bitmap() function does not work properly
46769     for the Atmel LCD controller.
46771     2 fixes need to be done:-
46773     (a) when setting the colour map, use the lcd_setcolreg() function
46774         as provided by the Atmel driver
46775     (b) the data is never actually written to the lcd framebuffer !!
46777     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
46779 commit 2a433c66b1e2770349fe4911be23c375f053ebd8
46780 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46781 Date:   Fri Aug 1 08:40:34 2008 +0200
46783     qemu_mips: update README to follow qemu update about default machine
46785     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46787 commit ac169d645f5f0e0b9a232563099209e92a355d8e
46788 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46789 Date:   Thu Jul 31 19:53:21 2008 -0500
46791     ColdFire: Fix compilation issue caused by a missing function
46793     Implement usec2ticks() which is used by fsl_i2c.c in
46794     lib_m68k/time.c
46796     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46798 commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
46799 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46800 Date:   Thu Jul 31 19:53:06 2008 -0500
46802     Fix compilation error for TASREG
46804     TASREG is ColdFire platform, the include ppc4xx.h in
46805     board/esd/common/flash.c causes conflict.
46807     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46809 commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
46810 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46811 Date:   Thu Jul 31 19:52:36 2008 -0500
46813     Fix compilation error for MCF5275
46815     Rename OBJ to COBJ in board/platform/Makefile
46817     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46819 commit 5c40548f01218360a1f1395198c50ff45f3035b5
46820 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46821 Date:   Thu Jul 31 19:52:28 2008 -0500
46823     Fix compile error caused by incorrect function return type
46825     Rename int mii_init(void) to void mii_init(void) for idmr
46826     ColdFire platform
46828     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
46830 commit a58c78067c928976c082c758d3987e89ead5b191
46831 Author: Wolfgang Denk <wd@denx.de>
46832 Date:   Fri Aug 1 12:06:22 2008 +0200
46834     Fix build issues with MPC8xx FADS boards.
46836     Signed-off-by: Wolfgang Denk <wd@denx.de>
46838 commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
46839 Author: Wolfgang Denk <wd@denx.de>
46840 Date:   Thu Jul 31 17:54:03 2008 +0200
46842     Prepare v1.3.4-rc2: update CHANGELOG
46844     Signed-off-by: Wolfgang Denk <wd@denx.de>
46846 commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
46847 Author: Mark Jackson <mpfj@mimc.co.uk>
46848 Date:   Thu Jul 31 16:09:00 2008 +0100
46850     Add gzipped logo support
46852     The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
46854       If this option is set, additionally to standard BMP
46855       images, gzipped BMP images can be displayed via the
46856       splashscreen support or the bmp command.
46858     However, the splashscreen function *only* supports standard BMP images.
46860     This patch adds the documented gzip support.
46862     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
46864 commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
46865 Author: Mark Jackson <mpfj@mimc.co.uk>
46866 Date:   Thu Jul 31 15:56:48 2008 +0100
46868     Fix Atmel LCD controller endianess for AVR32 processors
46870     The Atmel lcd controller is used on Atmel's AT91 (little endian) and
46871     AVR32 (big endian) platforms.
46873     As such, the controller can handle both big and little endian memory.
46875     This patch fixes the driver for the AVR32 platform.
46877     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
46879 commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
46880 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46881 Date:   Thu Jul 31 15:56:01 2008 +0200
46883     apollon: fix build out of tree
46885     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46887 commit 2e752be39d3e398d4ab89ffa6634c397df298297
46888 Author: Guennadi Liakhovetski <lg@denx.de>
46889 Date:   Thu Jul 31 12:35:04 2008 +0200
46891     Uncompressed images loaded to their start address shall set load_end too
46893     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
46894     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
46896 commit c37207d7f51e19c17f859966f314e27cc1231801
46897 Author: Wolfgang Denk <wd@denx.de>
46898 Date:   Wed Jul 16 16:38:59 2008 +0200
46900     Fix printf() format problems with configurable prompts
46902     U-Boot allows for configurable prompt strings using the
46903     CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
46904     the assumption was that any such user defined problts would contain
46905     exactly one "%d" format specifier. But some boards did not.
46907     To allow for flexible boot prompts without adding too complex code we
46908     now allow to specify the whole list of printf() arguments in the user
46909     definition. This is powerful, but requires a responsible user who
46910     really understands what he is doing, as he needs to know for exanple
46911     which variables are available in the respective context.
46913     Signed-off-by: Wolfgang Denk <wd@denx.de>
46915 commit 54754120637b6a7f4ff774fb199fc550bcfea1da
46916 Author: Wolfgang Denk <wd@denx.de>
46917 Date:   Thu Jul 31 17:02:14 2008 +0200
46919     TQM85xx: fix typo introduce by commit ffbb5cb9
46921     Signed-off-by: Wolfgang Denk <wd@denx.de>
46923 commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
46924 Author: Wolfgang Denk <wd@denx.de>
46925 Date:   Thu Jul 31 15:27:01 2008 +0200
46927     mvbc_p board: fix most build warnings.
46929     Signed-off-by: Wolfgang Denk <wd@denx.de>
46931 commit c4ec6db074051d2f6fc76a66411c60621b22bc02
46932 Author: Wolfgang Denk <wd@denx.de>
46933 Date:   Thu Jul 31 13:57:20 2008 +0200
46935     E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
46937     Avoid "integer constant is too large for 'long' type" warnings.
46938     And simplify the code.
46940     Signed-off-by: Wolfgang Denk <wd@denx.de>
46942 commit 9196b44334c330cc13de2464c59181e4db71f549
46943 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
46944 Date:   Wed Jul 30 23:21:19 2008 +0400
46946     8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
46948     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
46950 commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
46951 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
46952 Date:   Wed Jul 30 23:20:32 2008 +0400
46954     PPC: Add pci_clk in the global_data for CPM2 processors
46956     This patch adds pci_clk field to the global_data structure for the
46957     processors which have CPM2 module in case the CONFIG_PCI is defined.
46959     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
46961 commit f0ff885ca64655bee6540eb8a25eed90b1152686
46962 Author: Kumar Gala <galak@kernel.crashing.org>
46963 Date:   Wed Jul 30 14:13:30 2008 -0500
46965     mpc85xx: Update linker scripts for Freescale boards
46967     * Move to using absolute addressing always.  Makes the scripts a bit more
46968       portable and common
46969     * Moved .bss after the end of the image.  These allows us to have more
46970       room in the resulting binary image for code and data.
46971     * Removed .text object files that aren't really needed
46972     * Make sure _end is 4-byte aligned as the .bss init code expects this.
46973       (Its possible that the end of .bss isn't 4-byte aligned)
46975     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
46977 commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
46978 Author: Kumar Gala <galak@kernel.crashing.org>
46979 Date:   Wed Jul 30 08:01:15 2008 -0500
46981     Fix compile warnings in dlmalloc
46983     The origional code was using on odd reference to get to the first
46984     real element in av_[].  The first two elements of the array are
46985     not used for actual bins, but for house keeping.  If we are more
46986     explicit about how use the first few elements we can get rid of the
46987     warnings:
46989     dlmalloc.c: In function 'malloc_extend_top':
46990     dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
46991     dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
46992     dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
46993     ...
46995     The logic of how this code came to be is:
46996         bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
46998     SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
46999         bin_at(0) = &(av_[0])
47001     Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
47003     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47005 commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
47006 Author: Stefan Roese <sr@denx.de>
47007 Date:   Wed Jul 30 10:21:01 2008 +0200
47009     ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
47011     Signed-off-by: Stefan Roese <sr@denx.de>
47013 commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
47014 Author: Stefan Roese <sr@denx.de>
47015 Date:   Wed Jul 30 09:59:51 2008 +0200
47017     cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
47019     A recent patch used '#if (CONFIG_CMD_USB)' instead of
47020     '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
47021     common/bootm.c compile again.
47023     Signed-off-by: Stefan Roese <sr@denx.de>
47024     Acked-by: Markus Klotzbuecher <mk@denx.de>
47026 commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
47027 Author: Kyungmin Park <kmpark@infradead.org>
47028 Date:   Tue Jul 22 08:01:43 2008 +0900
47030     Remove unused I2C at apollon board
47032     There are no I2C devices on this board.
47034     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
47036 commit 3c95960e526b3b026da20201db64526f46faf14b
47037 Author: Wolfgang Denk <wd@denx.de>
47038 Date:   Thu Jul 31 10:12:09 2008 +0200
47040     at91rm9200dk, csb637: fix NAND related build problems
47042     Tried fixing NAND support for the at91rm9200dk board; untested.
47043     Disabled NAND support in the csb637 board config file.
47045     Signed-off-by: Wolfgang Denk <wd@denx.de>
47047 commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
47048 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47049 Date:   Wed Jul 30 12:39:28 2008 +0200
47051     ppc4xx: ML507: Environment in flash and MTD Support
47053     - Relocate the location of U-Boot in the flash
47054     - Save the environment in one sector of the flash memory
47055     - MTD Support
47057     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47058     Signed-off-by: Stefan Roese <sr@denx.de>
47060 commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
47061 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47062 Date:   Tue Jul 29 17:16:10 2008 +0200
47064     ppc4xx: ML507: Use of get_ram_size in board ml507
47066     - Change suggested by WD
47068     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47069     Signed-off-by: Stefan Roese <sr@denx.de>
47071 commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
47072 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47073 Date:   Mon Jul 21 20:30:07 2008 +0200
47075     ppc4xx: ML507: U-Boot in flash and System ACE
47077     This patch allows booting from FLASH the ML507 board by Xilinx.
47078     Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
47080     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47081     Signed-off-by: Stefan Roese <sr@denx.de>
47083 commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
47084 Author: Julien May <mailinglist@miromico.ch>
47085 Date:   Mon Jun 23 13:57:52 2008 +0200
47087     Add support for the hammerhead (AVR32) board
47089     The Hammerhead platform is built around a AVR32 32-bit microcontroller
47090     from Atmel.  It offers versatile peripherals, such as ethernet, usb
47091     device, usb host etc.
47093     The board also incooperates a power supply and is a Power over Ethernet
47094     (PoE) Powered Device (PD).
47096     Additonally, a Cyclone III FPGA from Altera is integrated on the board.
47097     The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
47098     DDR2 SDRAM interfaces, which will cover even the most exceptional need
47099     of memory bandwidth. Together with the onboard video decoder the board
47100     is ready for video processing.
47102     For more information see: http:///www.miromico.com/hammerhead
47104     Signed-off-by: Julien May <mailinglist@miromico.ch>
47105     [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
47106     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47108 commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
47109 Author: Kumar Gala <galak@kernel.crashing.org>
47110 Date:   Tue Jul 29 12:23:49 2008 -0500
47112     fsl_i2c: Use timebase timer functions instead of get_timer()
47114     The current implementation of get_timer() is only really useful after we
47115     have relocated u-boot to memory.  The i2c code is used before that as part
47116     of the SPD DDR setup.
47118     We actually have a bug when using the get_timer() code before relocation
47119     because the .bss hasn't been setup and thus we could be reading/writing
47120     a random location (probably in flash).
47122     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47124 commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
47125 Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
47126 Date:   Tue Jul 29 14:49:31 2008 +0200
47128     Adder8xx: Fix CFG_MONITOR_LEN
47130     Due to increased space usage, U-Boot can no longer be stored in three sectors.
47131     The current U-Boot use just over three flash sectors (197k), and U-Boot will
47132     become corrupt after saving environment variables. This patch adds another 64k
47133     to CFG_MONITOR_LEN.
47135     Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
47137 commit a4c59ad4a21140550ada6f97690d2527c4146ce5
47138 Author: Kyungmin Park <kmpark@infradead.org>
47139 Date:   Tue Jul 29 08:47:57 2008 +0900
47141     Add OneNAND IPL related files to gitignore
47143     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
47145 commit 8d87589e8e874df7120a3d9667f051bc33bac250
47146 Author: Rafal Jaworowski <raj@semihalf.com>
47147 Date:   Mon Jul 28 20:38:25 2008 +0200
47149     API: Teach the storage layer about SATA and MMC options.
47151     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
47152     Acked-by: Rafal Jaworowski <raj@semihalf.com>
47154 commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
47155 Author: Rafal Jaworowski <raj@semihalf.com>
47156 Date:   Mon Jul 28 20:37:48 2008 +0200
47158     API: Dump contents of sector 0 in the demo application.
47160     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
47161     Acked-by: Rafal Jaworowski <raj@semihalf.com>
47163 commit 13ca6305f2eba49c175f6370c35286141059c789
47164 Author: Rafal Jaworowski <raj@semihalf.com>
47165 Date:   Mon Jul 28 20:37:10 2008 +0200
47167     API: Correct storage enumeration routine, other minor fixes in API storage area.
47169     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
47170     Acked-by: Rafal Jaworowski <raj@semihalf.com>
47172 commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
47173 Author: Rafal Jaworowski <raj@semihalf.com>
47174 Date:   Mon Jul 28 20:36:19 2008 +0200
47176     API: Fix compilation warnings in api_examples/demo.c.
47178     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
47180 commit c14eefcc48212af2f3314809605698dd8393a90a
47181 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47182 Date:   Sun Jul 27 17:09:43 2008 +0200
47184     Fix more printf() format warnings
47186     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47188 commit 936897d4d1365452bbbdf8430db5e7769ef08d38
47189 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47190 Date:   Fri Jul 25 15:18:16 2008 +0200
47192     Fix remaining CFG_CMD_ define, ifdef and comments
47194     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47196 commit 5d1d00fb36005482e1803a00ddc46efa11d719af
47197 Author: Stefano Babic <sbabic@denx.de>
47198 Date:   Fri Jul 25 08:57:40 2008 +0200
47200     Add include for config.h in command.h.
47202     Because the cmd_tbl_s structure depends on the configuration file, it
47203     must be assured that config.h is included before the structure is
47204     evaluated by the compiler. If this is not certain, it could happen
47205     that the compiler generates structures of different size, depending
47206     on the fact if the source file includes <config.h> before or after
47207     <command.h>.
47209     The effect is that u-boot crashes when tries to relocate the command
47210     table (for ppc) or try to access to the command table for other
47211     architectures.
47213     The problem can happen on board-depending commands. All general
47214     commands under /common are unaffected, because they include already
47215     config.h before command.h.
47217     Signed-off-by: Stefano Babic <sbabic@denx.de>
47219 commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
47220 Author: Scott Wood <scottwood@freescale.com>
47221 Date:   Wed Jul 23 13:16:06 2008 -0500
47223     NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
47225     This fixes building out-of-tree.
47227     Signed-off-by: Scott Wood <scottwood@freescale.com>
47229 commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
47230 Author: Heiko Schocher <hs@denx.de>
47231 Date:   Wed Jul 23 07:30:46 2008 +0200
47233     Fix warnings if compiling with IDE support.
47235     cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
47236     cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
47238     Signed-off-by: Heiko Schocher <hs@denx.de>
47240 commit 7610db17fd4d59c51d825488526d85ede2f06767
47241 Author: Adrian Filipi <adrian.filipi@eurotech.com>
47242 Date:   Tue Jul 22 14:28:11 2008 -0400
47244     Removed support for the adsvix board.
47246     Support for the adsvix was originally provided by Applied Data
47247     Systems (ADS), inc., now EuroTech, Inc.
47248     The board never shipped aside from some sample boards.
47250     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
47252 commit f96b44cef897bd372beb86dde1b33637c119d84d
47253 Author: Remy Bohmer <linux@bohmer.net>
47254 Date:   Tue Jul 22 16:22:11 2008 +0200
47256     ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
47258     If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
47259     never set, because relocation to RAM is actually never done by U-boot
47260     itself. However, several pieces of code check if this flag is set at
47261     some time.
47263     So, to make sure this flag is set on boards skipping relocation, this
47264     is added to the initialisation of U-boot at a moment where it is safe
47265     to do so.
47267     Signed-off-by: Remy Bohmer <linux@bohmer.net>
47269 commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
47270 Author: Timur Tabi <timur@freescale.com>
47271 Date:   Mon Jul 21 14:26:23 2008 -0500
47273     fsl-i2c: fix writes to data segment before relocation
47275     Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
47276     relocation.  Commit d8c82db4 added the ability for i2c_init() to program the
47277     I2C bus speed and save the value in i2c_bus_speed[], which is a global
47278     variable.  It is an error to write to the data segment before relocation,
47279     which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
47281     Signed-off-by: Timur Tabi <timur@freescale.com>
47283 commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
47284 Author: Wolfgang Ocker <weo@reccoware.de>
47285 Date:   Mon Jul 28 16:56:51 2008 +0200
47287     mips: Fix baudrate divisor computation on alchemy cpus
47289     Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
47290     on alchemy cpus.
47292     Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
47293     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47295 commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
47296 Author: Ben Warren <biggerbadderben@gmail.com>
47297 Date:   Sat Jul 5 00:08:48 2008 -0700
47299     Moved initialization of AVR32 Ethernet controllers to board_eth_init()
47301     Renamed initialization functions for atngw100 and atstk1000.
47302     Removed initializations for these boards from net/eth.c
47304     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
47305     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47307 commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
47308 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47309 Date:   Wed Jul 23 10:55:46 2008 +0200
47311     spi flash: Fix printf() format warnings
47313     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47315 commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
47316 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47317 Date:   Wed Jul 23 10:55:31 2008 +0200
47319     atmel_mci: Fix printf() format warnings
47321     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47323 commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
47324 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47325 Date:   Wed Jul 23 10:55:15 2008 +0200
47327     avr32: Fix printf() format warnings
47329     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47331 commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
47332 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47333 Date:   Wed Jul 23 10:52:19 2008 +0200
47335     avr32: asm/io.h needs asm/types.h
47337     map_physmem() takes a phys_addr_t as parameter. This type is defined in
47338     asm/types.h, so we need to include that file.
47340     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
47342 commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
47343 Author: Michal Simek <monstr@monstr.eu>
47344 Date:   Thu Jul 17 12:25:46 2008 +0200
47346     microblaze: Fix printf() format issues
47348     Signed-off-by: Michal Simek <monstr@monstr.eu>
47350 commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
47351 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
47352 Date:   Thu Jul 17 07:27:51 2008 +0530
47354     Remove unused code from lib_arm/bootm.c
47356     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
47358 commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
47359 Author: Detlev Zundel <dzu@denx.de>
47360 Date:   Wed Jul 16 18:56:45 2008 +0200
47362     tqm85xx: Demystify 'DK: !!!' comment
47364     Signed-off-by: Detlev Zundel <dzu@denx.de>
47366 commit b2f44ba570f3a01113bbb745daf46f3858d22f53
47367 Author: Detlev Zundel <dzu@denx.de>
47368 Date:   Wed Jul 16 18:56:44 2008 +0200
47370     83xx/85xx/86xx: Add LTEDR local bus definitions
47372     Signed-off-by: Detlev Zundel <dzu@denx.de>
47374 commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
47375 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47376 Date:   Wed Jul 16 16:22:32 2008 +0200
47378     serial_xuartlite.c: fix compiler warnings
47380     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47381     Acked-by: Grant Likely <grant.likely@secretlab.ca>
47383 commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
47384 Author: Stefan Roese <sr@denx.de>
47385 Date:   Fri Jul 18 11:03:35 2008 +0200
47387     POST: Add disable interrupts in some of the missing CPU POST tests
47389     Some CPU POST tests did not disable the interrupts while running. This
47390     seems to be necessary to protect this self modifying code.
47392     Signed-off-by: Stefan Roese <sr@denx.de>
47394 commit 97a3bf268d096e0e97e54048448c35114edcf557
47395 Author: Stefan Roese <sr@denx.de>
47396 Date:   Fri Jul 18 10:43:24 2008 +0200
47398     ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
47400     This is needed for boards that define CFG_64BIT_STRTOUL but don't define
47401     CFG_64BIT_LBA.
47403     Signed-off-by: Stefan Roese <sr@denx.de>
47405 commit 0043ac55024963295fc79b39af85b6dc3b261e17
47406 Author: Niklaus Giger <niklaus.giger@netstal.com>
47407 Date:   Fri Jul 18 11:22:23 2008 +0200
47409     POST PPC4xx/spr IVPR only if PPC440
47411     The SPR IVPR register is only present (as far as I know) for
47412     processors with a PPC440 core.
47414     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
47415     Acked-by: Stefan Roese <sr@denx.de>
47417 commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
47418 Author: Stefan Roese <sr@denx.de>
47419 Date:   Fri Jul 18 10:42:29 2008 +0200
47421     ppc4xx: Enable 64bit printf format on 440/460 platforms
47423     This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
47424     440/460 platforms. This may be needed since those platforms support
47425     36bit physical address space.
47427     Signed-off-by: Stefan Roese <sr@denx.de>
47429 commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
47430 Author: Stefan Roese <sr@denx.de>
47431 Date:   Fri Jul 18 15:57:23 2008 +0200
47433     ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
47435     This patch fixes a problem with incorrect MODTx (On Die Termination)
47436     setup for a configuration with multiple DIMM's and multiple ranks.
47437     Without this change Katmai was unable to boot Linux with DDR2 frequency
47438     >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
47439     with DDR2 frequency = 640MHz and mem=4GB.
47441     Signed-off-by: Stefan Roese <sr@denx.de>
47443 commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
47444 Author: Stefan Roese <sr@denx.de>
47445 Date:   Fri Jul 18 12:24:41 2008 +0200
47447     ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
47449     Signed-off-by: Stefan Roese <sr@denx.de>
47451 commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
47452 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47453 Date:   Thu Jul 17 12:47:09 2008 +0200
47455     ppc4xx: ML507 Board Support
47457     The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
47458         among others:
47459         -Virtex 5 FX FPGA (With a ppc440x5 in it)
47460         -256MB of SDRAM2
47461         -32MB of Flash
47462         -I2C Eeprom
47463         -System ACE chip
47464         -Serial ATA connectors
47465         -RS232 Level Conversors
47466         -Ethernet Transceiver
47468     This patch gives support to a standard design produced by EDK for this
47469     board: ppc440, uartlite, xilinx_int and flash
47471     - Includes Changes propossed by Stefan Roese and Michal Simek
47473     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47474     Acked-by: Stefan Roese <sr@denx.de>
47476 commit d865fd09809a3a18669f35f970781820af40e4de
47477 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47478 Date:   Thu Jul 17 11:44:12 2008 +0200
47480     ppc4xx: CPU PPC440x5 on Virtex5 FX
47482     -This patchs gives support for the embbedded ppc440
47483      on the Virtex5 FPGAs
47484     -interrupts.c divided in uic.c and interrupts.c
47485     -xilinx_irq.c for xilinx interrupt controller
47486     -Include modifications propossed by  Stefan Roese
47488     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
47489     Acked-by: Stefan Roese <sr@denx.de>
47491 commit 340ccb260f21516be360745d5c5e3bd0657698df
47492 Author: Sebastian Siewior <bigeasy@linutronix.de>
47493 Date:   Wed Jul 16 20:04:49 2008 +0200
47495     cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
47497     This got broken by commits 93c56f212c
47498      [cfi_flash: support of long cmd in U-boot.]
47500     That command needs to be in little endian format on BE machines
47501     with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
47502     gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
47503     the cmdbuf in case portwidth = chipwidth = 8bit.
47505     Cc: Alexey Korolev <akorolev@infradead.org>
47506     Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
47507     Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
47509 commit 11188d55bc16dd907451c00282e00a038f73dd62
47510 Author: Stefan Roese <sr@denx.de>
47511 Date:   Thu Jul 17 10:40:51 2008 +0200
47513     ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
47515     Signed-off-by: Stefan Roese <sr@denx.de>
47517 commit 021f6df6e96af5b387810cf96d24848da1faa55c
47518 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
47519 Date:   Thu Jul 10 17:20:51 2008 +0400
47521     83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
47523     The thinko was quite silly indeed, I messed with !ptr. Normally this
47524     would trigger some fault, but in U-Boot NULL pointer is equal to phys
47525     0, so the code was working still, just didn't actually test mpc8315erdb
47526     environment variable value. Heh.
47528     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
47529     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47531 commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
47532 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
47533 Date:   Tue Jul 8 21:00:04 2008 +0400
47535     83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
47537     Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
47538     support, or without TSEC1 but with USB ULPI PHY support in addition.
47539     With this patch user can specify desired USB PHY.
47541     Also, it seems that we can't distinguish the two boards in software, so
47542     user have to set `mpc8315erdb' environment variable to either 'tsec1'
47543     (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
47544     Linux will not probe for TSEC1.
47546     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
47547     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47549 commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
47550 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
47551 Date:   Tue Jul 8 20:59:43 2008 +0400
47553     fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
47555     Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
47556     MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
47557     (connected to the four-ports hub, usb host only).
47559     This patch implements support for passing Dual-Role USB controller's
47560     device tree property phy_type through the usb_phy_type environment
47561     variable.
47563     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
47564     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
47565     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47567 commit 699f05125509249072a0b865c8d35520d97cd501
47568 Author: Wolfgang Denk <wd@denx.de>
47569 Date:   Tue Jul 15 22:22:44 2008 +0200
47571     Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
47573     Signed-off-by: Wolfgang Denk <wd@denx.de>
47575 commit bcab74baa6b1b1c969038ab6f64a186239180405
47576 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47577 Date:   Tue Jul 15 11:23:02 2008 -0400
47579     Round the serial port clock divisor value returned by calc_divisor()
47581     Round the serial port clock divisor value returned by
47582     calc_divisor()
47584     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47585     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
47587 commit 0328ef0edfe950f0b7b8b368dae482531506b74a
47588 Author: Robin Getz <rgetz@blackfin.uclinux.org>
47589 Date:   Tue Jul 15 21:44:46 2008 +0200
47591     Fix DHCP protocol so U-Boot does not respond too early
47592     on the network with it's offered IP number; it should not reply until
47593     after it has received a DHCP ACK message. Also ensures that U-Boot
47594     does it's DHCPREQUEST as broadcast (per RFC 2131).
47596     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
47597     Acked-by: Ben Warren <biggerbadderben@gmail.com>
47598     Signed-off-by: Wolfgang Denk <wd@denx.de>
47600 commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
47601 Author: Sebastian Siewior <bigeasy@linutronix.de>
47602 Date:   Tue Jul 15 13:35:23 2008 +0200
47604     cfi_flash: make the command u32 only
47606     This got changed by commit 93c56f212c
47607     [cfi_flash: support of long cmd in U-boot.]
47609     Long is the wrong type because it will behave differently on 64bit
47610     machines in a way that is probably not expected. u32 should be
47611     enough.
47613     Cc: Alexey Korolev <akorolev@infradead.org>
47614     Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
47615     Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
47617 commit 31cfe57491b183acae575d486729e158f016c27b
47618 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47619 Date:   Mon Jul 14 23:48:41 2008 +0200
47621     tools/gitignore: update to all generated files
47623     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47625 commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
47626 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
47627 Date:   Wed Jul 9 18:30:44 2008 +0200
47629     mpc5xxx: Add MVBC_P board support
47631     The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
47632     controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
47634     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
47635     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47637 commit e2d31fb3450653115452144363d5bde4e5e3e693
47638 Author: Timur Tabi <timur@freescale.com>
47639 Date:   Thu Jun 19 17:56:11 2008 -0500
47641     Update Freescale sys_eeprom.c to handle CCID formats
47643     Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats.  The
47644     NXID format replaces the older CCID format, but it's important to support both
47645     since most boards out there still use the CCID format.  This change is in
47646     preparation for using one file to handle both formats.  This will also unify
47647     EEPROM support for all Freescale 85xx and 86xx boards.
47649     Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
47650     instead of ID_EEPROM_ADDR.
47652     Signed-off-by: Timur Tabi <timur@freescale.com>
47654 commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
47655 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
47656 Date:   Fri Jul 11 17:22:43 2008 +0900
47658     pci: sh: Add pci_skip_dev and pci_print_dev function
47660     Add function of new PCI, pci_skip_dev and pci_print_dev.
47662     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
47663     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
47665 commit 1107014e835ec9d46c0333f4211d104f77442db0
47666 Author: Andy Fleming <afleming@freescale.com>
47667 Date:   Mon Jul 14 20:29:07 2008 -0500
47669     Clean up INIT_RAM options
47671     The L2_INIT_RAM option was unused, and recent changes to the TLB code
47672     meant that the INIT_RAM TLBs weren't being cleared out.  In order to reduce
47673     the amount of mapped space attached to nothing, we change things so the TLBs
47674     get cleared.
47676     Signed-off-by: Andy Fleming <afleming@freescale.com>
47678 commit 4524561820a9327e89107854b3a7187800ccf719
47679 Author: Andy Fleming <afleming@freescale.com>
47680 Date:   Mon Jul 14 20:26:57 2008 -0500
47682     Remove fake flash bank from 8544 DS
47684     The fake flash bank was generating errors for anyone who didn't have a
47685     PromJET hooked up to the board.  As that constitutes the vast majority of
47686     users, we remove it.
47688     Signed-off-by: Andy Fleming <afleming@freescale.com>
47690 commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
47691 Author: Kumar Gala <galak@kernel.crashing.org>
47692 Date:   Mon Jul 14 14:07:03 2008 -0500
47694     MPC8544DS: Add ATI Video card support
47696     Add support for using a PCIe ATI Video card on PCIe2.
47698     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47700 commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
47701 Author: Kumar Gala <galak@kernel.crashing.org>
47702 Date:   Mon Jul 14 14:07:02 2008 -0500
47704     85xx: Add some L1/L2 SPR register definitions
47706     Add new L1/L2 SPRs related to e500mc cache config and control.
47708     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47710 commit e5852787f0c3c442a276262f13d91ca450605ac0
47711 Author: Kumar Gala <galak@kernel.crashing.org>
47712 Date:   Mon Jul 14 14:07:01 2008 -0500
47714     MPC8544DS: Report board id, board version and fpga version.
47716     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47718 commit 73f15a060f67a2462551c334215bd20fac6b81d1
47719 Author: Kumar Gala <galak@kernel.crashing.org>
47720 Date:   Mon Jul 14 14:07:00 2008 -0500
47722     85xx: Cleanup L2 cache size detection
47724     The L2 size detection code was a bit confusing and we kept having to add
47725     code to it to handle new processors.  Change the sense of detection so we
47726     look for the older processors that aren't changing.
47728     Also added support for 1M cache size on 8572.
47730     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47732 commit c3ca7e5e00a24451f20df3bded9a61ba541921df
47733 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47734 Date:   Fri Jul 11 15:33:08 2008 -0400
47736     sbc8560: enable CONFIG_OF_LIBFDT by default
47738     Make the default build for the sbc8560 board be powerpc
47739     capable with libfdt support.
47741     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
47743 commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
47744 Author: Andy Fleming <afleming@freescale.com>
47745 Date:   Mon Jul 14 20:04:40 2008 -0500
47747     Fix indentation for default boot environment variables
47749     This was proposed by Paul Gortmaker in response to Wolfgang's comments on
47750     similar #defines in sbc8560.h.
47752     Signed-off-by: Andy Fleming <afleming@freescale.com>
47754 commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
47755 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47756 Date:   Fri Jul 11 15:33:07 2008 -0400
47758     sbc8560: add default fdt values
47760     Add in the default fdt settings and the typical EXTRA_ENV
47761     settings as borrowed from the mpc8560ads.  Fix a couple
47762     of stale references to the mpc8560ads dating back to the
47763     original clone/fork.
47765     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
47766     Signed-off-by: Andy Fleming <afleming@freescale.com>
47768 commit d04e76edf92f7f89696989e8702b97e020455af3
47769 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47770 Date:   Fri Jul 11 15:33:06 2008 -0400
47772     sbc8560: add in ft_board_setup()
47774     Add in for the sbc8560, the ft_board_setup() routine, based on what is
47775     in use for the Freescale MPC8560ADS board.
47777     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
47779 commit c158bcaca3b31cbe38c4143812e6170e38a57393
47780 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47781 Date:   Fri Jul 11 15:33:05 2008 -0400
47783     sbc8560: define eth0 and eth1 instead of eth1 and eth2
47785     The existing config doesn't define CONFIG_HAS_ETH0, and so the
47786     fdt support doesn't update the zeros in the dtb local-mac with
47787     real data from the u-boot env.  Since the existing config is
47788     tailored to just two interfaces, get rid of the ETH2 definitions
47789     at the same time.
47791     Also don't include any end user specific data into the environment
47792     by default -- things like MAC address, network parameters etc. need
47793     to come from the end user.
47795     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
47796     Signed-off-by: Andy Fleming <afleming@freescale.com>
47798 commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
47799 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47800 Date:   Fri Jul 11 15:33:04 2008 -0400
47802     sbc8560: properly set cs0_bnds for 512MB
47804     The sbc8560 board ships with 512MB of memory installed,
47805     but the current cs0_bnds is hard coded for 256MB.  Set the
47806     value based on CFG_SDRAM_SIZE.
47808     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
47810 commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
47811 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47812 Date:   Fri Jul 11 15:33:03 2008 -0400
47814     sbc8560: proper definitions for TSEC.
47816     The definitions for the TSEC have become out of date.  There is no
47817     longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
47818     Update to match those of other boards, like the MPC8560ADS.
47820     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
47821     Acked-by: Ben Warren <biggerbadderben@gmail.com>
47823 commit 71074abbe0c76429577aff58aeff0a24ad210b23
47824 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47825 Date:   Wed Jul 9 13:23:05 2008 -0400
47827     8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
47829     Some boards that have external 16550 UARTs don't have a direct
47830     tie between bi_busfreq and the clock used for the UARTs.  Boards
47831     that do have such a tie should set CFG_NS16550_CLK to be
47832     get_bus_freq(0) -- which most of them do already.
47834     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
47835     Acked-by: Kim Phillips <kim.phillips@freescale.com>
47837 commit 24ef76f320fbadf074105229826514db140f939f
47838 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
47839 Date:   Wed Jul 2 07:03:53 2008 -0700
47841     Change the temp map to ROM to align addresses to page size.
47843     With a page size of BOOKE_PAGESZ_16M, both the real and effective
47844     addresses must be multiples of 16MB.  The hardware silently truncates
47845     them so the code happens to work.  This patch clarifies the situation
47846     by establishing addresses that the hardware doesn't need to truncate.
47848     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
47849     Signed-off-by: Andy Fleming <afleming@freescale.com>
47851 commit 06b4186c10204b6683edb047ac5f506fb0ce0937
47852 Author: Kim Phillips <kim.phillips@freescale.com>
47853 Date:   Tue Jun 17 17:45:22 2008 -0500
47855     mpc85xx: use IS_E_PROCESSOR macro
47857     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47859 commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
47860 Author: Kim Phillips <kim.phillips@freescale.com>
47861 Date:   Mon Jun 16 15:55:53 2008 -0500
47863     fdt: add crypto node handling for MPC8{3, 5}xxE processors
47865     Delete the crypto node if not on an E-processor.  If on 8360 or 834x family,
47866     check rev and up-rev crypto node (to SEC rev. 2.4 property values)
47867     if on an 'EA' processor, e.g. MPC8349EA.
47869     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47871 commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
47872 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47873 Date:   Fri Jul 11 15:10:11 2008 -0400
47875     ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
47877     ARM DaVinci: Remove extern phy_t declaration by moving
47878     code to proper place.
47880     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47882 commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
47883 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47884 Date:   Fri Jul 11 15:10:10 2008 -0400
47886     ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
47888     ARM DaVinci: Remove duplicate definitions of MACH_TYPE
47889     and prototype of i2c_init().
47891     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
47893 commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
47894 Author: Kumar Gala <galak@kernel.crashing.org>
47895 Date:   Mon Jul 14 14:03:02 2008 -0500
47897     Fix some more printf() format problems.
47899     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47901 commit 45b16d22c64674ccd8c4637456a987463609141c
47902 Author: Wolfgang Denk <wd@denx.de>
47903 Date:   Mon Jul 14 22:38:42 2008 +0200
47905     Fix coding style; make code better parsable by external tools
47907     Signed-off-by: Wolfgang Denk <wd@denx.de>
47909 commit b880cbf207b1c109d3a661417a8feddcbd729a9d
47910 Author: Wolfgang Denk <wd@denx.de>
47911 Date:   Mon Jul 14 21:19:08 2008 +0200
47913     cpu/i386/serial.c: Fix syntax errors
47915     Signed-off-by: Wolfgang Denk <wd@denx.de>
47917 commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
47918 Author: Wolfgang Denk <wd@denx.de>
47919 Date:   Mon Jul 14 20:41:35 2008 +0200
47921     elppc board: Coding style cleanup.
47923     Signed-off-by: Wolfgang Denk <wd@denx.de>
47925 commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
47926 Author: Wolfgang Denk <wd@denx.de>
47927 Date:   Mon Jul 14 20:40:22 2008 +0200
47929     elppc board: fix syntax error.
47931     Signed-off-by: Wolfgang Denk <wd@denx.de>
47933 commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
47934 Author: Wolfgang Denk <wd@denx.de>
47935 Date:   Mon Jul 14 20:38:26 2008 +0200
47937     EB+MCF-EV123 board: fix coding style (alingment)
47939     Signed-off-by: Wolfgang Denk <wd@denx.de>
47941 commit 6841785a0bb0f38175456a923edd634fb7dd6947
47942 Author: Wolfgang Denk <wd@denx.de>
47943 Date:   Mon Jul 14 20:36:44 2008 +0200
47945     EB+MCF-EV123 board: fix syntx error
47947     Signed-off-by: Wolfgang Denk <wd@denx.de>
47949 commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
47950 Author: Andy Fleming <afleming@freescale.com>
47951 Date:   Mon Jul 7 18:02:08 2008 -0500
47953     Remove LBC_CACHE_BASE from 8544 DS
47955     The 8544 DS doesn't have any cacheable Local Bus memories set up.  By mapping
47956     space for some anyway, we were allowing speculative loads into unmapped space,
47957     which would cause an exception (annoying, even if ultimately harmless).
47958     Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
47959     problem.
47961     Signed-off-by: Andy Fleming <afleming@freescale.com>
47963 commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
47964 Author: Wolfgang Denk <wd@denx.de>
47965 Date:   Mon Jul 14 15:19:07 2008 +0200
47967     Code cleanup: fix old style assignment ambiguities like "=-" etc.
47969     Signed-off-by: Wolfgang Denk <wd@denx.de>
47971 commit d7854223c5c85b5849fbf422cc8ac0efef461c37
47972 Author: Wolfgang Denk <wd@denx.de>
47973 Date:   Mon Jul 14 15:10:53 2008 +0200
47975     AmigaOneG3SE: remove dead and incomplete files
47977     Signed-off-by: Wolfgang Denk <wd@denx.de>
47979 commit b64f190b7a34224df09b559ca111eb1b733f00ad
47980 Author: Wolfgang Denk <wd@denx.de>
47981 Date:   Mon Jul 14 15:06:35 2008 +0200
47983     Fix printf() format issues with sizeof_t types by using %zu
47985     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47986     Signed-off-by: Wolfgang Denk <wd@denx.de>
47988 commit f354b73e16a86f9e9085471a830605f74f84ea5d
47989 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47990 Date:   Mon Jul 14 14:11:45 2008 +0200
47992     vsprintf: add z and t options
47994     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47996 commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
47997 Author: Wolfgang Denk <wd@denx.de>
47998 Date:   Sun Jul 13 23:07:35 2008 +0200
48000     Fix some more printf() format issues.
48002     Signed-off-by: Wolfgang Denk <wd@denx.de>
48004 commit d5996dd555edf52721b7691a4c59de016251ed39
48005 Author: Wolfgang Denk <wd@denx.de>
48006 Date:   Sun Jul 13 19:51:00 2008 +0200
48008     Fix some more printf() format problems.
48010     Signed-off-by: Wolfgang Denk <wd@denx.de>
48012 commit 0f9d5f6d6e814907794995c6a22af752040c35d9
48013 Author: Wolfgang Denk <wd@denx.de>
48014 Date:   Sun Jul 13 19:48:26 2008 +0200
48016     ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
48018     Signed-off-by: Wolfgang Denk <wd@denx.de>
48020 commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
48021 Author: Anatolij Gustschin <agust@denx.de>
48022 Date:   Sat Jul 12 17:31:36 2008 +0200
48024     Fix bug in Lime video driver
48026     We need to wait while drawing engine clears frame
48027     buffer before any further software accesses to frame
48028     buffer will be initiated. Otherwise software drawn
48029     parts could be partially destroyed by the drawing
48030     engine or even GDC chip freeze could occur (as
48031     observed on socrates board).
48033     Signed-off-by: Anatolij Gustschin <agust@denx.de>
48035 commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
48036 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48037 Date:   Sat Jul 12 14:36:34 2008 +0200
48039     Fix some more printf() format issues.
48041     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48043 commit 18c8a28aad49803780bd8d52432ded528e37e701
48044 Author: Michal Simek <monstr@monstr.eu>
48045 Date:   Fri Jul 11 15:11:57 2008 +0200
48047     hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
48049     Signed-off-by: Michal Simek <monstr@monstr.eu>
48050     Acked-by: Stefan Roese <sr@denx.de>
48052 commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
48053 Author: Michal Simek <monstr@monstr.eu>
48054 Date:   Fri Jul 11 11:50:53 2008 +0200
48056     hwmon: Cleaning hwmon devices
48058     Clean Makefile
48059     Move device specific values to driver for better reading
48061     Signed-off-by: Michal Simek <monstr@monstr.eu>
48062     Acked-by: Stefan Roese <sr@denx.de>
48064 commit c78fce699c7ff467ecd841da6a79f065180bf578
48065 Author: Michal Simek <monstr@monstr.eu>
48066 Date:   Fri Jul 11 10:43:13 2008 +0200
48068     FIS: repare incorrect return value with ramdisk handling
48070     Microblaze and PowerPC use boot_get_ramdisk for loading
48071     ramdisk to memory with checking return value.
48072     Return 0 means success. Return 1 means failed.
48073     Here is correspond part of code from bootm.c which check
48074     return code.
48076     ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
48077                 &rd_data_start, &rd_data_end);
48078     if (ret)
48079         goto error;
48081     Signed-off-by: Michal Simek <monstr@monstr.eu>
48083 commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
48084 Author: Michal Simek <monstr@monstr.eu>
48085 Date:   Fri Jul 11 10:10:32 2008 +0200
48087     microblaze: Remove useless ancient headers
48089     Signed-off-by: Michal Simek <monstr@monstr.eu>
48091 commit 53ea981c3124b13c137c2d10e975b7c6672266e0
48092 Author: Michal Simek <monstr@monstr.eu>
48093 Date:   Fri Jul 11 10:10:31 2008 +0200
48095     microblaze: Clean uartlite driver
48097     Redesign uartlite driver to in_be32 and out_be32 macros
48098     Fix missing header in io.h
48100     Signed-off-by: Michal Simek <monstr@monstr.eu>
48101     Acked-by: Grant Likely <grant.likely@secretlab.ca>
48103 commit dbf3dfb386a2d5d2381814e39985ab2e21894550
48104 Author: Marcel Ziswiler <marcel@ziswiler.com>
48105 Date:   Fri Jul 11 02:39:14 2008 +0200
48107     Enable passing of ATAGs required by latest Linux kernel.
48109 commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
48110 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48111 Date:   Fri Jul 11 10:24:15 2008 -0400
48113     Fix integer overflow warning in calc_divisor()
48115     which happened when rounding the serial port clock divisor
48117     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48119 commit 6b760189d77f001684e3160b355c185ca3804961
48120 Author: Marcel Ziswiler <marcel@ziswiler.com>
48121 Date:   Fri Jul 11 01:09:59 2008 +0200
48123     Fix build time warnings in function mmc_decode_csd()
48125     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
48127 commit c15947d6ce0d59925c97fdfac692476af6e262d0
48128 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48129 Date:   Thu Jul 10 10:46:33 2008 -0400
48131     ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
48133     caused by missing dcache status/enable/disable functions.
48135     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48137 commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
48138 Author: Stefan Roese <sr@denx.de>
48139 Date:   Thu Jul 10 13:53:31 2008 +0200
48141     ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
48143     This patch removes some ft_board_setup() functions from some 4xx boards.
48144     This can be done since we now have a default weak implementation for this
48145     in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
48146     implementation like canyonlands need their own version.
48148     Signed-off-by: Stefan Roese <sr@denx.de>
48150 commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
48151 Author: Wolfgang Denk <wd@denx.de>
48152 Date:   Sun Jul 13 14:58:16 2008 +0200
48154     Add last known maintainer for orphaned boards; reformat.
48156     Signed-off-by: Wolfgang Denk <wd@denx.de>
48158 commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
48159 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
48160 Date:   Thu Jul 10 13:16:04 2008 +0200
48162     Remove kharris@nexus-tech.net from MAINTAINERS
48164     Mail to kharris@nexus-tech.net bounces because the user doesn't exist
48165     anymore. You can't be a maintainer without a valid e-mail address, so
48166     move all boards that used to be maintained by Kyle Harris to the
48167     "orphaned" list.
48169     Currently, only PowerPC has a list of orphaned boards, so this patch
48170     creates one for ARM as well.
48172     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
48174 commit 17bd17071463b0cde391ac4a0863d600474b4ea1
48175 Author: Anatolij Gustschin <agust@denx.de>
48176 Date:   Thu Jul 10 01:15:10 2008 +0200
48178     at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
48180     On the at91sam9260ep development board there is an EEPROM
48181     connected to the TWI interface (PA23, PA24 Peripheral A
48182     multiplexing), so we cannot use these pins as ETX2, ETX3.
48183     This patch configures PA10, PA11 pins for ETX2, ETX3
48184     instead of PA23, PA24 pins.
48186     Signed-off-by: Anatolij Gustschin <agust@denx.de>
48187     Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
48189 commit f889265753ddf4465d9d580827bb9289bfac55d6
48190 Author: Kenneth Johansson <kenneth@southpole.se>
48191 Date:   Sat Jul 12 13:18:34 2008 -0600
48193     fix DIU for small screens
48195     The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
48196     so it was not possible to set a slow pixel clock and thus prevented
48197     display on small screens.
48199     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
48200     Acked-by: John Rigby <jrigby@freescale.com>
48202 commit b60b8573875e650e4c69be667bfc88d3ed474a7c
48203 Author: John Rigby <jrigby@freescale.com>
48204 Date:   Fri Jul 11 14:44:09 2008 -0600
48206     ADS5121 cleanup compile warnings
48208     board/ads5121/iopin.c
48209         Replace bit fields in struct iopin_t with a single
48210         field and intialize it via plain old macros.
48211         This fixes the type pun warnings and makes the code
48212         more readable.
48214     board/ads5121/ads5121.c
48215         Add include iopin.h to ads5121.c for the iopin_initialize
48216         prototype.
48218         Add an extern void ads5121_diu_init(void)
48220     Signed-off-by: John Rigby <jrigby@freescale.com>
48222 commit bde63587622c4b830a27d1ddf7265843de9e994f
48223 Author: Wolfgang Denk <wd@denx.de>
48224 Date:   Fri Jul 11 22:56:11 2008 +0200
48226     Fix some more printf() format issues.
48228     Signed-off-by: Wolfgang Denk <wd@denx.de>
48230 commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
48231 Author: Wolfgang Denk <wd@denx.de>
48232 Date:   Fri Jul 11 22:55:31 2008 +0200
48234     Fixed some out-of-tree build issues
48236     Signed-off-by: Wolfgang Denk <wd@denx.de>
48238 commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
48239 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48240 Date:   Wed Jul 9 16:20:23 2008 -0500
48242     ColdFire: Fix FB CS not setup properly for Mcf5282
48244     Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
48245     CFG_CSn_RO is defined as 0, the chipselect will not
48246     be assigned.
48248     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48250 commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
48251 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48252 Date:   Wed Jul 9 15:47:27 2008 -0500
48254     ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
48256     Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
48257     clock module in cpu/<cf arch>/cpu_init.c
48259     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48261 commit f94945b517f10e01927101679c62361e03d4e837
48262 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48263 Date:   Wed Jul 9 15:25:01 2008 -0500
48265     ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
48267     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48269 commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
48270 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48271 Date:   Wed Jul 9 15:21:44 2008 -0500
48273     Fix compile error caused by missing timer function
48275     Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
48277     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48279 commit c37ea031175b807c54e6bad9b270e9bede6c0078
48280 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48281 Date:   Wed Jul 9 15:14:25 2008 -0500
48283     Fix compile error caused by incorrect function return type
48285     Rename int mii_init(void) to void mii_init(void)
48287     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48289 commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
48290 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48291 Date:   Wed Jun 18 19:27:23 2008 -0500
48293     ColdFire: Fix power up issue for MCF5235
48295     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48297 commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
48298 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48299 Date:   Wed Jun 18 19:19:07 2008 -0500
48301     ColdFire: Fix compiling error for MCF5275
48303     The compiling error was caused by missing a closed parentheses
48304     in speed.c
48306     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48308 commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
48309 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48310 Date:   Wed Jun 18 19:14:01 2008 -0500
48312     ColdFire: Fix timer issue for MCF5272
48314     The timer was assigned to wrong timer memory mapped which
48315     caused udelay() and timer() not working properly.
48317     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48319 commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
48320 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48321 Date:   Wed Jun 18 19:12:13 2008 -0500
48323     ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
48325     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
48327 commit 8371dc2066136be21e10b7b9293e469297d77298
48328 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48329 Date:   Wed Jun 18 19:05:23 2008 -0500
48331     ColdFire: Add -got=single param for new linux v4e toolchains
48333     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
48335 commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
48336 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48337 Date:   Wed Jun 18 13:21:19 2008 -0500
48339     ColdFire: Fix code flash configuration for M547x/M548x boards
48341     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
48343 commit 6e37091afc07fdcc15590093fd066b0cb7399f85
48344 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48345 Date:   Tue Jun 24 12:12:16 2008 -0500
48347     ColdFire: Fix warning messages by passing correct data type in board.c
48349     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48351 commit 81cc32322acb1b3225ee45606ced48e2a14824dc
48352 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48353 Date:   Thu May 29 12:21:54 2008 -0500
48355     ColdFire: Fix UART baudrate formula
48357     The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
48358     can generate the wrong divisor due to integer division truncation.
48359     Round the calculated divisor value by adding 1/2 the baudrate
48360     before dividing by the baudrate.
48362     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
48363     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
48365 commit b578fb471444cbd7db1285701ba51343baaf73fb
48366 Author: Stefan Roese <sr@denx.de>
48367 Date:   Thu Jul 10 11:38:26 2008 +0200
48369     ppc4xx: Fix include sequence in 4xx_pcie.c
48371     This patch now moves common.h to the top of the inlcude list. This
48372     is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
48373     the phys_size_t/phys_addr_t are defined to the correct size in this
48374     driver.
48376     Signed-off-by: Stefan Roese <sr@denx.de>
48378 commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
48379 Author: Stefan Roese <sr@denx.de>
48380 Date:   Fri Jul 11 13:10:56 2008 +0200
48382     ppc4xx: Fix compile warning in 44x_spd_ddr2.c
48384     Signed-off-by: Stefan Roese <sr@denx.de>
48386 commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
48387 Author: Stefan Roese <sr@denx.de>
48388 Date:   Fri Jul 11 11:40:13 2008 +0200
48390     ppc4xx: Fix small korat merge problem
48392     Signed-off-by: Stefan Roese <sr@denx.de>
48394 commit 1d0554736a0a1dd59718acda660871ce56b69e18
48395 Author: Stefan Roese <sr@denx.de>
48396 Date:   Fri Jul 11 11:34:52 2008 +0200
48398     ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
48400     Signed-off-by: Stefan Roese <sr@denx.de>
48402 commit 3a82113ed5934d498f25080441a8261fc9454b15
48403 Author: Stefan Roese <sr@denx.de>
48404 Date:   Thu Jul 10 16:37:09 2008 +0200
48406     ppc4xx: Add 460SX UIC defines
48408     Only the really needed ones are added (cascading and EMAC/MAL).
48410     Signed-off-by: Stefan Roese <sr@denx.de>
48412 commit 26173fc6f60521c2a8072f652f863617fc11ba9a
48413 Author: Stefan Roese <sr@denx.de>
48414 Date:   Mon Jun 30 14:11:07 2008 +0200
48416     ppc4xx: Continue cleanup of ppc440.h
48418     This patch continues the ppc440.h cleanup by removing some of the unused
48419     defines.
48421     Signed-off-by: Stefan Roese <sr@denx.de>
48423 commit d9056b7913ed6a228d2f33671d916efedee541dd
48424 Author: Stefan Roese <sr@denx.de>
48425 Date:   Mon Jun 30 14:05:05 2008 +0200
48427     ppc4xx: Cleanup Katmai & Yucca PCIe register usage
48429     This patch cleans up the 440SPe PCIe register usage. Now only defines
48430     from the include/asm-ppc/4xx_pcie.h are used.
48432     Signed-off-by: Stefan Roese <sr@denx.de>
48434 commit 5de851403b01489b493fa83137ad990b8ce60d1c
48435 Author: Stefan Roese <sr@denx.de>
48436 Date:   Thu Jun 26 17:36:39 2008 +0200
48438     ppc4xx: Rework 440GX UIC handling
48440     This patch reworks the 440GX interrupt handling so that the common 4xx
48441     code can be used. The 440GX is an exception to all other 4xx variants
48442     by having the cascading interrupt vectors not on UIC0 but on a special
48443     UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
48444     the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
48445     handling is simpler without any 440GX special cases.
48447     Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
48449     Signed-off-by: Stefan Roese <sr@denx.de>
48451 commit d1631fe1a05b063ccaf62ea892a8887b829847d1
48452 Author: Stefan Roese <sr@denx.de>
48453 Date:   Thu Jun 26 13:40:57 2008 +0200
48455     ppc4xx: Consolidate PPC4xx UIC defines
48457     This 2nd patch now removes all UIC mask bit definition. They should be
48458     generated from the vectors by using the UIC_MASK() macro from now on.
48459     This way only the vectors need to get defined for new PPC's.
48461     Also only the really used interrupt vectors are now defined. This makes
48462     definitions for new PPC versions easier and less error prone.
48464     Another part of this patch is that the 4xx emac driver got a little
48465     cleanup, since now the usage of the interrupts is clearer.
48467     Signed-off-by: Stefan Roese <sr@denx.de>
48469 commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
48470 Author: Stefan Roese <sr@denx.de>
48471 Date:   Wed Jun 25 10:59:22 2008 +0200
48473     ppc4xx: Consolidate PPC4xx UIC defines
48475     This patch is the first step to consolidate the UIC related defines in the
48476     4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
48477     asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
48478     steps.
48480     Signed-off-by: Stefan Roese <sr@denx.de>
48482 commit 7ee2619c20ccecd57966d74d844e6329e141261c
48483 Author: Stefan Roese <sr@denx.de>
48484 Date:   Tue Jun 24 17:18:50 2008 +0200
48486     ppc4xx: Consolidate PPC4xx EBC defines
48488     This patch removes all EBC related defines from the PPC4xx headers
48489     ppc405.h and ppc440.h and introduces a new header
48491     include/asm-ppc/ppc4xx-ebc.h
48493     with all those defines.
48495     Signed-off-by: Stefan Roese <sr@denx.de>
48497 commit e321801bed5a6d896d298c00fd20046f039d5d66
48498 Author: Stefan Roese <sr@denx.de>
48499 Date:   Thu Jul 10 13:52:44 2008 +0200
48501     ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
48503     This patch removes some ft_board_setup() functions from some 4xx boards.
48504     This can be done since we now have a default weak implementation for this
48505     in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
48506     implementation like canyonlands need their own version.
48508     Signed-off-by: Stefan Roese <sr@denx.de>
48510 commit 08250eb2edbd96514d049602d9e134110ac3185f
48511 Author: Stefan Roese <sr@denx.de>
48512 Date:   Thu Jul 10 15:32:32 2008 +0200
48514     ppc4xx: Fix merge problems in 44x_spd_ddr2.c
48516     Signed-off-by: Stefan Roese <sr@denx.de>
48518 commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
48519 Author: Grant Erickson <gerickson@nuovations.com>
48520 Date:   Tue Jul 8 08:35:00 2008 -0700
48522     ppc4xx: Add MII mode support to the EMAC RGMII Bridge
48524     This patch adds support for placing the RGMII bridge on the
48525     PPC405EX(r) into MII/GMII mode and allows a board-specific
48526     configuration to specify the bridge mode at compile-time.
48528     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
48529     Signed-off-by: Stefan Roese <sr@denx.de>
48531 commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
48532 Author: Grant Erickson <gerickson@nuovations.com>
48533 Date:   Wed Jul 9 16:46:35 2008 -0700
48535     ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
48537     This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
48538     controller registers (MODT and INITPLR) used by the
48539     PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
48540     peer values used for the INITPLR MR and EMR registers,
48541     respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
48543     With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
48544     Kilauea are replaced by equivalent mnemonics to make it easier to
48545     compare and contrast other 405EX(r)-based boards (e.g. during board
48546     bring-up).
48548     Finally, unified the SDRAM controller register dump routine such that
48549     it can be used across all processor variants that utilize the IBM DDR2
48550     SDRAM controller core. It produces output of the form:
48552         PPC4xx IBM DDR2 Register Dump:
48553                 ...
48554                 SDRAM_MB0CF[40] = 0x00006701
48555                 ...
48557     which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
48558     since it is not uncommon that the DCR values in header files get mixed
48559     up and it helps to validate, at a glance, they match what is printed
48560     in the user manual.
48562     Tested on:
48563       AMCC Kilauea/Haleakala:
48564       - NFS Linux Boot: PASSED
48565       - NAND Linux Boot: PASSED
48567     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
48568     Signed-off-by: Stefan Roese <sr@denx.de>
48570 commit ad7382d828982e9c1bafc4313ef1b666f6145f58
48571 Author: Grant Erickson <gerickson@nuovations.com>
48572 Date:   Wed Jul 9 16:31:59 2008 -0700
48574     ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
48576     Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
48577     revision ID DCR based on 405EX, and add field mnemonics for bus error
48578     status and ECC error status registers.
48580     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
48581     Signed-off-by: Stefan Roese <sr@denx.de>
48583 commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
48584 Author: Grant Erickson <gerickson@nuovations.com>
48585 Date:   Wed Jul 9 16:31:36 2008 -0700
48587     ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
48589     This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
48591     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
48592     Signed-off-by: Stefan Roese <sr@denx.de>
48594 commit 5b457d00730d4aa0c6450d21a9104723e606fb98
48595 Author: Grant Erickson <gerickson@nuovations.com>
48596 Date:   Wed Jul 9 11:55:46 2008 -0700
48598     PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
48600     While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
48601     controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
48602     the 405EX(r), SDRAM_MCSTAT has a different DCR value.
48604     Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
48605     which causes SDRAM initialization to periodically fail since it can
48606     prematurely indicate SDRAM ready status.
48608     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
48609     Signed-off-by: Stefan Roese <sr@denx.de>
48611 commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
48612 Author: Feng Kan <fkan@amcc.com>
48613 Date:   Tue Jul 8 22:48:42 2008 -0700
48615     ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
48617     Add AMCC Redwood reference board that uses the latest
48618     PPC 464 CPU processor combined with a rich mix of peripheral
48619     controllers. The board will support PCIe, mutiple Gig ethernet
48620     ports, advanced hardware RAID assistance and IEEE 1588.
48622     Signed-off-by: Feng Kan <fkan@amcc.com>
48623     Signed-off-by: Stefan Roese <sr@denx.de>
48625 commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
48626 Author: Feng Kan <fkan@amcc.com>
48627 Date:   Tue Jul 8 22:48:07 2008 -0700
48629     ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
48631     Signed-off-by: Feng Kan <fkan@amcc.com>
48632     Signed-off-by: Stefan Roese <sr@denx.de>
48634 commit 7d30793685efcada183891c78fc892e6c9ba50c7
48635 Author: Feng Kan <fkan@amcc.com>
48636 Date:   Tue Jul 8 22:47:31 2008 -0700
48638     ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
48640     Signed-off-by: Feng Kan <fkan@amcc.com>
48641     Signed-off-by: Stefan Roese <sr@denx.de>
48643 commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
48644 Author: Wolfgang Denk <wd@denx.de>
48645 Date:   Fri Jul 11 01:16:00 2008 +0200
48647     Fix some more print() format errors.
48649     Signed-off-by: Wolfgang Denk <wd@denx.de>
48651 commit fdd70d1921b87287d9a99d1be99bc35226c2b412
48652 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48653 Date:   Thu Jul 10 20:57:54 2008 +0200
48655     MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
48657     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48659 commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
48660 Author: Sergey Lapin <slapin@ossfans.org>
48661 Date:   Thu Jun 5 11:06:29 2008 +0400
48663     DataFlash AT45DB021 support
48665     Some boards based on AT91SAM926X-EK use smaller DF chips to keep
48666     bootstrap, u-boot and its environment, using NAND or other external
48667     storage for kernel and rootfs. This patch adds support for
48668     small 1024x263 chip.
48670     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
48672 commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
48673 Author: Kim Phillips <kim.phillips@freescale.com>
48674 Date:   Thu Jul 10 14:00:15 2008 -0500
48676     silence misc printf formatting compiler warnings
48678     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48680 commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
48681 Author: Markus Klotzbücher <mk@denx.de>
48682 Date:   Thu Jul 10 14:47:09 2008 +0200
48684     USB: shutdown USB before booting
48686     This patch fixes a potentially serious issue related to USB which was
48687     discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
48688     ARM920T. Martin wrote:
48690       Turn off USB to prevent the host controller from writing to the
48691       SDRAM while Linux is booting. This could happen, because the HCCA
48692       (Host Controller Communication Area) lies within the SDRAM and the
48693       host controller writes continously to this area (as busmaster!), for
48694       example to increase the HccaFrameNumber variable, which happens
48695       every 1 ms.
48697     This is a slightly modified version of the patch in order to shutdown
48698     USB when booting on all architectures.
48700     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
48702 commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
48703 Author: Martha Marx <mmarx@silicontkx.com>
48704 Date:   Thu May 29 14:23:25 2008 -0400
48706     Configuration changes for ADS5121 Rev 3
48708     ADS5121 Rev 3 board is now the default config
48710     config targets are now
48712     ads5121_config
48713         Rev 3 board with
48714         PCI
48715         M41T62 on board RTC
48716         512MB DRAM
48718     ads5121_rev2_config
48719         Rev 2 board with
48720         No PCI
48721         256MB DRAM
48723     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
48724     Acked-by: Grant Likely <grant.likely@secretlab.ca>
48725     Acked-by: John Rigby <jrigby@freescale.com>
48727 commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
48728 Author: Martha Marx <mmarx@silicontkx.com>
48729 Date:   Thu May 29 15:37:21 2008 -0400
48731     Consolidate ADS5121 IO Pin configuration
48733     Consolidate ADS5121 IO Pin configuration to one file
48734     board/ads5121/iopin.c.
48736     Remove pin config from cpu/mpc512x/fec.c
48738     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
48739     Acked-by: Grant Likely <grant.likely@secretlab.ca>
48740     Acked-by: John Rigby <jrigby@freescale.com>
48742 commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
48743 Author: Christian Eggers <christian@p2400.wgnetz.xx>
48744 Date:   Fri Jun 27 19:46:51 2008 +0200
48746     Fix "usb part" command
48748     Only print partition for selected device if user supplied the <dev>
48749     arg with the "usb part [dev]" command.
48751     Signed-off-by: Christian Eggers <ceggers@gmx.de>
48752     Acked-by: Markus Klotzbuecher <mk@denx.de>
48754 commit cc83b27217f7380041fea386ddb6d6d9b261617d
48755 Author: Harald Welte <laforge@gnumonks.org>
48756 Date:   Mon Jul 7 00:58:05 2008 +0800
48758     fix USB devices with multiple configurations
48760     This patch fixes bugs in usbdcore*.c related to the use of devices
48761     with multiple configurations.
48763     The original code made mistakes about the meaning of configuration value and
48764     configuration index, and the resulting off-by-one errors resulted in:
48766     * SET_CONFIGURATION always selected the first configuration, no matter what
48767       wValue is being passed.
48768     * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
48769       configuration (index 0).
48771     Signed-off-by: Harald Welte <laforge@openmoko.org>
48772     Acked-by: Markus Klotzbuecher <mk@denx.de>
48774 commit 06c53beae1a726e707971c555613f09b270a2461
48775 Author: Wolfgang Denk <wd@denx.de>
48776 Date:   Thu Jul 10 13:16:09 2008 +0200
48778     Fix some more print() format errors.
48780     Signed-off-by: Wolfgang Denk <wd@denx.de>
48782 commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
48783 Author: Christian Eggers <christian@p2400.wgnetz.xx>
48784 Date:   Fri Jun 27 19:46:51 2008 +0200
48786     Fix "usb part" command
48788     Only print partition for selected device if user supplied the <dev>
48789     arg with the "usb part [dev]" command.
48791     Signed-off-by: Christian Eggers <ceggers@gmx.de>
48792     Acked-by: Markus Klotzbuecher <mk@denx.de>
48794 commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
48795 Author: Harald Welte <laforge@gnumonks.org>
48796 Date:   Mon Jul 7 00:58:05 2008 +0800
48798     fix USB devices with multiple configurations
48800     This patch fixes bugs in usbdcore*.c related to the use of devices
48801     with multiple configurations.
48803     The original code made mistakes about the meaning of configuration value and
48804     configuration index, and the resulting off-by-one errors resulted in:
48806     * SET_CONFIGURATION always selected the first configuration, no matter what
48807       wValue is being passed.
48808     * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
48809       configuration (index 0).
48811     Signed-off-by: Harald Welte <laforge@openmoko.org>
48812     Acked-by: Markus Klotzbuecher <mk@denx.de>
48814 commit e870690bdca154943ecadd5212d2d59c1b9d391b
48815 Author: Stefan Roese <sr@denx.de>
48816 Date:   Thu Jul 10 10:10:54 2008 +0200
48818     MTD/NAND: Fix printf format warning in nand code
48820     This patch fixes NAND related printf format warning. Those warnings are
48821     now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
48822     [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
48823     really helpful.
48825     Signed-off-by: Stefan Roese <sr@denx.de>
48827 commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
48828 Author: Stefan Roese <sr@denx.de>
48829 Date:   Thu Jul 10 10:00:45 2008 +0200
48831     rtc: Fix printf format warning in m41t60.c
48833     Signed-off-by: Stefan Roese <sr@denx.de>
48835 commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
48836 Author: Stefan Roese <sr@denx.de>
48837 Date:   Tue Jul 8 12:01:47 2008 +0200
48839     pci: Move PCI device configuration check into a separate weak function
48841     This patch moves the check, if a device should be skipped in PCI PNP
48842     configuration into the function pci_skip_dev(). This function is defined
48843     as weak so that it can be overwritten by a platform specific one if
48844     needed. The check if the device should get printed in the PCI summary upon
48845     bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
48846     pci_print_dev() which is also defined as weak too.
48848     Signed-off-by: Stefan Roese <sr@denx.de>
48850 commit b002144e1dc21374b1ef5281fe6b5d014af96650
48851 Author: Stefan Roese <sr@denx.de>
48852 Date:   Thu Jul 10 09:58:06 2008 +0200
48854     ppc4xx: Fix printf format warnings now visible with the updated format check
48856     This patch fixes ppc4xx related printf format warning. Those warnings are
48857     now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
48858     [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
48859     really helpful.
48861     Signed-off-by: Stefan Roese <sr@denx.de>
48863 commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
48864 Author: Stefan Roese <sr@denx.de>
48865 Date:   Wed Jul 9 17:33:57 2008 +0200
48867     ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
48869     Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
48870     To support such configurations, we "only" map the first 2GB via the TLB's. We
48871     need some free virtual address space for the remaining peripherals like, SoC
48872     devices, FLASH etc.
48874     Note that ECC is currently not supported on configurations with more than 2GB
48875     SDRAM. This is because we only map the first 2GB on such systems, and therefore
48876     the ECC parity byte of the remaining area can't be written.
48878     Signed-off-by: Stefan Roese <sr@denx.de>
48880 commit cf1c2ed91df26903b956948f37f82de9e1158a89
48881 Author: Larry Johnson <lrj@acm.org>
48882 Date:   Sat Jun 14 17:02:49 2008 -0400
48884     ppc4xx: Remove implementation of testdram() from Korat board support
48886     Signed-off-by: Larry Johnson <lrj@acm.org>
48887     Signed-off-by: Stefan Roese <sr@denx.de>
48889 commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
48890 Author: Larry Johnson <lrj@acm.org>
48891 Date:   Sat Jun 14 16:53:02 2008 -0400
48893     ppc4xx: Update and add FDT to Korat board support
48895     Signed-off-by: Larry Johnson <lrj@acm.org>
48896     Signed-off-by: Stefan Roese <sr@denx.de>
48898 commit 4188f0491886b3b486164e819c0a83fdb97efd7d
48899 Author: Wolfgang Denk <wd@denx.de>
48900 Date:   Thu Jul 10 01:13:30 2008 +0200
48902     Minor coding style cleanup; update CHANGELOG
48904     Signed-off-by: Wolfgang Denk <wd@denx.de>
48906 commit 8915f1189c1d29d8be7f4de325702d90a8988219
48907 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
48908 Date:   Wed Jul 9 17:50:45 2008 -0400
48910     e1000: add support for 82545GM 64bit PCI-X copper variant
48912     This PCI-X e1000 variant works by just adding in the correct
48913     PCI IDs in the appropriate places.
48915     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
48917 commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
48918 Author: Daniel Hellstrom <daniel@gaisler.com>
48919 Date:   Wed Jul 9 12:34:11 2008 +0000
48921     SPARC: Build error fix
48923     (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
48925     This patch makes SPARC targets build again. It is caused by
48926     phys_addr_t and phys_size_t being defined in the wrong header
48927     file. include/lmb.h need those typedefs to build.
48929     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
48931 commit 11ccc33fa21acce108f6b4a6936e3271af904c64
48932 Author: Marcel Ziswiler <marcel@ziswiler.com>
48933 Date:   Wed Jul 9 08:17:15 2008 +0200
48935     Many spelling fixes in README.
48937     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
48939 commit dbab0691d2533560f7e91b92ae844046a9ad1df3
48940 Author: Marcel Ziswiler <marcel@ziswiler.com>
48941 Date:   Wed Jul 9 08:17:06 2008 +0200
48943     Minor spelling fix in comment.
48945     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
48947 commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
48948 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48949 Date:   Tue Jul 8 14:54:58 2008 -0400
48951     Round the serial port clock divisor value returned by calc_divisor()
48953     Round the serial port clock divisor value returned by
48954     calc_divisor().
48956     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48957     Signed-off-by: John Roberts <john.roberts@pwav.com>
48959 commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
48960 Author: Scott Wood <scottwood@freescale.com>
48961 Date:   Wed Jul 9 17:47:52 2008 -0500
48963     NAND: ifdef-protect most of nand.h when using legacy NAND.
48965     Some macros such as NAND_CTL_SETALE conflict between current and legacy
48966     NAND, being defined by the subsystem in the former case and the board
48967     config file in the latter.
48969     Signed-off-by: Scott Wood <scottwood@freescale.com>
48971 commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
48972 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48973 Date:   Tue Jul 8 11:02:05 2008 -0400
48975     ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
48977     ARM: Fix for incorrect version of patch applied when
48978     adding support for the Lyrtech SFF-SDR board.
48980     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
48981     Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
48983 commit 47042b363ee5022b8180c65d3f4558e7972c79cd
48984 Author: Kyungmin Park <kmpark@infradead.org>
48985 Date:   Tue Jul 8 09:08:40 2008 +0900
48987     Remove useless print message at apollon
48989     Remove useless print message at apollon
48991     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
48993 commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
48994 Author: Andy Fleming <afleming@freescale.com>
48995 Date:   Mon Jul 7 14:24:39 2008 -0500
48997     Fix LMB type issues
48999     The LMB code now uses phys_addr_t and phys_size_t.  Also, there were a couple
49000     of casting problems in the bootm code that called the LMB functions.
49002     Signed-off-by: Andy Fleming <afleming@freescale.com>
49004 commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
49005 Author: Kumar Gala <galak@kernel.crashing.org>
49006 Date:   Mon Jul 7 09:39:06 2008 -0500
49008     Fix compiler warnings
49010     gcc-4.3.x generates the following:
49012     bootm.c: In function 'do_bootm_linux':
49013     bootm.c:208: warning: cast from pointer to integer of different size
49014     bootm.c:215: warning: cast from pointer to integer of different size
49016     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49018 commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
49019 Author: Harald Welte <laforge@gnumonks.org>
49020 Date:   Mon Jul 7 15:40:39 2008 +0800
49022     Remove code duplication for setting the default environment
49024     common/env_common.c (default_env): new function that resets the environment to
49025                     the default value
49026     common/env_common.c (env_relocate): use default_env instead of own copy
49027     common/env_nand.c (env_relocate_spec): use default_env instead of own copy
49028     include/environment.h: added default_env prototype
49030     Signed-off-by: Werner Almesberger <werner@openmoko.org>
49031     Signed-off-by: Harald Welte <laforge@openmoko.org>
49033 commit 99c2b434d37863df5dda5207a53760c6506fc2be
49034 Author: Marcel Ziswiler <marcel@ziswiler.com>
49035 Date:   Sun Jun 22 16:13:46 2008 +0200
49037     NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
49039     The writeenv() and readenv() calls introduced by the recently added bad block
49040     management for environment variables were missing casts therefore producing
49041     compile time warnings.
49042     While at it fixing some typo in a comment and indentation.
49044     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
49045     Signed-off-by: Scott Wood <scottwood@freescale.com>
49047 commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
49048 Author: Scott Wood <scottwood@freescale.com>
49049 Date:   Fri Jun 20 12:38:57 2008 -0500
49051     NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
49053     This is particularly problematic now that non-NAND-specific code is
49054     including <nand.h>, and thus all debugging code is being compiled
49055     regardless of whether it was requested, as reported by Scott McNutt
49056     <smcnutt@psyent.com>.
49058     Signed-off-by: Scott Wood <scottwood@freescale.com>
49060 commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
49061 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49062 Date:   Thu Jun 12 19:27:58 2008 +0200
49064     mmc: Move atmel_mci driver into drivers/mmc
49066     This makes it easier to use the driver on other platforms.
49068     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49069     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49071 commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
49072 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49073 Date:   Thu Jun 12 19:27:57 2008 +0200
49075     avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
49077     After we move the atmel_mci driver into drivers/mmc, we can't select
49078     it with CONFIG_MMC anymore. Introduce a new symbol specifically for
49079     this driver so that there's no ambiguity.
49081     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49082     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49084 commit 5ce13051a48c62bda9723df3b4778c492fb47f36
49085 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49086 Date:   Thu Jun 12 19:27:56 2008 +0200
49088     Create drivers/mmc subdirectory
49090     In order to consolidate more of the various MMC drivers around the
49091     tree, we must first have a common place to put them.
49093     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49094     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49096 commit b502611b51f02718c2d1117d4981dabceb5af6de
49097 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
49098 Date:   Sun Jul 6 12:30:09 2008 +0200
49100     Change env_get_char from a global function ptr to a function
49102     This avoids an early global data reference.
49104     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
49106 commit 27269417ade432189b234d9fbac98b54e37b978c
49107 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
49108 Date:   Sun Jul 6 13:57:58 2008 +0400
49110     Some copy-n-paste fixes in printf usage
49112     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
49114 commit 0e6989b9faf1588e8723535539e88a0df3c71356
49115 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
49116 Date:   Sun Jul 6 13:57:00 2008 +0400
49118     FDT memory and pci node fixes for MPC8260ADS
49120     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
49122 commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
49123 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
49124 Date:   Mon Jul 7 06:41:14 2008 -0700
49126     Fix printf errors.
49128     The compiler will help find mismatches between printf formats and
49129     arguments if you let it.  This patch adds the necessary attributes to
49130     declarations in include/common.h, then begins to correct the resulting
49131     compiler warnings.  Some of these were bugs, e.g., "$d" instead of
49132     "%d" and incorrect arguments.  Others were just annoying, like
49133     int-long mismatches on a system where both are 32 bits.  It's worth
49134     fixing the annoying errors to catch the real ones.
49136     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
49138 commit 417faf285b2527acb2de24c5cd3e2621d385408c
49139 Author: Becky Bruce <becky.bruce@freescale.com>
49140 Date:   Wed Jul 9 11:09:41 2008 -0500
49142     Allow print_size to print in GB
49144     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
49146 commit e7c374529c87525c9aa463e0557c287887ae4e9e
49147 Author: Jason McMullan <mcmullan@netapp.com>
49148 Date:   Sun Jun 8 23:56:00 2008 -0400
49150     mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
49152     Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
49153     they are set in the U-Boot environment.
49155     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
49156     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
49158 commit 0192d7d56e9320819dea262f49789ae18fdd2c72
49159 Author: Stefan Roese <sr@denx.de>
49160 Date:   Tue Jul 8 12:57:14 2008 +0200
49162     jedec_flash: Fix AM29DL800BB device ID
49164     As pointed out by Jerry Hicks, this patch corrects the device ID of
49165     the Spansion AM29DL800BB NOR device. Verified against latest Spansion
49166     datasheet (rev C4 from Dezember 2006).
49168     Signed-off-by: Stefan Roese <sr@denx.de>
49170 commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
49171 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49172 Date:   Mon Jul 7 11:22:37 2008 +0900
49174     sh: Fix compile error sh7763rdp board
49176     Disable SH ether driver.
49178     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49180 commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
49181 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49182 Date:   Tue Jul 8 12:03:24 2008 +0900
49184     sh: Fix SH-boards compile error
49186     By Cleanup out-or-tree building for some boards (.depend)
49187     (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
49188     because filse ware changed, some SH-boards have compile error.
49189     I revised this problem.
49191     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49193 commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
49194 Author: Jason Jin <Jason.jin@freescale.com>
49195 Date:   Tue May 13 11:50:36 2008 +0800
49197     Feed the watchdog in u-boot for 8610 board.
49199     The watchdog on 8610 board is enabled by setting sw[6]
49200     to on. Once enabled, the watchdog can not be disabled
49201     by software. So feed the dog in u-boot is necessary for
49202     normal operation.
49204     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
49206 commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
49207 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
49208 Date:   Wed Jun 18 12:10:33 2008 -0400
49210     Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
49212     Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
49214     Remove duplicate code in a if/else block in
49215     cpu/arm926ejs/davinci/lxt972.c.
49216     Fixed style issues.
49218     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
49219     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49221 commit fec61431a003f5778bafa2624073a571af8bec9f
49222 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
49223 Date:   Wed Jun 18 12:10:31 2008 -0400
49225     Remove duplicate definitions in include/lxt971a.h.
49227     Remove duplicate definitions in include/lxt971a.h.
49229     Remove duplicate registers and bits definitions in
49230     include/lxt971a.h for standard MII registers, and
49231     use values in include/miiphy.h instead.
49233     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
49234     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49236 commit 9751ee0990f467941da0b095a4e995f863672d7a
49237 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49238 Date:   Wed Jun 11 21:05:00 2008 +0900
49240     net: sh: Renesas SH7763 Ethernet device support
49242     Renesas SH7763 has 2 channel Ethernet device.
49243     This is 10/100/1000 Base support.
49244     But this patch check 10/100 Base only.
49246     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49247     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49249 commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
49250 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49251 Date:   Tue Jun 17 16:28:05 2008 +0900
49253     sh: Update Renesas R2DPlus board
49255     New NOR Flash board support and remove old type flash board config.
49256     And Remove network setting from config file.
49258     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49259     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49261 commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
49262 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49263 Date:   Tue Jun 17 16:28:01 2008 +0900
49265     sh: Update Renesas R7780MP board
49267     New NOR Flash board support and remove network setting from config file.
49269     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49270     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49272 commit c001cd604e9f133743effbddb1c215b48e761c5a
49273 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49274 Date:   Tue Jun 17 16:27:56 2008 +0900
49276     sh: Update Renesas Migo-R board
49278     Remove network setting from config file.
49280     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49281     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49283 commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
49284 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49285 Date:   Tue Jun 17 16:27:52 2008 +0900
49287     sh: Update Hitachi MS7722SE board
49289     Remove network setting from config file.
49291     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49292     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49294 commit 26209e48e8791670c93108029a5c31a30016c6df
49295 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49296 Date:   Tue Jun 17 16:27:48 2008 +0900
49298     sh: Cleanup source code of SH7763RDP
49300     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49301     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49303 commit 5cd5b2c96ef0025762931349d350287aec03ab47
49304 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49305 Date:   Tue Jun 17 16:27:44 2008 +0900
49307     sh: Cleanup source code of R2DPlus
49309     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49310     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49312 commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
49313 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49314 Date:   Tue Jun 17 16:27:41 2008 +0900
49316     sh: Cleanup source code of R7780MP
49318     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49319     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49321 commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
49322 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49323 Date:   Tue Jun 17 16:27:38 2008 +0900
49325     sh: Cleanup source code of MS7722SE
49327     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49328     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49330 commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
49331 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49332 Date:   Tue Jun 17 16:27:34 2008 +0900
49334     sh: Cleanup source code of MS7720SE
49336     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49337     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49339 commit 3ab4827cbe409488ebea1a2ee5094783f2672214
49340 Author: Wolfgang Denk <wd@denx.de>
49341 Date:   Mon Jul 7 00:45:03 2008 +0200
49343     SH: fix out of tree building
49345     Signed-off-by: Wolfgang Denk <wd@denx.de>
49347 commit 9047bfa1e737d787be460387dd6f45737eeceb10
49348 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49349 Date:   Thu Jul 3 23:16:06 2008 +0900
49351     net: smc911x: Fix typo
49353     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
49355 commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
49356 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
49357 Date:   Wed Jul 2 18:54:08 2008 +0200
49359     update mvBL-M7 board config
49361     update mvBL-M7 config file to use UBOOT_VERSION and define
49362     CONFIG_HIGH_BATS.
49364     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
49366 commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
49367 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49368 Date:   Mon Jun 30 17:45:01 2008 +0900
49370     net: fix compile problem in smc911x driver.
49372     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49373     Acked-by: Ben Warren <biggerbadderben@gmail.com>
49375 commit 9fea65a6c469b1b474b27446feb58738baba2d31
49376 Author: Michal Simek <monstr@monstr.eu>
49377 Date:   Tue Jun 24 09:54:09 2008 +0200
49379     ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
49381     This change helps with better handling with others
49382     Xilinx based platform.
49384     Signed-off-by: Michal Simek <monstr@monstr.eu>
49385     Acked-by: Stefan Roese <sr@denx.de>
49387 commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
49388 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49389 Date:   Tue Jun 17 13:07:11 2008 +0900
49391     net: ne2000: Move dev_addr variable from grobal to local.
49393     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49394     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49396 commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
49397 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49398 Date:   Tue Jun 17 13:07:15 2008 +0900
49400     net: ne2000: Fix compile error of NE2000
49402     If enable DEBUG, can not compile ne2000 driver.
49404     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
49405     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49407 commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
49408 Author: Ben Warren <biggerbadderben@gmail.com>
49409 Date:   Mon Jun 23 22:57:27 2008 -0700
49411     Add mechanisms for CPU and board-specific Ethernet initialization
49413     This patch is the first step in cleaning up net/eth.c, by moving Ethernet
49414     initialization to CPU or board-specific code.  Initial implementation is
49415     only on the Freescale TSEC controller, but others will be added soon.
49417     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49419 commit 7754f2be5d1835d263aad21b5a629526f3e680b0
49420 Author: Wolfgang Denk <wd@denx.de>
49421 Date:   Sun Jul 6 01:21:46 2008 +0200
49423     include/sha256.h: fix file permissions.
49425     Signed-off-by: Wolfgang Denk <wd@denx.de>
49427 commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
49428 Author: Patrice Vilchez <patrice.vilchez@atmel.com>
49429 Date:   Tue May 27 11:15:29 2008 +0200
49431     [AT91SAM9] Fix NAND FLASH timings
49433     Fix NAND FLASH timings for at91sam9x evaluation kits.
49435     New timings are based on application note
49436     "NAND Flash Support on AT91SAM9 Microcontrollers" available at
49437     http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
49439     Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
49440     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49441     Acked-by: Stelian Pop <stelian@popies.net>
49443 commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
49444 Author: Stelian Pop <stelian@popies.net>
49445 Date:   Thu May 22 00:15:40 2008 +0200
49447     Fix boot from NOR due to incorrect reset delay.
49449     AT91 RSTC registers are battery-backuped, so their values
49450     are not reset across power cycles. One of those registers,
49451     the AT91_RSTC_MR register, is being modified by U-Boot, in
49452     the ethernet initialisation routine, to generate a 500ms
49453     user reset.
49455     Unfortunately, this value is not being restored afterwards,
49456     causing subsequent resets to also last for 500ms.
49458     This long reset sequence causes problems (at least) in the
49459     boot sequence from NOR: by the time the CPU tries to load
49460     a program from the NOR flash, the latter is still in reset
49461     and not yet available.
49463     Additionaly, this patch fixes a bug in the original code which
49464     caused the reset delay to last for 2s instead of 500ms.
49466     Signed-off-by: Stelian Pop <stelian@popies.net>
49467     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49469 commit f492dd636fbbae529e17533995bc6e5813c007f6
49470 Author: Wolfgang Denk <wd@denx.de>
49471 Date:   Fri Jul 4 20:11:49 2008 +0200
49473     Update CHANGELOG
49475     Signed-off-by: Wolfgang Denk <wd@denx.de>
49477 commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
49478 Author: Wolfgang Denk <wd@denx.de>
49479 Date:   Fri Jul 4 20:07:35 2008 +0200
49481     CCM/SCM boards: fix out of tree building
49483     Signed-off-by: Wolfgang Denk <wd@denx.de>
49485 commit ab4c3a490df9a964711556d2a05b0c787db45fde
49486 Author: Wolfgang Denk <wd@denx.de>
49487 Date:   Thu Jul 3 23:22:27 2008 +0200
49489     SCM board: fix build errors.
49491     Signed-off-by: Wolfgang Denk <wd@denx.de>
49493 commit a566466f17ba0e2d2b6c250e77da678fb932470d
49494 Author: Wolfgang Denk <wd@denx.de>
49495 Date:   Thu Jul 3 23:06:36 2008 +0200
49497     IAD210 board: fix ``"ALIGN" redefined'' warning.
49499     Signed-off-by: Wolfgang Denk <wd@denx.de>
49501 commit ad756314797c16fa5dca23e115aab881011f164f
49502 Author: Wolfgang Denk <wd@denx.de>
49503 Date:   Thu Jul 3 23:00:24 2008 +0200
49505     CCM board: fix build errors.
49507     Signed-off-by: Wolfgang Denk <wd@denx.de>
49509 commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
49510 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
49511 Date:   Wed Jul 2 18:54:08 2008 +0200
49513     update mvBL-M7 board config
49515     update mvBL-M7 config file to use UBOOT_VERSION.
49517     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
49518     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49520 commit ced209c50e80c25f13c083099b05044048d21f4f
49521 Author: Wolfgang Denk <wd@denx.de>
49522 Date:   Thu Jul 3 22:39:21 2008 +0200
49524     sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
49526     Signed-off-by: Wolfgang Denk <wd@denx.de>
49528 commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
49529 Author: Wolfgang Denk <wd@denx.de>
49530 Date:   Thu Jul 3 22:34:08 2008 +0200
49532     Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
49534     Signed-off-by: Wolfgang Denk <wd@denx.de>
49536 commit 730f298485984b011b6ee8f4acb511cb45a843dd
49537 Author: Wolfgang Denk <wd@denx.de>
49538 Date:   Thu Jul 3 22:04:17 2008 +0200
49540     lmb: fix "implicit declaration of function 'lmb_free'" warning
49542     Signed-off-by: Wolfgang Denk <wd@denx.de>
49544 commit 322ef5e28d2dc62571afc699b00add22a8e006e4
49545 Author: Wolfgang Denk <wd@denx.de>
49546 Date:   Wed Jul 2 23:53:23 2008 +0200
49548     Cleanup: remove redundant deleting on *~ files
49550     Signed-off-by: Wolfgang Denk <wd@denx.de>
49552 commit c8a3b109f07f02342d097b30908965f7261d9f15
49553 Author: Wolfgang Denk <wd@denx.de>
49554 Date:   Wed Jul 2 23:49:18 2008 +0200
49556     Cleanup out-or-tree building for some boards (.depend)
49558     Signed-off-by: Wolfgang Denk <wd@denx.de>
49560 commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
49561 Author: Wolfgang Denk <wd@denx.de>
49562 Date:   Wed Jul 2 23:38:50 2008 +0200
49564     Cleanup: fix out-of-tree building for some boards
49566     Signed-off-by: Wolfgang Denk <wd@denx.de>
49568 commit 461fa68d20861811487944d22291db5a13410e20
49569 Author: Wolfgang Denk <wd@denx.de>
49570 Date:   Wed Jul 2 23:00:14 2008 +0200
49572     Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
49574     Signed-off-by: Wolfgang Denk <wd@denx.de>
49576 commit 5981ebd32017e062b08aa6747cf591276f2db779
49577 Author: Detlev Zundel <dzu@denx.de>
49578 Date:   Fri Jun 20 22:26:24 2008 +0200
49580     fdt: Fix typo in variable name.
49582     Signed-off-by: Detlev Zundel <dzu@denx.de>
49584 commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
49585 Author: Gary Jennejohn <garyj@denx.de>
49586 Date:   Thu Jun 19 11:11:19 2008 +0200
49588     Add logos for RRvision board
49590     Signed-off-by: Gary Jennejohn <garyj@denx.de>
49592 commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
49593 Author: Esben Haabendal <EsbenHaabendal@gmail.com>
49594 Date:   Wed Jun 18 11:03:57 2008 +0200
49596     mpc8260: add fdt_fixup_ethernet support
49598     Add support for updating mac-address and local-mac-address in fdt for
49599     all MPC8260 targets.
49601     Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
49603 commit f6a69559d64498a04e1e0b087a9b920e5775f866
49604 Author: Steven A. Falco <sfalco@harris.com>
49605 Date:   Thu Jun 12 13:24:42 2008 -0400
49607     cmd_nvedit.c: clean up syntax highlighting
49609     My text-editor (vim) has a bit of trouble syntax-highlighting the
49610     cmd_nvedit.c file, because it apparently does not parse C
49611     ifdef/else/endif. The following patch does not change the behavior of
49612     the code at all, but does allow the editor to properly
49613     syntax-highlight the file.
49615     Signed-off-by: Steve Falco <sfalco@harris.com>
49617 commit 75678c807a6272ecc5541eb32898c93887f08400
49618 Author: Steven A. Falco <sfalco@harris.com>
49619 Date:   Thu Jun 12 13:22:12 2008 -0400
49621     Make setenv() return status
49623     Currently, the setenv function does not return an error code.
49624     This patch allows to test for errors.
49626     Signed-off-by: Steve Falco <sfalco@harris.com>
49628 commit 4928e97c8531283ca9b368b7c29a8a12e726562a
49629 Author: Kumar Gala <galak@kernel.crashing.org>
49630 Date:   Wed Jun 11 10:14:06 2008 -0500
49632     PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
49634     fls64, __ilog2_u64, ffs64 are variants that work on an u64,
49635     and fls is used to implement them.
49637     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49639 commit 83002a77cbdf383015ca384eff5fa31722d8e571
49640 Author: Magnus Lilja <lilja.magnus@gmail.com>
49641 Date:   Mon Jun 9 22:58:48 2008 +0200
49643     i.MX31: Cleanup comments in lowlevel_init.S.
49645     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
49647 commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
49648 Author: Ben Warren <biggerbadderben@gmail.com>
49649 Date:   Sun Jun 8 23:28:33 2008 -0700
49651     Move conditional compilation of MPC8XXX SPI driver to Makefile
49653     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49655 commit d92ea21bafb674ee2bf27447970b047845e7b0a2
49656 Author: Juergen Kilb <J.Kilb@gmx.de>
49657 Date:   Sun Jun 8 17:59:53 2008 +0200
49659     i.MX31: fixed CTRL-C detection
49661     The Register URXD contains status information in bits [15..8].
49662     With status bit 15 set, CTRL-C was reported as 0x8003 instead
49663     of 0x03. Therefore CTRL-C was not detected.
49664     To solve this, bits [15..8] were masked out now.
49666     Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
49667     Acked-by: Felix Radensky <felix@embedded-sol.com>
49669 commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
49670 Author: Stefan Roese <sr@denx.de>
49671 Date:   Tue Jul 1 17:03:19 2008 +0200
49673     ppc4xx: Fix 460EX/GT PCIe port initialization
49675     This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
49676     configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
49677     this out.
49679     Signed-off-by: Stefan Roese <sr@denx.de>
49681 commit b571afde0295b007a45055ee49f8822c753a5651
49682 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49683 Date:   Sat Jun 7 12:29:52 2008 +0200
49685     add SHA256 support
49687     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49688     Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
49690 commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
49691 Author: Marian Balakowicz <m8@semihalf.com>
49692 Date:   Fri Jun 6 23:07:40 2008 +0200
49694     Delay FIT format check on sector based devices
49696     Global FIT image operations like format check cannot be performed on
49697     a first sector data, defer them to the point when whole FIT image was
49698     uploaded to a system RAM.
49700     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
49701     Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
49702     NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
49704 commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
49705 Author: Dave Liu <r63238@freescale.com>
49706 Date:   Tue Jun 3 17:38:19 2008 +0800
49708     sata: wait for device updating signature to host
49710     The driver need wait for the device updating signature to host.
49711     If we don't wait for it, the driver can not detect the device(disk)
49712     when the system powers up.
49714     Signed-off-by: Dave Liu <daveliu@freescale.com>
49716 commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
49717 Author: Stefan Roese <sr@denx.de>
49718 Date:   Sat Jun 28 14:56:17 2008 +0200
49720     ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
49722     This patch implements a fix provided by AMCC so that the lockup upon
49723     simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
49724     anymore:
49726     Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
49727     (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
49728     USB 2.0 host and SATA.
49730     This errata is not officially available yet. I'll update the comment
49731     to add the errata number later.
49733     Signed-off-by: Stefan Roese <sr@denx.de>
49735 commit 8b616edb118e37d05f6401389eaee1c636b22828
49736 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
49737 Date:   Mon Jun 2 16:42:19 2008 -0400
49739     serial_pl010.c: add watchdog support
49741     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
49743 commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
49744 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
49745 Date:   Mon Jun 2 16:40:08 2008 -0400
49747     jffs2_1pass.c: add watchdog support
49749     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
49751 commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
49752 Author: Sascha Laue <sascha.laue@liebherr.com>
49753 Date:   Fri May 30 09:48:14 2008 +0200
49755     Configure DSP POST; add watchdog reset to diag command
49757     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
49759 commit f13526517859bf6b573e23ff47199e107d1009b5
49760 Author: Tor Krill <tor@excito.com>
49761 Date:   Thu May 29 10:40:17 2008 +0200
49763     Add sata sil3114 support
49765     Signed-off-by: Tor Krill <tor@excito.com>
49767 commit e093a247628228100f405b6d7f6b1bfc16141938
49768 Author: Wolfgang Denk <wd@denx.de>
49769 Date:   Sat Jun 28 23:34:37 2008 +0200
49771     Coding Style Cleanup
49773     Signed-off-by: Wolfgang Denk <wd@denx.de>
49775 commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
49776 Author: Wolfgang Denk <wd@denx.de>
49777 Date:   Sat Jun 28 23:16:01 2008 +0200
49779     Update CHANGELOG
49781     Signed-off-by: Wolfgang Denk <wd@denx.de>
49783 commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
49784 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
49785 Date:   Wed May 21 13:58:41 2008 -0400
49787     ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
49789     This patch adds support for the Lyrtech SFF-SDR board,
49790     based on the TI DaVinci architecture (ARM926EJS).
49792     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
49793     Signed-off-by: Philip Balister <philip@balister.org>
49794     Signed-off-by: Wolfgang Denk <wd@denx.de>
49796 commit 341188b9ccaa8d4462d772cc067aca8d7618633a
49797 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49798 Date:   Thu May 22 11:09:59 2008 +0200
49800     MMC: Consolidate MMC/SD command definitions
49802     This moves the MMC and SD Card command definitions from
49803     include/asm/arch/mmc.h into include/mmc.h. These definitions are
49804     given by the MMC and SD Card standards, not by any particular
49805     architecture.
49807     There's a lot more room for consolidation in the MMC drivers which
49808     I'm hoping to get done eventually, but this patch is a start.
49810     Compile-tested for all avr32 boards as well as lpc2292sodimm and
49811     lubbock. This should cover all three mmc drivers in the tree.
49813     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49815 commit fa60edfc4c952626e048c0e065f654b3c1822fa5
49816 Author: Kyungmin Park <kmpark@infradead.org>
49817 Date:   Wed May 21 14:38:08 2008 +0900
49819     Use better Ethernet timings for apollon board
49821     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
49823 commit 41c5eaa7253ed82bbae1eda5667755872c615164
49824 Author: Andy Fleming <afleming@freescale.com>
49825 Date:   Mon Jun 16 13:58:56 2008 -0500
49827     Resize device tree to allow space for board changes and the chosen node
49829     Current code requires that a compiled device tree have space added to the end to
49830     leave room for extra nodes added by board code (and the chosen node).  This
49831     requires that device tree creators anticipate how much space U-Boot will add to
49832     the tree, which is absurd.  Ideally, the code would resize and/or relocate the
49833     tree when it needed more space, but this would require a systemic change to the
49834     fdt code, which is non-trivial.  Instead, we resize the tree inside
49835     boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
49836     where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
49838     Signed-off-by: Andy Fleming <afleming@freescale.com>
49840 commit 7570a9941fc565922078679a72d246fe208d696d
49841 Author: Andy Fleming <afleming@freescale.com>
49842 Date:   Mon Jun 16 13:58:55 2008 -0500
49844     Fix an underflow bug in __lmb_alloc_base
49846     __lmb_alloc_base can underflow if it fails to find free space.  This was fixed
49847     in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc.  This patch
49848     merely updates __lmb_alloc_base to resemble the current version in Linux.
49850     Signed-off-by: Andy Fleming <afleming@freescale.com>
49852 commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
49853 Author: Andy Fleming <afleming@freescale.com>
49854 Date:   Mon Jun 16 13:58:54 2008 -0500
49856     Add lmb_free
49858     lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
49859     lmb_reserve to temporarily reserve some memory.
49861     Signed-off-by: Andy Fleming <afleming@freescale.com>
49863 commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
49864 Author: Andy Fleming <afleming@freescale.com>
49865 Date:   Mon Jun 16 13:58:53 2008 -0500
49867     Add ALIGN() macro
49869     ALIGN() returns the smallest aligned value greater than the passed
49870     in address or size.  Taken from Linux.
49872     Signed-off-by: Andy Fleming <afleming@freescale.com>
49874 commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
49875 Author: Stefan Roese <sr@denx.de>
49876 Date:   Tue Jun 24 17:15:22 2008 +0200
49878     ppc4xx: Fix compilation problems with phys_size_t
49880     This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
49881     board specific files where it has been missing.
49883     Signed-off-by: Stefan Roese <sr@denx.de>
49885 commit 28eab0d77352b84885f938759bf2612b7bf0bc44
49886 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
49887 Date:   Mon May 19 12:26:38 2008 +0200
49889     Conditionally add -fno-stack-protector to CFLAGS
49891     When compile-testing on powerpc, I get errors like this:
49893     net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
49895     This seems to be because -fstack-protector is on by default, so
49896     let's explicitly disable it on all architectures that support the
49897     option.
49899     The Ubuntu toolchain is affected by this problem, and according to
49900     Mike Frysinger, Gentoo has been running with SSP enabled for years.
49901     More and more distros are turning SSP on by default, so this problem
49902     is likely to get worse in the future.
49904     Also, powerpc just happens to be one of the arches I do
49905     compile-testing on. There may be other arches affected by this too.
49907     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49909 commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
49910 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49911 Date:   Sun May 18 19:09:52 2008 +0200
49913     pcmcia/ti_pci1410a: Move compile condition to the Makefile
49915     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49917 commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
49918 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49919 Date:   Sun May 18 19:09:51 2008 +0200
49921     pxa_pcmcia: Move compile condition to the Makefile
49923     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49925 commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
49926 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49927 Date:   Sun May 18 19:09:50 2008 +0200
49929     marabun_pcmcia: Move compile condition to the Makefile
49931     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49933 commit 6a19c46cae43c16c528eddefae3db97134f1915d
49934 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
49935 Date:   Mon Jun 23 13:25:34 2008 +0200
49937     fix non-working mvBL-M7
49939     Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
49941     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
49942     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49944 commit 846f1574ddddeda2bc227655e687308695f41cdc
49945 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
49946 Date:   Mon Jun 23 11:40:56 2008 +0200
49948     fix system config overwrite @ MPC834x and MPC8313
49950     During 83xx setup the "System I/O configuration register high" gets
49951     overwritten with user defined value if CFG_SICRH is defined.
49953     Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
49954     must keep their reset value regardless of configuration.
49956     On my board (using RGMII) those bits are set after reset - yet it's
49957     unclear where they come from.
49959     The patch keeps both bits on MPC834x and MPC8313.
49961     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
49962     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49964 commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
49965 Author: Kim Phillips <kim.phillips@freescale.com>
49966 Date:   Tue Jun 17 17:45:27 2008 -0500
49968     mpc83xx: move CPU_TYPE_ENTRY over to processor.h
49970     to avoid this:
49972     cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
49973     In file included from cpu.c:33:
49974     /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
49976     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49978 commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
49979 Author: Stefan Roese <sr@denx.de>
49980 Date:   Mon Jun 23 11:15:09 2008 +0200
49982     ppc4xx: Fix problem in gpio_config()
49984     As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
49985     left by one. So the additional shift is bogus.
49987     Signed-off-by: Stefan Roese <sr@denx.de>
49989 commit 40777812316fc252c941665c0f60c148fd79d50f
49990 Author: Detlev Zundel <dzu@denx.de>
49991 Date:   Fri Jun 20 22:24:05 2008 +0200
49993     fdt: Fix typo in variable name.
49995     Signed-off-by: Detlev Zundel <dzu@denx.de>
49997 commit 5f723a3b98c630bde33de74351f2121691fdef14
49998 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
49999 Date:   Fri Jun 20 10:41:05 2008 +0200
50001     avr32: Enable SPI flash support on ATNGW100
50003     The ATNGW100 has 8MB DataFlash on board. Give users access to it through
50004     the new SPI flash framework.
50006     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
50008 commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
50009 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
50010 Date:   Fri Jun 20 12:44:28 2008 +0200
50012     avr32: Fix SPI portmux initialization
50014     Use the new GPIO manipulation functions to set up the chip select lines,
50015     and make sure both busses use GPIO for chip select control.
50017     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
50019 commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
50020 Author: Peter Ma <pma@mediamatech.com>
50021 Date:   Sun Jun 1 22:59:24 2008 -0700
50023     avr32: Add GPIO manipulation functions
50025     Adds GPIO manipulation functions for AVR32 AP7 platform.
50027     Signed-off-by: Peter Ma <pma@mediamatech.com>
50028     [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
50029     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
50031 commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
50032 Author: Wolfgang Grandegger <wg@grandegger.com>
50033 Date:   Thu Jun 5 13:02:30 2008 +0200
50035     MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
50037     This patch is based on the following patch sent a few minutes ago:
50038     "NAND FSL UPM: driver re-write using the hwcontrol callback"
50039     It is untested, of course. Anton, could you please give it a try.
50041     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50042     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
50044 commit 96026d42fa4e646d28318c0a1438aac4b2017909
50045 Author: Anatolij Gustschin <agust@denx.de>
50046 Date:   Thu Jun 12 12:40:11 2008 +0200
50048     Fix 4xx build issue
50050     Building for 4xx doesn't work since commit 4dbdb768:
50052     In file included from 4xx_pcie.c:28:
50053     include/asm/processor.h:971: error: expected ')' before 'ver'
50054     make[1]: *** [4xx_pcie.o] Error 1
50056     This patch fixes the problem.
50058     Signed-off-by: Anatolij Gustschin <agust@denx.de>
50059     Acked-by: Stefan Roese <sr@denx.de>
50060     Acked-by: Kumar Gala <galak@kernel.crashing.org>
50062 commit a036b0443657fe0f4773786de9092251869f08ac
50063 Author: Kumar Gala <galak@kernel.crashing.org>
50064 Date:   Thu Jun 19 01:45:50 2008 -0500
50066     MPC8610HPCD: Report board id, board version and fpga version.
50068     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50070 commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
50071 Author: Kumar Gala <galak@kernel.crashing.org>
50072 Date:   Thu Jun 19 01:45:27 2008 -0500
50074     MPC8641HPCN: Report board id, board version and fpga version.
50076     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50078 commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
50079 Author: Stefan Roese <sr@denx.de>
50080 Date:   Mon Jun 16 10:40:02 2008 +0200
50082     cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
50084     This patch simplifies flash_toggle() (AMD commandset), which is used to
50085     detect if a FLASH device is still busy with erase/program operations. On
50086     800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
50087     did not detect the busy state reliably, resulting in non erased sectors
50088     etc. This patch now simplifies this function by "just" comparing the
50089     complete data-word instead of ANDing it with the command-word (0x40)
50090     before the compatison. It is done the same way in the Linux implementation
50091     chip_ready() in cfi_cmdset_0002.c.
50093     Signed-off-by: Stefan Roese <sr@denx.de>
50095 commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
50096 Author: Philip Balister <philip@balister.org>
50097 Date:   Mon Jun 16 08:58:07 2008 -0400
50099     NAND: Add missing declaration to non-redundant saveenv().
50101     Signed-off-by: Scott Wood <scottwood@freescale.com>
50103 commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
50104 Author: Wolfgang Grandegger <wg@grandegger.com>
50105 Date:   Mon Jun 2 15:09:55 2008 +0200
50107     MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
50109     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50110     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
50111     Signed-off-by: Scott Wood <scottwood@freescale.com>
50113 commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
50114 Author: Stefan Roese <sr@denx.de>
50115 Date:   Tue Jun 10 15:34:11 2008 +0200
50117     ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
50119     This patch disables the square wave output of the M41T62 RTC used on
50120     Canyonlands & Glacier. Here the explanation:
50122     The serial real-time clock part used in the design is an
50123     STMicro M41T62. This part has a full-time 32KHz square wave
50124     output that is connected to the TmrClk input to the
50125     processor. The default state for this square wave output is
50126     enabled so the output runs continuously when the board is
50127     powered normally and also from the battery. The TmrClk input
50128     to the processor goes to ground when the power is removed
50129     from the board/processor, and therefore the running square
50130     wave output is driving ground which drains the battery quickly.
50132     Signed-off-by: Stefan Roese <sr@denx.de>
50134 commit a94f22f08f280905926219e568568964cb9eeb9d
50135 Author: Andy Fleming <afleming@freescale.com>
50136 Date:   Wed Jun 11 18:10:20 2008 -0500
50138     Fix build issue with string.h and linux/string.h
50140     This commit:
50141     commit 338cc038461a6c7709c5b86fd9a240209338a1ae
50142     Author: Wolfgang Denk <wd@denx.de>
50143     Date:   Fri Jun 6 14:28:14 2008 +0200
50145         tools/mkimage: fix compiler warnings on some systems.
50147     Broke building on some systems, because the host's string.h was interfering
50148     with u-boot's linux/string.h.  It doesn't look like we need the u-boot one if
50149     we're building for the host, so now we only include when building inside
50150     u-boot.
50152     Signed-off-by: Andy Fleming <afleming@freescale.com>
50154 commit 9973e3c614721bbf169882ffc3be266a6611cd60
50155 Author: Becky Bruce <becky.bruce@freescale.com>
50156 Date:   Mon Jun 9 16:03:40 2008 -0500
50158     Change initdram() return type to phys_size_t
50160     This patch changes the return type of initdram() from long int to phys_size_t.
50161     This is required for a couple of reasons: long int limits the amount of dram
50162     to 2GB, and u-boot in general is moving over to phys_size_t to represent the
50163     size of physical memory.  phys_size_t is defined as an unsigned long on almost
50164     all current platforms.
50166     This patch *only* changes the return type of the initdram function (in
50167     include/common.h, as well as in each board's implementation of initdram).  It
50168     does not actually modify the code inside the function on any of the platforms;
50169     platforms which wish to support more than 2GB of DRAM will need to modify
50170     their initdram() function code.
50172     Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
50173     MPC8641HPCN.
50175     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
50177 commit 391fd93ab23e15ab3dd58a54f5b609024009c378
50178 Author: Becky Bruce <becky.bruce@freescale.com>
50179 Date:   Mon Jun 9 20:37:18 2008 -0500
50181     Change lmb to use phys_size_t/phys_addr_t
50183     This updates the lmb code to use phys_size_t
50184     and phys_addr_t instead of unsigned long.  Other code
50185     which interacts with this code, like getenv_bootm_size()
50186     is also updated.
50188     Booted on MPC8641HPCN, build-tested ppc, arm, mips.
50190     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
50192 commit 61b09fc2952dc636017df4e7970e3de132276ba1
50193 Author: Becky Bruce <becky.bruce@freescale.com>
50194 Date:   Mon Jun 9 20:37:17 2008 -0500
50196     Change print_size to take phys_size_t
50198     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
50200 commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
50201 Author: Becky Bruce <becky.bruce@freescale.com>
50202 Date:   Mon Jun 9 20:37:16 2008 -0500
50204     Change bd/gd memsize/ram_size to be phys_size_t.
50206     Currently, both are defined as an unsigned long, but
50207     should be phys_size_t. This should result in no real change,
50208     since phys_size_t is currently an unsigned long for all the
50209     default configs.  Also add print_lnum to cmd_bdinfo to deal
50210     with the potentially wider memsize.
50212     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
50214 commit ba04f7010958e88a8910f2a123fee53fdc72e013
50215 Author: Kumar Gala <galak@kernel.crashing.org>
50216 Date:   Tue Jun 10 16:16:02 2008 -0500
50218     FSL LAW: Add new interface to use the last free LAW
50220     LAWs have the concept of priority so its useful to be able to allocate
50221     the lowest (highest number) priority.  We will end up using this with the
50222     new DDR code.
50224     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50226 commit 859a86a25c569d3665ff413d1d923394b8a961f3
50227 Author: Kumar Gala <galak@kernel.crashing.org>
50228 Date:   Wed Jun 11 00:51:45 2008 -0500
50230     85xx/86xx: Move to dynamic mgmt of LAWs
50232     With the new LAW interface (set_next_law) we can move to letting the
50233     system allocate which LAWs are used for what purpose.  This makes life
50234     a bit easier going forward with the new DDR code.
50236     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50237     Signed-off-by: Andy Fleming <afleming@freescale.com>
50238     Acked-by: Jon Loeliger <jdl@freescale.com>
50239     Acked-by: Becky Bruce <becky.bruce@freescale.com>
50241 commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
50242 Author: Kumar Gala <galak@kernel.crashing.org>
50243 Date:   Wed Jun 11 00:44:10 2008 -0500
50245     FSL LAW: Keep track of LAW allocations
50247     Make it so we keep track of which LAWs have allocated and provide
50248     a function (set_next_law) which can allocate a LAW for us if one is
50249     free.
50251     In the future we will move to doing more "dynamic" LAW allocation
50252     since the majority of users dont really care about what LAW number
50253     they are at.
50255     Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
50257     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50258     Signed-off-by: Andy Fleming <afleming@freescale.com>
50260 commit ddde74a159caa6e18b481fec01d40b885aebb566
50261 Author: Kumar Gala <galak@kernel.crashing.org>
50262 Date:   Mon Jun 9 22:31:57 2008 -0500
50264     85xx: remove dummy board_early_init_f
50266     A number of board ports have empty version of board_early_init_f
50267     for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
50269     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50271 commit 81e56e9af0d43712db8efb843606a8d62eab454f
50272 Author: Kumar Gala <galak@kernel.crashing.org>
50273 Date:   Mon Jun 9 18:55:38 2008 -0500
50275     MPC8544DS: Update config.h
50277     * Enable flash progress
50278     * remove CLEAR_LAW0 since we dont really use it
50280     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50282 commit 978e81604c1b28526ed580df0fbe64eb8384e94f
50283 Author: Kumar Gala <galak@kernel.crashing.org>
50284 Date:   Mon Jun 9 13:37:24 2008 -0500
50286     85xx: Remove unused and unconfigured memory test code.
50288     Remove unused and unconfigured DDR test code from FSL 85xx boards.
50289     Besides, other common code exists.
50291     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50293 commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
50294 Author: Sergei Poselenov <sposelenov@emcraft.com>
50295 Date:   Fri Jun 6 15:42:45 2008 +0200
50297     Socrates: Added FPGA base address update in FDT.
50299     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
50301 commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
50302 Author: Sergei Poselenov <sposelenov@emcraft.com>
50303 Date:   Fri Jun 6 15:42:44 2008 +0200
50305     Socrates: NAND support added. Changed the U-Boot base address and
50307     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
50309 commit 248ae5cfc8bf69074d1da099dc495d8e06070547
50310 Author: Sergei Poselenov <sposelenov@emcraft.com>
50311 Date:   Fri Jun 6 15:42:43 2008 +0200
50313     NAND: Added support for 128-bit OOB, adapted
50315     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
50317 commit 31ca0208612f2eb57690110d7c2815953650e47b
50318 Author: Sergei Poselenov <sposelenov@emcraft.com>
50319 Date:   Fri Jun 6 15:42:42 2008 +0200
50321     Socrates: added missed file with UPMA configuration data.
50323     Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
50325 commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
50326 Author: Sergei Poselenov <sposelenov@emcraft.com>
50327 Date:   Fri Jun 6 15:42:41 2008 +0200
50329     Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
50331     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
50333 commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
50334 Author: Sergei Poselenov <sposelenov@emcraft.com>
50335 Date:   Fri Jun 6 15:42:40 2008 +0200
50337     Added the upmconfig() function for 85xx.
50339     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
50340     Signed-off-by: Andy Fleming <afleming@freescale.com>
50342 commit d39e68514ff943930ee692cff3fde03532eb7fec
50343 Author: Sergei Poselenov <sposelenov@emcraft.com>
50344 Date:   Fri Jun 6 15:42:39 2008 +0200
50346     Socrates: config file cleanup.
50348     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
50350 commit e8cc3f04b124f757af4528206e60d8eb715ae083
50351 Author: Wolfgang Grandegger <wg@grandegger.com>
50352 Date:   Thu Jun 5 13:12:10 2008 +0200
50354     TQM85xx: Change memory map to support Flash memory > 128 MiB
50356     Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
50357     memory. The current memory map only supports up to 128 MiB Flash.
50358     This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
50359     set, up to 1 GiB flash is supported. To achieve this, the memory
50360     map has to be adjusted in great parts (for example the CCSRBAR is
50361     moved from 0xE0000000 to 0xA0000000).
50363     If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
50364     memory map also has to be considered in the kernel (changed
50365     CCSRBAR address, changed PCI IO base address, ...). Please use
50366     an appropriate Flat Device Tree blob (tqm8548.dtb).
50368     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50369     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50371 commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
50372 Author: Wolfgang Grandegger <wg@grandegger.com>
50373 Date:   Thu Jun 5 13:12:09 2008 +0200
50375     TQM85xx: NAND support via local bus UPMB
50377     This patch adds support for NAND FLASH on the TQM8548. It is disabled by
50378     default and can be enabled for the TQM8548 modules. It is now based on
50379     the re-written FSL NAND UPM driver. A patch has been posted earlier today
50380     with the subject:
50382     "NAND FSL UPM: driver re-write using the hwcontrol callback"
50384     Note that the R/B pin is not supported by that module requiring to use
50385     the specified maximum delay time.
50387     Note: With NAND support enabled the size of the U-Boot image exceeds
50388     256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
50389     doubling the image size :-(.
50391     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
50392     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50394 commit b9e8078bb3f3c48111a7081e27279938c3a445e1
50395 Author: Wolfgang Grandegger <wg@grandegger.com>
50396 Date:   Thu Jun 5 13:12:08 2008 +0200
50398     TQM8548: PCI express support
50400     This patch adds support for PCI express cards. The board support
50401     now uses common FSL PCI init code, for both, PCI and PCIe on all
50402     TQM85xx modules.
50404     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
50405     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50407 commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
50408 Author: Wolfgang Grandegger <wg@grandegger.com>
50409 Date:   Thu Jun 5 13:12:07 2008 +0200
50411     TQM8548: Basic support for the TQM8548 modules
50413     This patch adds basic support for the TQM8548 module from TQ-Components
50414     (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
50415     eTSEC 3 and 4
50417     Furthermore Flash buffer write has been enabled to speed up output to
50418     the Flash by approx. a factor of 10.
50420     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
50421     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50423 commit 25991353204c78b094c3c1fec90182dcd607ab8f
50424 Author: Wolfgang Grandegger <wg@grandegger.com>
50425 Date:   Thu Jun 5 13:12:06 2008 +0200
50427     TQM85xx: Support for Flat Device Tree
50429     This patch adds support for Linux kernels using the Flat Device Tree.
50430     It also re-defines the default environment settings for booting Linux
50431     with the FDT blob.
50433     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50435 commit d9ee843d54c54776e1fdb86336ce554906a87331
50436 Author: Wolfgang Grandegger <wg@grandegger.com>
50437 Date:   Thu Jun 5 13:12:05 2008 +0200
50439     TQM85xx: Support for Intel 82527 compatible CAN controller
50441     This patch adds initialization of the UPMC RAM to support up to two
50442     Intel 82527 compatible CAN controller on the TQM85xx modules.
50444     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
50445     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50447 commit 518d5cfe72916323c746af1647764459914f555f
50448 Author: Wolfgang Grandegger <wg@grandegger.com>
50449 Date:   Thu Jun 5 13:12:04 2008 +0200
50451     TQM85xx: Bugfix in the SDRAM initialisation
50453     The CS0_BNDS register is now set according to the detected
50454     memory size.
50456     Signed-off-by Martin Krause <martin.krause@tqs.de>
50458 commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
50459 Author: Wolfgang Grandegger <wg@grandegger.com>
50460 Date:   Thu Jun 5 13:12:03 2008 +0200
50462     TQM85xx: Fix chip select configuration for second FLASH bank
50464     This patch fixes the re-calculation of the automatic chip select
50465     configuration for boards with two populated FLASH banks.
50467     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50469 commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
50470 Author: Wolfgang Grandegger <wg@grandegger.com>
50471 Date:   Thu Jun 5 13:12:02 2008 +0200
50473     TQM85xx: Support for Spansion 'N' type flashes added
50475     The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
50476     than the formerly used 'M' types (S29GLxxxM series), so the flash layout
50477     needs to be changed -> new start address of the environment. The macro
50478     definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
50479     defined for boards with 'N' type flashes.
50481     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50482     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50484 commit 5d5bd838f76eade22c0ea40a500389f924d0da36
50485 Author: Wolfgang Grandegger <wg@grandegger.com>
50486 Date:   Thu Jun 5 13:12:01 2008 +0200
50488     TQM85xx: Fix CPM port pin configuration
50490     Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
50491     board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
50492     as serial interface anyway. Worse, on some board variants configuring the
50493     pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
50495     Signed-off-by: Martin Krause <martin.krause@tqs.de>
50497 commit b99ba1679e8cd51b023e67098c89e606e47137d2
50498 Author: Wolfgang Grandegger <wg@grandegger.com>
50499 Date:   Thu Jun 5 13:12:00 2008 +0200
50501     TQM85xx: Various coding style fixes
50503     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50505 commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
50506 Author: Gerald Van Baren <vanbaren@cideas.com>
50507 Date:   Tue Jun 10 22:15:58 2008 -0400
50509     libfdt: Move the working_fdt pointer to cmd_fdt.c
50511     The working_fdt pointer was declared in common/fdt_support.c but was
50512     not used there.  Move it to common/cmd_fdt.c where it is used (it is
50513     also used in lib_ppc/bootm.c).
50515     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50517 commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
50518 Author: Kim Phillips <kim.phillips@freescale.com>
50519 Date:   Tue Jun 10 11:06:17 2008 -0500
50521     fdt: unshadow global working fdt variable
50523     differentiate with local variables of the same name by renaming the
50524     global 'fdt' variable 'working_fdt'.
50526     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50528 commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
50529 Author: Andy Fleming <afleming@freescale.com>
50530 Date:   Tue Jun 10 18:49:34 2008 -0500
50532     socrates: Fix PCI clk fix patch
50534     The submitted patch seems to have been more up-to-date, but an older patch was
50535     already in the repository.  This patch encompasses the differences
50537     Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
50539     Signed-off-by: Andy Fleming <afleming@freescale.com>
50541 commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
50542 Author: Wolfgang Grandegger <wg@grandegger.com>
50543 Date:   Thu Jun 5 13:02:29 2008 +0200
50545     NAND FSL UPM: driver re-write using the hwcontrol callback
50547     This is a re-write of the NAND FSL UPM driver using the more universal
50548     hwcontrol callback (instead of the cmdfunc callback). Here is a brief
50549     list of furher modifications:
50551     - For the time being, the UPM setup writing the UPM array has been
50552       removed from the driver and must now be done by the board specific
50553       code.
50555     - The bus width definition in "struct fsl_upm_nand" is now in bits to
50556       comply with the corresponding Linux driver and 8, 16 and 32 bit
50557       accesses are supported.
50559     - chip->dev_read is only set if fun->dev_ready != NULL, which is
50560       required for boards not connecting the R/B pin.
50562     - A few issue have been fixed with MxMR bit manipulation like in the
50563       corresponding Linux driver.
50565     Note: I think the "io_addr" field of "struct fsl_upm" could be removed
50566           as well, because the address is already determined by
50567           "nand->IO_ADDR_[RW]", but I'm not 100% sure.
50569     This patch has been tested on a TQM8548 modules with the NAND chip
50570     Micron MT29F8G08FABWP.
50572     This patch is based on the following patches posted to this list a few
50573     minutes ago:
50575       PPC: add accessor macros to clear and set bits in one shot
50576       83xx/85xx/86xx: add more MxMR local bus definitions
50578     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50579     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
50581 commit 6beecfbb542992eede5831240cd58678274683a9
50582 Author: Wolfgang Grandegger <wg@grandegger.com>
50583 Date:   Thu Jun 5 13:11:59 2008 +0200
50585     MPC85xx: Beautify boot output of L2 cache configuration
50587     The boot output is now aligned poperly with other boot output
50588     lines, e.g.:
50590       FLASH: 128 MB
50591       L2:    512 KB enabled
50593     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50595 commit 398415114f0a705163a14543e9fef03f734b1ffa
50596 Author: Wolfgang Grandegger <wg@grandegger.com>
50597 Date:   Wed Jun 4 12:45:22 2008 +0200
50599     PPC: add accessor macros to clear and set bits in one shot
50601     PPC: add accessor macros to clear and set bits in one shot
50603     This patch adds macros from linux/include/asm-powerpc/io.h to clear and
50604     set bits in one shot using the in_be32, out_be32, etc. accessor functions.
50605     They are very handy to manipulate bits it I/O registers.
50607     This patch is required for my forthcoming FSL NAND UPM driver re-write and
50608     the support for the TQM8548 module.
50610     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50612 commit 4677988c7edc070c3786d3db7994abeca3ab82a0
50613 Author: Wolfgang Grandegger <wg@grandegger.com>
50614 Date:   Wed Jun 4 13:52:17 2008 +0200
50616     TQM: move TQM boards to board/tqc
50618     Move all TQM board directories to the vendor specific directory "tqc"
50619     for modules from TQ-Components GmbH (http://www.tqc.de).
50621     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50623 commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
50624 Author: Wolfgang Grandegger <wg@grandegger.com>
50625 Date:   Mon Jun 2 12:09:30 2008 +0200
50627     83xx/85xx/86xx: add more MxMR local bus definitions
50629     83xx/85xx/86xx: add more MxMR local bus definitions
50631     This patch adds more macro definitions for the UPM Machine Mode Registers
50632     They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
50633     common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
50634     required for my forthcoming FSL NAND UPM driver re-write and the support
50635     for the TQM8548 module.
50637     This patch is based on the following two patches from Anton Vorontsov:
50639     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
50640     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
50642     I leave coding style violation fixes, code beautification and name
50643     corrections to somebody else ;-(.
50645     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
50647 commit c8c5fc266e4499e283c293ccb972863156aa4134
50648 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
50649 Date:   Thu May 29 18:14:56 2008 +0400
50651     83xx/85xx: further localbus cleanups
50653     Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
50654     from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
50656     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
50658 commit 42dbd667c88d496882d53e22656e89b654205492
50659 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
50660 Date:   Wed May 28 18:20:15 2008 +0400
50662     83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
50664     This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
50665     use it on MPC85xx and MPC86xx processors.
50667     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
50669 commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
50670 Author: Kumar Gala <galak@kernel.crashing.org>
50671 Date:   Thu May 29 11:22:06 2008 -0500
50673     85xx: Add setting of cache props in the device tree.
50675     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50677 commit 4dbdb7681e243431530df0725627192a0c4aefda
50678 Author: Kumar Gala <galak@kernel.crashing.org>
50679 Date:   Tue Jun 10 16:53:46 2008 -0500
50681     85xx: expose cpu identification
50683     The current cpu identification code is used just to return the name
50684     of the processor at boot.  There are some other locations that the name
50685     is useful (device tree setup).  Expose the functionality to other bits
50686     of code.
50688     Also, drop the 'E' suffix and add it on by looking at the SVR version
50689     when we print this out.  This is mainly to allow the most flexible use
50690     of the name.  The device tree code tends to not care about the 'E' suffix.
50692     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50694 commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
50695 Author: Kim Phillips <kim.phillips@freescale.com>
50696 Date:   Tue Jun 10 13:25:24 2008 -0500
50698     mpc83xx: MVBLM7: minor build fixups
50700     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50702 commit a1293e549b56da135ef32ffca5b9d35a16aa6802
50703 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
50704 Date:   Tue Jun 10 09:14:05 2008 +0200
50706     add MPC8343 based board mvBlueLYNX-M7 (board+make files)
50708     Add MPC8343 based board mvBlueLYNX-M7.
50709     It's a single board stereo camera system.
50710     Please read doc/README.mvblm7 for details.
50712     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
50713     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50715 commit c005b93925ba49f07da2aa748527996d927e172f
50716 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
50717 Date:   Tue Jun 10 09:13:16 2008 +0200
50719     add MPC8343 based board mvBlueLYNX-M7 (doc+config)
50721     Add MPC8343 based board mvBlueLYNX-M7.
50722     It's a single board stereo camera system.
50723     Please read doc/README.mvblm7 for details.
50725     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
50726     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50728 commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
50729 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
50730 Date:   Thu May 29 18:14:56 2008 +0400
50732     83xx/85xx: further localbus cleanups
50734     move the BRx_* and ORx_* left behind in mpc85xx.h
50736     The same is needed for mpc8xx.h and mpc8260.h (defines are almost
50737     the same, just few differences which needs some attention though).
50739     But the bad news for mpc8xx and mpc8260 is that there are a lot of users
50740     of these defines. So this cleanup I'll leave for the "better times".
50742     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
50743     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50745 commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
50746 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
50747 Date:   Wed May 28 18:20:15 2008 +0400
50749     83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
50751     This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
50752     use it on MPC85xx and MPC86xx processors.
50754     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
50755     Acked-by: Andy Fleming <afleming@freescale.com>
50756     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50758 commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
50759 Author: Tor Krill <tor@excito.com>
50760 Date:   Mon Jun 2 15:09:30 2008 +0200
50762     Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
50764     Signed-off-by: Tor Krill <tor@excito.com>
50765     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50767 commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
50768 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50769 Date:   Mon Jun 9 23:37:44 2008 +0900
50771     net: Conditional COBJS inclusion of network drivers
50773     Replace COBJS-y with appropriate driver config names.
50775     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50776     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50778 commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
50779 Author: Gerald Van Baren <vanbaren@cideas.com>
50780 Date:   Mon Jun 9 21:02:17 2008 -0400
50782     Use strncmp() for the fdt command
50784     Cleaner than doing multiple conditionals on characters.
50786     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50788 commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
50789 Author: Gerald Van Baren <vanbaren@cideas.com>
50790 Date:   Sat Jun 7 12:25:05 2008 -0400
50792     The fdt boardsetup command criteria was not unique
50794     It was checking just for "b", which is not unique with respect to the
50795     "boot" command.  Change to check for "boa"[rdsetup].
50797     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50799 commit 2f08bfa9526bae4f461e043530cfb903fec0d273
50800 Author: David Gibson <david@gibson.dropbear.id.au>
50801 Date:   Tue May 20 17:19:11 2008 +1000
50803     libfdt: Several cleanups to parameter checking
50805     This patch makes a couple of small cleanups to parameter checking of
50806     libfdt functions.
50808         - In several functions which take a node offset, we use an
50809     idiom involving fdt_next_tag() first to check that we have indeed been
50810     given a node offset.  This patch adds a helper function
50811     _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
50813         - In fdt_rw.c in several places we have the expanded version
50814     of the RW_CHECK_HEADER() macro for no particular reason.  This patch
50815     replaces those instances with an invocation of the macro; that's what
50816     it's for.
50818         - In fdt_sw.c we rename the check_header_sw() function to
50819     sw_check_header() to match the analgous function in fdt_rw.c, and we
50820     provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
50821     functions in fdt_rw.c
50823     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
50825 commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
50826 Author: Gerald Van Baren <vanbaren@cideas.com>
50827 Date:   Tue Jun 3 20:34:45 2008 -0400
50829     Remove the deprecated CONFIG_OF_FLAT_TREE
50831     Use CONFIG_OF_LIBFDT instead to support flattened device trees.  It is
50832     cleaner, has better functionality, and is better supported.
50834     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50836 commit 62bcdda293efa752f8281fbd9da03822b27ce82f
50837 Author: Gerald Van Baren <vanbaren@cideas.com>
50838 Date:   Tue Jun 3 20:26:29 2008 -0400
50840     Change the stxxst to CONFIG_OF_LIBFDT
50842     This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
50843     to CONFIG_OF_LIBFDT.
50845     WARNING: It appears that this board lost its ability to boot via a
50846     flattened device tree prior to this changeset.
50848     WARNING: This conversion was untested because I do not have a board to
50849     test it on.
50851     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50853 commit 589c04271d129729a8b01391453851ab9cc4069c
50854 Author: Gerald Van Baren <vanbaren@cideas.com>
50855 Date:   Tue Jun 3 20:24:58 2008 -0400
50857     Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
50859     This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
50860     to CONFIG_OF_LIBFDT.
50862     WARNING: This conversion is untested because I do not have a board to
50863     test it on.
50865     NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
50866     /aliases/ethernet1 property for the ethernet to work.
50868     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
50870 commit ee1e35bede91debc8bff9b02f75574486033b652
50871 Author: Kumar Gala <galak@kernel.crashing.org>
50872 Date:   Thu May 29 01:21:24 2008 -0500
50874     85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
50876     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
50878 commit 3b9519fc50802436e417c839e69df7b2016cade5
50879 Author: Becky Bruce <becky.bruce@freescale.com>
50880 Date:   Wed May 14 13:10:04 2008 -0500
50882     MPC85xx: Change traps.c to not reference non-addressable memory
50884     Currently, END_OF_RAM is used by the trap code to determine if
50885     we should attempt to access the stack pointer or not. However,
50886     on systems with a lot of RAM, only a subset of the RAM is
50887     guaranteed to be mapped in and accessible.  Change END_OF_RAM
50888     to use get_effective_memsize() instead of using the raw ram
50889     size out of the bd.
50891     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
50893 commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
50894 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
50895 Date:   Mon Jun 9 13:39:57 2008 +0900
50897     sh: Renesas Solutions SH7763RDP board support
50899     SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
50900     In this patch, support SCIF, NOR Flash, and Ethernet.
50902     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
50903     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50905 commit 60179098a95eaa972007d7ec58e4c1588029720f
50906 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
50907 Date:   Fri Jun 6 16:24:13 2008 +0900
50909     sh: Add support Renesas SH7763
50911     Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
50912     This patch supprts CPU register's header file.
50914     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
50915     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50917 commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
50918 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
50919 Date:   Fri Jun 6 16:16:08 2008 +0900
50921     sh: SH7763 SCIF support
50923     SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
50924     but only SCIF2 is different. This patch work all SCIF channel.
50926     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
50927     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50929 commit 79b51ff8205f0354d5300570614c1d2db499679c
50930 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50931 Date:   Sat Jun 7 20:51:59 2008 +0900
50933     [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
50935     Also get rid of some #ifdefs in *.c files.
50937     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50939 commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
50940 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50941 Date:   Sat Jun 7 20:51:56 2008 +0900
50943     [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
50945     CONFIG_SOC_AU1X00
50947       Common Alchemy Au1x00 stuff. All Alchemy processor based machines
50948       need to have this config as a system type specifier.
50950     CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
50951     CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
50953       Machine type specifiers. Each port should have one of aboves.
50955     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
50957 commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
50958 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
50959 Date:   Fri May 30 16:05:28 2008 -0400
50961     env_nand.c: Added bad block management for environment variables
50963     Modified to check for bad blocks and to skipping over them when
50964     CFG_ENV_RANGE has been defined.
50965     CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
50966     flash block size.
50968     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
50969     Signed-off-by: Scott Wood <scottwood@freescale.com>
50971 commit 279726bd00558e80263d44581c44167625b7fb9a
50972 Author: Becky Bruce <becky.bruce@freescale.com>
50973 Date:   Wed May 14 13:09:58 2008 -0500
50975     MPC86xx: Change traps.c to not reference non-addressable memory
50977     Currently, END_OF_RAM is used by the trap code to determine if
50978     we should attempt to access the stack pointer or not. However,
50979     on systems with a lot of RAM, only a subset of the RAM is
50980     guaranteed to be mapped in and accessible.  Change END_OF_RAM
50981     to use get_effective_memsize() instead of using the raw ram
50982     size out of the bd to prevent us from trying to access
50983     non-mapped memory.
50985     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
50987 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
50988 Author: Wolfgang Denk <wd@denx.de>
50989 Date:   Fri Jun 6 14:28:14 2008 +0200
50991     tools/mkimage: fix compiler warnings on some systems.
50993     Signed-off-by: Wolfgang Denk <wd@denx.de>
50995 commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
50996 Author: Stefan Roese <sr@denx.de>
50997 Date:   Fri Jun 6 16:10:41 2008 +0200
50999     ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
51001     We use upper case letters for the AMCC processor defines (like
51002     CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
51003     not CONFIG_440SPe. This patch fixes the last misspelled config options.
51005     Signed-off-by: Stefan Roese <sr@denx.de>
51007 commit 72675dc6c06a48846d180106161d49dd714383cc
51008 Author: Stefan Roese <sr@denx.de>
51009 Date:   Fri Jun 6 15:55:21 2008 +0200
51011     ppc4xx: Unify AMCC's board config files (part 3/3)
51013     This patch series unifies the AMCC eval board ports by introducing
51014     a common include header for all AMCC eval boards:
51016     include/configs/amcc-common.h
51018     This header now includes all common configuration options/defines which
51019     are removed from the board specific headers.
51021     The reason for this is ease of maintenance and unified look and feel
51022     of all AMCC boards.
51024     Signed-off-by: Stefan Roese <sr@denx.de>
51026 commit 490f204096d6e2c9940f67816f154a8125bab116
51027 Author: Stefan Roese <sr@denx.de>
51028 Date:   Fri Jun 6 15:55:03 2008 +0200
51030     ppc4xx: Unify AMCC's board config files (part 2/3)
51032     This patch series unifies the AMCC eval board ports by introducing
51033     a common include header for all AMCC eval boards:
51035     include/configs/amcc-common.h
51037     This header now includes all common configuration options/defines which
51038     are removed from the board specific headers.
51040     The reason for this is ease of maintenance and unified look and feel
51041     of all AMCC boards.
51043     Signed-off-by: Stefan Roese <sr@denx.de>
51045 commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
51046 Author: Stefan Roese <sr@denx.de>
51047 Date:   Fri Jun 6 15:54:31 2008 +0200
51049     ppc4xx: Unify AMCC's board config files (part 1/3)
51051     This patch series unifies the AMCC eval board ports by introducing
51052     a common include header for all AMCC eval boards:
51054     include/configs/amcc-common.h
51056     This header now includes all common configuration options/defines which
51057     are removed from the board specific headers.
51059     The reason for this is ease of maintenance and unified look and feel
51060     of all AMCC boards.
51062     Signed-off-by: Stefan Roese <sr@denx.de>
51064 commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
51065 Author: Remy Bohmer <linux@bohmer.net>
51066 Date:   Thu Jun 5 13:03:36 2008 +0200
51068     DM9000 fix status check fail 0x6d error for trizeps board
51070     According to the Application Notes of the DM9000, only the 2 bits 0:1 of
51071     the status byte need to be checked to identify a valid packet in the fifo
51073     But, The several different Application Notes do not all speak the same
51074     language on these bits. They do not disagree, but only 1 Application Note
51075     noted explicitly that only these 2 bits need to be checked.
51076     Even the datasheets do not mention anything about these 2 bits.
51078     Because the old code, and the kernel check the whole byte, I left this piece
51079     untouched.
51081     However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
51082     it should work.
51084     Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
51085     in the fifo) is much shorter now, compared to the older U-boot driver code,
51086     so that we can maybe run into a hardware condition now that was never seen
51087     before, or maybe was seen very unfrequently.
51089     Additionaly added a cleanup of a stack variable.
51091     Signed-off-by: Remy Bohmer <linux@bohmer.net>
51092     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51094 commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
51095 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51096 Date:   Thu Jun 5 22:29:00 2008 +0900
51098     [MIPS] Update <asm/addrspace.h> header
51100     - Fix traditional KSEG names
51101     - Replace PHYSADDR with CPHYSADDR
51103     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51105 commit f0d5a6f060d00358b85c62a921a423ea8df71184
51106 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51107 Date:   Thu Jun 5 22:29:00 2008 +0900
51109     [MIPS] mips_config.mk: Misc fixes
51111     - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
51112     - Modify comments
51114     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51116 commit 5f64d21c9a2998794f255b469165b91f092dfc2d
51117 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51118 Date:   Thu Jun 5 22:29:00 2008 +0900
51120     [MIPS] Kill unused <version.h> inclusions
51122     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51124 commit a55d48174cfd1a5bc184159513f48dcbbe409c83
51125 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51126 Date:   Thu Jun 5 22:29:00 2008 +0900
51128     [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
51130     MIPS port has two problems in timer routines. One is now we assume CFG_HZ
51131     equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
51132     in the U-Boot system.
51134     The other is we don't have a proper time management counter like timestamp
51135     other ARCHs have. We need the 32-bit millisecond clock counter.
51137     This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
51138     32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
51139     of calculated CP0 counter cycles in a CFG_HZ.
51141     STRATEGY:
51143     * Fix improper CFG_HZ value to have 1000
51145     * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
51147     * timer_init: initialize timestamp and set up the first timer expiration.
51148       Note that we don't need to initialize CP0 count/compare registers here
51149       as they have been already zeroed out on the system reset. Leave them as
51150       they are.
51152     * get_timer: calculate how many timestamps have been passed, then return
51153       base-relative timestamp. Make sure we can easily count missed timestamps
51154       regardless of CP0 count/compare value.
51156     * get_ticks: return the current timestamp, that is get_timer(0).
51158     Most parts are from good old Linux v2.6.16 kernel.
51160     v2:
51161     - Remove FIXME comments as they turned out to be trivial.
51162     - Use CP0 compare register as a global variable for expirelo.
51163     - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
51164       instead.
51166     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51168 commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
51169 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51170 Date:   Thu Jun 5 22:29:00 2008 +0900
51172     [MIPS] lib_mips/time.c: Fix udelay
51174     What we have to do is just to wait for given micro-seconds. No need to
51175     take into account current time, get_timer and CFG_HZ.
51177     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51179 commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
51180 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51181 Date:   Thu Jun 5 22:28:59 2008 +0900
51183     [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
51185     We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
51186     This patch replaces mips_{compare,count}_set and mips_count_get with
51187     existing macros.
51189     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51191 commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
51192 Author: Remy Bohmer <linux@bohmer.net>
51193 Date:   Tue Jun 3 15:48:17 2008 +0200
51195     Get rid of annoying/superfluous bad-checksum warning message
51197     U-boot can complain a lot about 'checksum bad' when it is attached to the network.
51198     It is annoying for ordinary users who start to doubt the network connection
51199     in general when they see messages like this.
51201     This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
51202     than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
51203     now before checking the checksum.
51205     Signed-off-by: Remy Bohmer <linux@bohmer.net>
51206     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51208 commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
51209 Author: Remy Bohmer <linux@bohmer.net>
51210 Date:   Wed Jun 4 10:47:25 2008 +0200
51212     Fix order for reading rx-status registers in 32bit mode of DM9000
51214     A last minute cleanup before submitting the DM9000A patch series yesterday introduced
51215     a bug in reading the rx-status registers in 32bit mode only.
51216     This patch repairs this.
51218     Signed-off-by: Remy Bohmer <linux@bohmer.net>
51219     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51221 commit 98291e2e689096420465074cce926b226d2e71b4
51222 Author: Remy Bohmer <linux@bohmer.net>
51223 Date:   Tue Jun 3 15:26:26 2008 +0200
51225     DM9000: Some minor code cleanups
51227     Some lines of the U-boot DM9000x driver are longer than 80 characters, or
51228     need some other minor cleanup.
51230     Signed-off-by: Remy Bohmer <linux@bohmer.net>
51231     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51233 commit 850ba7555dbd4ca8d14fc475b864d534797adab3
51234 Author: Remy Bohmer <linux@bohmer.net>
51235 Date:   Tue Jun 3 15:26:25 2008 +0200
51237     DM9000: Make driver work properly for DM9000A
51239     The DM9000A network controller does not work with the U-boot DM9000x driver.
51240     Analysis showed that many incoming packets are lost.
51242     The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
51243     check for a valid rx packet be done on the interrupt status register, not
51244     directly by performing the dummy read and the rx status check as is currently
51245     the case in the u-boot driver.
51247     When the recommended poll is done as suggested the driver starts working
51248     correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
51249     can be more than 1 package in the fifo at the same time.
51251     The driver must perform the rx-status check in a loop and read and handle all
51252     packages until there is no more left _after_ the interrupt RX flag is set.
51254     This change has been tested with DM9000A, DM9000E, DM9000EP.
51256     Signed-off-by: Remy Bohmer <linux@bohmer.net>
51257     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51259 commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
51260 Author: Remy Bohmer <linux@bohmer.net>
51261 Date:   Tue Jun 3 15:26:24 2008 +0200
51263     DM9000: Improve eth_reset() routine
51265     According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
51266     reset procedure must be done twice to properly reset the DM9000 by means of software.
51267     This errata is not needed anymore for the DM9000A, but it does not bother it.
51269     This change has been tested with DM9000A, DM9000E, DM9000EP.
51271     Signed-off-by: Remy Bohmer <linux@bohmer.net>
51272     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51274 commit acba31847fad9ae40708cc2c9f3a634ec35f3416
51275 Author: Remy Bohmer <linux@bohmer.net>
51276 Date:   Tue Jun 3 15:26:23 2008 +0200
51278     DM9000: improve eth_send() routine
51280     The eth_send routine of the U-boot DM9000x driver does not match the
51281     DM9000 or DM9000A application notes/programming guides.
51283     This change improves the stability of the DM9000A network controller.
51285     This change has been tested with DM9000A, DM9000E, DM9000EP.
51287     Signed-off-by: Remy Bohmer <linux@bohmer.net>
51288     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51290 commit 134e266253c02a7832560da59d394989c4f64453
51291 Author: Remy Bohmer <linux@bohmer.net>
51292 Date:   Tue Jun 3 15:26:22 2008 +0200
51294     DM9000: repair debug logging
51296     It seems that the debugging code of the DM9000x driver in U-boot has not been
51297     compiled for a long time, because it cannot compile...
51299     Also rearranged some loglines to get more useful info while debugging.
51301     Signed-off-by: Remy Bohmer <linux@bohmer.net>
51302     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51304 commit a101361bfe23c120321e45d114c0603b8e0763e9
51305 Author: Remy Bohmer <linux@bohmer.net>
51306 Date:   Tue Jun 3 15:26:21 2008 +0200
51308     DM9000: Add data bus-width auto detection.
51310     The U-boot DM9000x driver contains a compile time bus-width definition for
51311     the databus connected to the network controller.
51313     This compile check makes the code unclear, inflexible and is unneccessary.
51314     It can be asked to the network controller what its bus-width is by reading bits
51315     6 and 7 of the interrupt status register.
51317     The linux kernel already uses a runtime mechanism to determine this bus-width,
51318     so the implementation below looks somewhat like that implementation.
51320     This change has been tested with DM9000A, DM9000E, DM9000EP.
51322     Signed-off-by: Remy Bohmer <linux@bohmer.net>
51323     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51325 commit 63a0afa0c32e5f4ea98a9439542870072437404d
51326 Author: Stefan Roese <sr@denx.de>
51327 Date:   Wed Jun 4 19:19:20 2008 +0200
51329     ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
51331     This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
51332     introduced by the commit:
51334     ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
51336     With this patch SDRAM will get initialized again and booting from NAND
51337     is working again.
51339     Signed-off-by: Stefan Roese <sr@denx.de>
51340     Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
51342 commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
51343 Author: Wolfgang Denk <wd@denx.de>
51344 Date:   Tue May 27 14:19:30 2008 +0200
51346     Socrates: Fix PCI bus frequency report
51348     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
51350 commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
51351 Author: Tor Krill <tor@excito.com>
51352 Date:   Thu May 29 11:10:30 2008 +0200
51354     Fix incorrect switch for IF_TYPE in part.c
51356     Use correct field in block_dev_desc_t when writing interface type in
51357     dev_print. Error introduced in 574b3195.
51359     Also added fix from Martin Krause
51361     Signed-off-by: Tor Krill <tor@excito.com>
51363 commit b64b8a0bd310935b70af69ac970952f2b364ae56
51364 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
51365 Date:   Tue May 27 10:25:39 2008 +0200
51367     Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
51369     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
51371 commit 35ef877f0a8f6232cdef748f442fed5accb2b641
51372 Author: Peter Tyser <ptyser@xes-inc.com>
51373 Date:   Thu May 22 18:56:52 2008 -0500
51375     Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
51377     Removed unneeded command line history initialization.  Also, the original
51378     code would access the 'initted' variable before relocation to SDRAM
51379     which resulted in erratic behavior since the bss is not initialized when
51380     executing from flash.
51382     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
51384 commit 22f371b63038a4ecab04068877c1089e51a01ba1
51385 Author: Grant Erickson <gerickson@nuovations.com>
51386 Date:   Wed May 21 13:28:30 2008 -0700
51388     PPC4xx: Simplified post_word_{load, store}
51390     This patch simplifies post_word_{load,store} by using the preprocessor
51391     to eliminate redundant, copy-and-pasted code.
51393     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
51395 commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
51396 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
51397 Date:   Wed May 7 21:25:33 2008 +0400
51399     cfi_flash: enable M18 flash chips family support.
51401     Added new command set ID. Buffered write command processing is changed
51402     in order to support M18 flash chips family.
51404     Signed-off-by: Alexey Korolev <akorolev@infradead.org>
51405     Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
51407 commit 93c56f212ccdadc182018f0769cb284426b88f1d
51408 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
51409 Date:   Wed May 7 21:24:44 2008 +0400
51411     cfi_flash: support of long cmd in U-boot.
51413     Some NOR flash chips needs support of commands with length grether than max
51414     value size of uchar. For example all M18 family chips use 0x1ff command in
51415     buffered write mode as value of program loops count.
51417     Signed-off-by: Alexey Korolev <akorolev@infradead.org>
51418     Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
51420 commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
51421 Author: Stefan Roese <sr@denx.de>
51422 Date:   Fri May 16 11:06:06 2008 +0200
51424     DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
51426     On AD7414 the first value upon bootup is not read correctly.
51427     This is most likely because of the 800ms update time of the
51428     temp register in normal update mode. To get current values
51429     each time we issue the "dtt" command including upon powerup
51430     we switch into one-short mode.
51432     This patch fixes the problem on AD7414 equipped boards (Sequoia,
51433     Canyonlands etc), that temp value printed in the bootup log was
51434     incorrect.
51436     Signed-off-by: Stefan Roese <sr@denx.de>
51438 commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
51439 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51440 Date:   Fri May 30 16:55:06 2008 +0200
51442     ppc4xx: Cleanup CPCI405 variant's config file
51444     This patch removes some dead code from CPCI405 board's
51445     config files. JFFS2 support is also removed. It's not used and
51446     CPCI4052 does not build anymore without some size reduction.
51448     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
51450 commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
51451 Author: Kenneth Johansson <kenneth@southpole.se>
51452 Date:   Thu May 29 16:32:33 2008 +0200
51454     Remove shell variable UNDEF_SYM.
51456     UNDEF_SYM is a shell variable in the main Makefile used to force the
51457     linker to add all u-boot commands to the final image. It has no use here.
51459     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
51461 commit 8c66497e06bf803489c589df58ee591d71033274
51462 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51463 Date:   Fri May 16 11:10:35 2008 +0200
51465     Add support for environment in SPI flash
51467     This is pretty incomplete...it doesn't handle reading the environment
51468     before relocation, it doesn't support redundant environment, and it
51469     doesn't support embedded environment. But apart from that, it does
51470     seem to work.
51472     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51474 commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
51475 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51476 Date:   Fri May 16 11:10:34 2008 +0200
51478     SPI Flash: Add "sf" command
51480     This adds a new command, "sf" which can be used to manipulate SPI
51481     flash. Currently, initialization, reading, writing and erasing is
51482     supported.
51484     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51486 commit d25ce7d24cc0f93881559f4009175ea305af65e8
51487 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51488 Date:   Fri May 16 11:10:33 2008 +0200
51490     SPI Flash subsystem
51492     This adds a new SPI flash subsystem.
51494     Currently, only AT45 DataFlash in non-power-of-two mode is supported,
51495     but some preliminary support for other flash types is in place as
51496     well.
51498     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51500 commit 60445cb5c3eb77ed1a07f2d908eef09174483698
51501 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
51502 Date:   Fri May 16 11:10:32 2008 +0200
51504     atmel_spi: Driver for the Atmel SPI controller
51506     This adds a driver for the SPI controller found on most AT91 and AVR32
51507     chips, implementing the new SPI API.
51509     Changed in v4:
51510       - Update to new API
51511       - Handle zero-length transfers appropriately. The user may send a
51512         zero-length SPI transfer with SPI_XFER_END set in order to
51513         deactivate the chip select after a series of transfers with chip
51514         select active. This is useful e.g. when polling the status
51515         register of DataFlash.
51517     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51519 commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
51520 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
51521 Date:   Fri May 16 11:10:31 2008 +0200
51523     SPI API improvements
51525     This patch gets rid of the spi_chipsel table and adds a handful of new
51526     functions that makes the SPI layer cleaner and more flexible.
51528     Instead of the spi_chipsel table, each board that wants to use SPI
51529     gets to implement three hooks:
51530       * spi_cs_activate(): Activates the chipselect for a given slave
51531       * spi_cs_deactivate(): Deactivates the chipselect for a given slave
51532       * spi_cs_is_valid(): Determines if the given bus/chipselect
51533         combination can be activated.
51535     Not all drivers may need those extra functions however. If that's the
51536     case, the board code may just leave them out (assuming they know what
51537     the driver needs) or rely on the linker to strip them out (assuming
51538     --gc-sections is being used.)
51540     To set up communication parameters for a given slave, the driver needs
51541     to call spi_setup_slave(). This returns a pointer to an opaque
51542     spi_slave struct which must be passed as a parameter to subsequent SPI
51543     calls. This struct can be freed by calling spi_free_slave(), but most
51544     driver probably don't want to do this.
51546     Before starting one or more SPI transfers, the driver must call
51547     spi_claim_bus() to gain exclusive access to the SPI bus and initialize
51548     the hardware. When all transfers are done, the driver must call
51549     spi_release_bus() to make the bus available to others, and possibly
51550     shut down the SPI controller hardware.
51552     spi_xfer() behaves mostly the same as before, but it now takes a
51553     spi_slave parameter instead of a spi_chipsel function pointer. It also
51554     got a new parameter, flags, which is used to specify chip select
51555     behaviour. This may be extended with other flags in the future.
51557     This patch has been build-tested on all powerpc and arm boards
51558     involved. I have not tested NIOS since I don't have a toolchain for it
51559     installed, so I expect some breakage there even though I've tried
51560     fixing up everything I could find by visual inspection.
51562     I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
51563     DataFlash drivers posted as a follow-up. I'd like some help testing
51564     other boards that use the existing SPI API.
51566     But most of all, I'd like some comments on the new API. Is this stuff
51567     usable for everyone? If not, why?
51569     Changed in v4:
51570       - Build fixes for various boards, drivers and commands
51571       - Provide common struct spi_slave definition that can be extended by
51572         drivers
51573       - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
51574       - Make default bus and mode build-time configurable
51575       - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
51577     Changed in v3:
51578       - Add opaque struct spi_slave for controller-specific data associated
51579         with a slave.
51580       - Add spi_claim_bus() and spi_release_bus()
51581       - Add spi_free_slave()
51582       - spi_setup() is now called spi_setup_slave() and returns a
51583         struct spi_slave
51584       - soft_spi now supports four SPI modes (CPOL|CPHA)
51585       - Add bus parameter to spi_setup_slave()
51586       - Convert the new i.MX32 SPI driver
51587       - Convert the new MC13783 RTC driver
51589     Changed in v2:
51590       - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
51591         new API.
51593     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
51594     Tested-by: Guennadi Liakhovetski <lg@denx.de>
51596 commit 289011207d999b2e4085150d2aa30d547ad9b800
51597 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51598 Date:   Fri May 16 11:10:30 2008 +0200
51600     Move definition of container_of() to common.h
51602     AVR32 and AT91SAM9 both have their own identical definitions of
51603     container_of() taken from the Linux kernel. Move it to common.h so
51604     that all architectures can use it.
51606     container_of() is already used by some drivers, and will be used
51607     extensively by the new and improved SPI API.
51609     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51611 commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
51612 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51613 Date:   Fri May 16 11:08:11 2008 +0200
51615     soft_i2c: Pull SDA high before reading
51617     Spotted by Dean Capindale.
51619     Systems that support open-drain GPIO properly are allowed provide an
51620     empty I2C_TRISTATE define. However, this means that we need to be
51621     careful not to drive SDA low when the slave is expected to respond.
51623     This patch adds a missing I2C_SDA(1) to read_byte() required to
51624     tristate the SDA line on systems that support open-drain GPIO.
51626     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51628 commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
51629 Author: Stefan Roese <sr@denx.de>
51630 Date:   Mon May 19 11:34:53 2008 +0200
51632     ppc4xx: Remove implementations of testdram()
51634     This patch removes the used testdram() implementations of the board
51635     that are maintained by myself.
51637     Signed-off-by: Stefan Roese <sr@denx.de>
51639 commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
51640 Author: Stefan Roese <sr@denx.de>
51641 Date:   Mon Jun 2 17:37:28 2008 +0200
51643     ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
51645     Historically the 405 U-Boot port had a dram_init() call in early init
51646     stage. This function was still called from start.S and most of the time
51647     coded in assembler. This is not needed anymore (since a long time) and
51648     boards should implement the common initdram() function in C instead.
51650     This patch now removed the dram_init() call from start.S and removes the
51651     empty implementations that are scattered through most of the 405 board
51652     ports. Some older board ports really implement this dram_init() though.
51653     These are:
51655     csb272
51656     csb472
51657     ERIC
51658     EXBITGEN
51659     W7OLMC
51660     W7OLMG
51662     I changed those boards to call this assembler dram_init() function now
51663     from their board specific initdram() instead. This *should* work, but please
51664     test again on those platforms. And it is perhaps a good idea that those
51665     boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
51666     some time. So further patches welcome here.
51668     Signed-off-by: Stefan Roese <sr@denx.de>
51670 commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
51671 Author: Stefan Roese <sr@denx.de>
51672 Date:   Mon Jun 2 17:22:11 2008 +0200
51674     ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
51676     Signed-off-by: Stefan Roese <sr@denx.de>
51678 commit 39b32be18cd33b53a84065edcd4e465165cc5564
51679 Author: Stefan Roese <sr@denx.de>
51680 Date:   Mon Jun 2 17:20:03 2008 +0200
51682     ppc4xx: Fix common ECC generation code for 440GP style platforms
51684     This patch makes the common 4xx ECC code really usable on 440GP style
51685     platforms.
51687     Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
51688     compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
51689     we need to make some processor dependant defines used later on by the
51690     driver.
51692     Signed-off-by: Stefan Roese <sr@denx.de>
51694 commit ec724f883ee3f3925e6c55027e8ffa70ada83303
51695 Author: Stefan Roese <sr@denx.de>
51696 Date:   Mon Jun 2 17:13:55 2008 +0200
51698     ppc4xx: Change Kilauea to use the common DDR2 init function
51700     This patch changes the kilauea and kilauea_nand (for NAND booting)
51701     board port to not use a board specific DDR2 init routine anymore. Now
51702     the common code from cpu/ppc4xx is used.
51704     Thanks to Grant Erickson for all his basic work on this 405EX early
51705     bootup.
51707     Signed-off-by: Stefan Roese <sr@denx.de>
51709 commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
51710 Author: Stefan Roese <sr@denx.de>
51711 Date:   Mon Jun 2 14:59:21 2008 +0200
51713     ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
51715     This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
51716     ppc4xx related SDRAM/DDR/DDR2 controller defines.
51718     Signed-off-by: Stefan Roese <sr@denx.de>
51720 commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
51721 Author: Stefan Roese <sr@denx.de>
51722 Date:   Mon Jun 2 14:57:41 2008 +0200
51724     ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
51726     This patch removes all SDRAM related defines from the PPC4xx headers
51727     ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
51728     the same SDRAM controller as 440 systems do (like 405EX and 440SP).
51730     It also introduces new defines for the equipped SDRAM controller based on
51731     which PPC variant is used. There new defines are:
51733     used on 405GR/CR/EP and some Xilinx Virtex boards.
51735     used on 440GP/GX/EP/GR.
51737     used on 440EPx/GRx.
51739     used on 405EX/r/440SP/SPe/460EX/GT.
51741     Signed-off-by: Stefan Roese <sr@denx.de>
51743 commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
51744 Author: Stefan Roese <sr@denx.de>
51745 Date:   Mon Jun 2 14:35:44 2008 +0200
51747     ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
51749     This patch consolidates the 405 and 440 parts of the NAND booting code
51750     selected via CONFIG_NAND_SPL. Now common code is used to initialize the
51751     SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
51752     Only *after* running from this location, nand_boot() is called.
51754     Please note that the initsdram() call is now moved from nand_boot.c
51755     to start.S. I experienced problems with some boards like Kilauea
51756     (405EX), which don't have internal SRAM (OCM) and relocation needs to
51757     be done to SDRAM before the NAND controller can get accessed. When
51758     initdram() is called later on in nand_boot(), this can lead to problems
51759     with variables in the bss sections like nand_ecc_pos[].
51761     Signed-off-by: Stefan Roese <sr@denx.de>
51762     Acked-by: Scott Wood <scottwood@freescale.com>
51764 commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
51765 Author: Grant Erickson <gerickson@nuovations.com>
51766 Date:   Thu May 22 14:44:24 2008 -0700
51768     ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
51770     This patch (Part 2 of 2):
51772     * Rolls up a suite of changes to enable correct primordial stack and
51773       global data handling when the data cache is used for such a purpose
51774       for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
51776     * Related to the first, unifies DDR2 SDRAM and ECC initialization by
51777       eliminating redundant ECC initialization implementations and moving
51778       redundant SDRAM initialization out of board code into shared 4xx
51779       code.
51781     * Enables MCSR visibility on the 405EX(r).
51783     * Enables the use of the data cache for initial RAM on
51784       both AMCC's Kilauea and Makalu and removes a redundant
51785       CFG_POST_MEMORY flag from each board's CONFIG_POST value.
51787       - Removed, per Stefan Roese's request, defunct memory.c file for
51788         Makalu and rolled sdram_init from it into makalu.c.
51790     With respect to the 4xx DDR initialization and ECC unification, there
51791     is certainly more work that can and should be done (file renaming,
51792     etc.). However, that can be handled at a later date on a second or
51793     third pass. As it stands, this patch moves things forward in an
51794     incremental yet positive way for those platforms that utilize this
51795     code and the features associated with it.
51797     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
51798     Signed-off-by: Stefan Roese <sr@denx.de>
51800 commit c821b5f120bedf73867513466412587c6912a8f8
51801 Author: Grant Erickson <gerickson@nuovations.com>
51802 Date:   Thu May 22 14:44:14 2008 -0700
51804     ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
51806     This patch (Part 1 of 2):
51808     * Rolls up a suite of changes to enable correct primordial stack and
51809       global data handling when the data cache is used for such a purpose
51810       for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
51812     * Related to the first, unifies DDR2 SDRAM and ECC initialization by
51813       eliminating redundant ECC initialization implementations and moving
51814       redundant SDRAM initialization out of board code into shared 4xx
51815       code.
51817     * Enables MCSR visibility on the 405EX(r).
51819     * Enables the use of the data cache for initial RAM on
51820       both AMCC's Kilauea and Makalu and removes a redundant
51821       CFG_POST_MEMORY flag from each board's CONFIG_POST value.
51823       - Removed, per Stefan Roese's request, defunct memory.c file for
51824         Makalu and rolled sdram_init from it into makalu.c.
51826     With respect to the 4xx DDR initialization and ECC unification, there
51827     is certainly more work that can and should be done (file renaming,
51828     etc.). However, that can be handled at a later date on a second or
51829     third pass. As it stands, this patch moves things forward in an
51830     incremental yet positive way for those platforms that utilize this
51831     code and the features associated with it.
51833     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
51834     Signed-off-by: Stefan Roese <sr@denx.de>
51836 commit a439680019e06171d4a5694b7992accce87f590e
51837 Author: Grant Erickson <gerickson@nuovations.com>
51838 Date:   Wed May 21 13:28:30 2008 -0700
51840     PPC4xx: Simplified post_word_{load, store}
51842     This patch simplifies post_word_{load,store} by using the preprocessor
51843     to eliminate redundant, copy-and-pasted code.
51845     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
51847 commit f979690ee337450b2030aba128f95b7a8d9881c0
51848 Author: Kumar Gala <galak@kernel.crashing.org>
51849 Date:   Thu May 15 15:13:08 2008 -0500
51851     Fix warnings from gcc-4.3.0 build on a ppc host
51853     * The cfi_flash.c memset fix actual allows the board to boot so there is
51854       a bit more going on here than just resolving warnings associated with
51855       uninitialized variables.
51857     * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
51858       inline function 'ext2_find_next_zero_bit' which is not static
51860     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51862 commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
51863 Author: Becky Bruce <becky.bruce@freescale.com>
51864 Date:   Wed May 14 13:09:51 2008 -0500
51866     MPC512x: Change traps.c to not reference non-addressable memory
51868     Currently, END_OF_RAM is used by the trap code to determine if
51869     we should attempt to access the stack pointer or not. However,
51870     on systems with a lot of RAM, only a subset of the RAM is
51871     guaranteed to be mapped in and accessible.  Change END_OF_RAM
51872     to use get_effective_memsize() instead of using the raw ram
51873     size out of the bd.
51875     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
51877 commit 81673e9ae14b771cd13faf19947192599cae3959
51878 Author: Kumar Gala <galak@kernel.crashing.org>
51879 Date:   Tue May 13 19:01:54 2008 -0500
51881     Make sure common.h is the first include.
51883     If common.h isn't first we can get CONFIG_ options defined in the
51884     board config file ignored.  This can cause an issue if any of those
51885     config options impact the size of types of data structures
51886     (eg CONFIG_PHYS_64BIT).
51888     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51890 commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
51891 Author: Marian Balakowicz <m8@semihalf.com>
51892 Date:   Tue May 13 15:53:29 2008 +0200
51894     Avoid initrd and logbuffer area overlaps
51896     Add logbuffer to reserved LMB areas to prevent initrd allocation
51897     from overlaping with it.
51899     Make sure to use correct logbuffer base address.
51901     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
51903 commit 6956d53d9934862507f83f0e3255dfd4662e7482
51904 Author: Sascha Laue <sascha.laue@liebherr.com>
51905 Date:   Tue May 13 13:29:54 2008 +0200
51907     lwmon5: add memory-pattern-test to FPGA POST.
51909 commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
51910 Author: Becky Bruce <becky.bruce@freescale.com>
51911 Date:   Thu May 8 19:02:51 2008 -0500
51913     PPC: 86xx Add bat registers to reginfo command
51915     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
51917 commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
51918 Author: Becky Bruce <becky.bruce@freescale.com>
51919 Date:   Fri May 9 15:41:35 2008 -0500
51921     PPC: Add print_bats() to lib_ppc/bat_rw.c
51923     This function prints the values of all the BAT register
51924     pairs - I needed this for debug earlier this week; adding it to
51925     lib_ppc so others can use it (and add it to reginfo commands
51926     if so desired).
51928     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
51930 commit c148f24c15743a02e855636e6bed013bd121f7f2
51931 Author: Becky Bruce <becky.bruce@freescale.com>
51932 Date:   Thu May 15 21:29:04 2008 -0500
51934     PPC: Change lib_ppc/bat_rw.c to use high bats
51936     Currently, this code only deals with BATs 0-3, which makes
51937     it useless on systems that support BATs 4-7.  Add the
51938     support for these registers.
51940     Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
51942 commit 31d826722434931e1152a09d140187dcf72f8aac
51943 Author: Becky Bruce <becky.bruce@freescale.com>
51944 Date:   Thu May 8 19:02:12 2008 -0500
51946     PPC: Create and use CONFIG_HIGH_BATS
51948     Change all code that conditionally operates on high bat
51949     registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
51950     instead of the myriad ways this is done now.  Define the option
51951     for every config for which high bats are supported (and
51952     enabled by early boot, on parts where they're not always
51953     enabled)
51955     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
51957 commit aa3b8bf9c30065bb2ea852799d32db5020598495
51958 Author: Wolfgang Grandegger <wg@grandegger.com>
51959 Date:   Wed May 28 19:55:19 2008 +0200
51961     E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
51963     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
51964     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51966 commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
51967 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
51968 Date:   Wed May 28 13:06:25 2008 -0500
51970     ColdFire: Add 10 base ethernet support for mcf5445x
51972     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
51973     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
51975 commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
51976 Author: Jason McMullan <mcmullan@netapp.com>
51977 Date:   Fri May 30 00:53:38 2008 +0900
51979     mips: Add an 'include/asm/errno.h', like all other architectures
51981     All other u-boot architectures have an include/asm/errno.h, so
51982     this change adds it to the mips include/asm-mips headers also.
51984     Stolen from Linux 2.6.25.
51986     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
51988 commit e2ad8426624bac457acc6925b6ff408e9bf20466
51989 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51990 Date:   Fri May 30 00:53:38 2008 +0900
51992     [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
51994     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51996 commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
51997 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
51998 Date:   Fri May 30 00:53:38 2008 +0900
52000     [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
52002     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52004 commit bf462ae450a7f2eeeddc699ed345b391e3263540
52005 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52006 Date:   Fri May 30 00:53:37 2008 +0900
52008     [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
52010     No functional changes.
52012     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52014 commit 89a1550ec6b74452274a7a23127936e2c7eec711
52015 Author: Jason McMullan <mcmullan@netapp.com>
52016 Date:   Fri May 30 00:53:37 2008 +0900
52018     mips: If CONFIG_CMD_SPI is defined, call spi_init()
52020     The mips architecture currently does not call 'spi_init()' in the generic
52021     board initialization routine is CONFIG_CMD_SPI is defined.
52023     This patch rectifies that problem.
52025     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
52026     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52028 commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
52029 Author: Jason McMullan <mcmullan@netapp.com>
52030 Date:   Fri May 30 00:53:37 2008 +0900
52032     [MIPS] lib_mips/board.c: Add nand_init
52034     This patch adds the standard 'nand_init()' call to the mips generic
52035     'board_init_r()' call, bringing MIPS in line with the other architectures.
52037     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
52038     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52040 commit d6ac2ed893c2168738aee01579d6283af8d37045
52041 Author: Scott Wood <scottwood@freescale.com>
52042 Date:   Thu May 22 10:49:46 2008 -0500
52044     Remove prototypes of nand_init() in favor of including nand.h.
52046     Likewise with onenand_init().
52048     Signed-off-by: Scott Wood <scottwood@freescale.com>
52050 commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
52051 Author: Scott Wood <scottwood@freescale.com>
52052 Date:   Thu May 22 10:49:00 2008 -0500
52054     Make onenand_uboot.h self-sufficient.
52056     Don't assume types are provided by previously included headers.
52058     Signed-off-by: Scott Wood <scottwood@freescale.com>
52060 commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
52061 Author: Dirk Behme <dirk.behme@gmail.com>
52062 Date:   Wed Jan 16 14:26:59 2008 +0100
52064     nand: Correct NAND erase percentage output
52066     For NAND erase sizes smaller than one NAND erase block, erase
52067     percentage output becomes grater than 100% e.g.
52069     -- cut --
52070       > nand info
52071     Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
52072       > nand erase 0x100000 0x2000
52073     NAND erase: device 0 offset 0x100000, size 0x2000
52074     Erasing at 0x100000 -- 200% complete.
52075     OK
52076       >
52077     -- cut --
52079     Correct this and give user a warning that more is erased than specified:
52081     -- cut --
52082       > nand erase 0x100000 0x2000
52083     NAND erase: device 0 offset 0x100000, size 0x2000
52084     Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
52085                Erasing 0x00004000 instead
52086     Erasing at 0x100000 -- 100% complete.
52087     OK
52088       >
52089     -- cut --
52091     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
52093 commit 5922db6c0948506be91e0de44e7a6863a18a417f
52094 Author: Stelian Pop <stelian@popies.net>
52095 Date:   Tue May 13 17:31:24 2008 +0200
52097     Cleanup nand_info[] declaration.
52099     The nand_info array is declared as extern in several .c files.
52100     Those days, nand.h contains a reference to the array, so there is
52101     no need to declare it elsewhere.
52103     Signed-off-by: Stelian Pop <stelian@popies.net>
52104     Signed-off-by: Scott Wood <scottwood@freescale.com>
52106 commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
52107 Author: Scott Wood <scottwood@freescale.com>
52108 Date:   Mon May 19 09:30:43 2008 -0500
52110     NAND: Provide a sane default for NAND_MAX_CHIPS.
52112     This allows the header to be included regardless of whether a board's
52113     config file provides NAND-related defininitions.
52115     Signed-off-by: Scott Wood <scottwood@freescale.com>
52117 commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
52118 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52119 Date:   Mon May 26 12:19:10 2008 +0200
52121     avr32: Fix theoretical race in udelay()
52123     If the specified delay is very short, the cycle counter may go past the
52124     "end" time we are waiting for before we get around to reading it.
52126     Fix it by checking the different between the cycle count "now" and the
52127     cycle count at the beginning. This will work as long as the delay
52128     measured in number of cycles is below 2^31.
52130     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52132 commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
52133 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52134 Date:   Wed May 21 13:01:09 2008 +0200
52136     avr32: Compile atmel_mci.o conditionally
52138     Remove #ifdef CONFIG_MMC from the source file and use conditional
52139     compilation in the Makefile instead.
52141     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52143 commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
52144 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52145 Date:   Thu May 22 12:28:25 2008 +0200
52147     avr32: Fix wrong error flags in atmel_mci driver
52149     Make sure we check for CRC errors when sending commands that use CRC
52150     checking.
52152     Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
52153     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52155 commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
52156 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52157 Date:   Wed May 21 11:10:59 2008 +0200
52159     avr32: Fix two warnings in atmel_mci.c
52161     The warnings are harmless but annoying. Let's fix them.
52163     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52165 commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
52166 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52167 Date:   Mon May 19 11:36:28 2008 +0200
52169     avr32: Rework SDRAM initialization code
52171     This cleans up the SDRAM initialization and related code a bit, and
52172     allows faster booting.
52174       * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
52175       * Remove memory test from sdram_init() and make caller responsible
52176         for verifying the SDRAM and determining its size.
52177       * Remove base_address member from struct sdram_config (was sdram_info)
52178       * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
52179       * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
52181     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52183 commit 95107b7c028806919630bf02c653aa8f4f867c94
52184 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52185 Date:   Mon May 19 11:27:37 2008 +0200
52187     avr32: Do stricter stack checking in the exception handler
52189     Don't do a stack dump if the stack pointer is outside the memory area
52190     reserved for stack.
52192     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52194 commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
52195 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52196 Date:   Fri May 2 15:32:57 2008 +0200
52198     avr32: Use the same entry point for reset and exception handling
52200     Since the reset vector is always aligned to a very large boundary, we
52201     can save a couple of KB worth of alignment padding by placing the
52202     exception vectors at the same address.
52204     Deciding which one it is is easy: If we're handling an exception, the
52205     CPU is in Exception mode. If we're starting up after reset, the CPU is
52206     in Supervisor mode. So this adds a very minimal overhead to the reset
52207     path (only executed once) and the exception handling path (normally
52208     never executed at all.)
52210     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52212 commit 0c16eed2189a190bd5655b33c029f809a9b31128
52213 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52214 Date:   Fri May 2 15:24:22 2008 +0200
52216     avr32: Put memset in its own section
52218     All C code is compiled with -ffunction-sections -fdata-sections.
52219     Assembly functions should get their own sections as well so that
52220     everything looks consistent.
52222     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52224 commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
52225 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52226 Date:   Fri May 2 15:21:40 2008 +0200
52228     avr32: Rename pm_init() as clk_init() and make SoC-specific
52230     pm_init() was always more about clock initialization than anything
52231     else. Dealing with PLLs, clock gating and such is also inherently
52232     SoC-specific, so move it into a SoC-specific directory.
52234     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52236 commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
52237 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52238 Date:   Wed Apr 30 16:15:57 2008 +0200
52240     avr32: Use new-style Makefile for the at32ap platform
52242     This makes it easier to avoid compiling certain files later.
52244     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52246 commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
52247 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52248 Date:   Wed Apr 30 14:36:47 2008 +0200
52250     avr32: Remove unused file cpu/at32ap/pm.c
52252     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52254 commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
52255 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52256 Date:   Wed Apr 30 14:19:28 2008 +0200
52258     avr32: Clean up the HMATRIX code
52260     Rework the HMATRIX configuration interface so that it becomes easier
52261     to configure the HMATRIX for boards with special needs, and add new
52262     parts.
52264     The HMATRIX header file has been split into a general,
52265     chip-independent part with register definitions, etc. and a
52266     chip-specific part with SFR bitfield definitions and master/slave
52267     identifiers.
52269     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52271 commit 0a2e48792dd372c90b80059f3235e67a567e16fc
52272 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52273 Date:   Thu Nov 22 12:14:11 2007 +0100
52275     avr32: Add support for the ATSTK1006 board
52277     This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
52278     board. It's currently in production and will be available soon.
52280     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52282 commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
52283 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52284 Date:   Tue Apr 29 12:53:05 2008 +0200
52286     avr32: Get rid of the .flashprog section
52288     The .flashprog section was only needed back when we were running
52289     directly from flash, and it's even more useless on NGW100 since it
52290     uses the CFI flash driver which never used this workaround in the
52291     first place.
52293     Remove it on STK1000 as well, and get rid of all the associated code and
52294     annotations.
52296     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52298 commit cdd42c0c7a5205fc380912d83229069a71ea3abf
52299 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52300 Date:   Wed Apr 30 13:09:56 2008 +0200
52302     avr32: Use correct condition around macb clock accessors
52304     get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
52305     the chip has a MACB controller, not when it has a USART.
52307     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52309 commit f793a3581901ff39c2abb94012d9bbc8573ccf02
52310 Author: David Brownell <david-b@pacbell.net>
52311 Date:   Wed Apr 16 22:57:58 2008 -0700
52313     avr32: Disable the AP7000 internal watchdog on startup
52315     This patch forces the watchdog off in all cases.  That will at least
52316     get rid of the constant reboot cycle, though it won't let the watchdog
52317     actually run in the new kernels:  its probe() comes up with a polite
52318     warning.
52320     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52322 commit 55ac7a7490b55da56659f95d82a0c83b9756df27
52323 Author: David Brownell <david-b@pacbell.net>
52324 Date:   Fri Feb 22 12:54:39 2008 -0800
52326     avr32: stk1002 and ngw100 convergence
52328     Make STK1002 and NGW100 boards act more alike:
52329       - STK boards can use as many arguments as NGW
52330       - STK boards don't need to manage FPGAs either
52331       - NGW commands should match STK ones
52333     Also spell U-Boot right in prompts for STK1002 and NGW100.
52335     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
52336     [haavard.skinnemoen@atmel.com: update STK100[34] as well]
52337     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
52339 commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
52340 Author: Sergei Poselenov <sposelenov@emcraft.com>
52341 Date:   Tue May 27 13:47:00 2008 +0200
52343     Socrates: Fix PCI bus frequency report
52345     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52347 commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
52348 Author: Sergei Poselenov <sposelenov@emcraft.com>
52349 Date:   Tue May 27 11:49:13 2008 +0200
52351     Socrates: Added USB support.
52353     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52355 commit 5a904e5637cff1d708dc67098004f83ba9e84c54
52356 Author: Sergei Poselenov <sposelenov@emcraft.com>
52357 Date:   Tue May 27 11:35:02 2008 +0200
52359     USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
52361     In case of several PCI USB controllers on a board this variable
52362     specifys which controller to use.
52363     See doc/README.generic_usb_ohci for details.
52365     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52367 commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
52368 Author: Sergei Poselenov <sposelenov@emcraft.com>
52369 Date:   Tue May 27 10:36:07 2008 +0200
52371     Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
52373     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52375 commit 83e9d7a2614d4006b92690afa3390c291734267e
52376 Author: Sergei Poselenov <sposelenov@emcraft.com>
52377 Date:   Mon May 26 18:16:04 2008 +0200
52379     Socrates: Config file cleanup.
52381     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52383 commit 602cac1389b755b223272f2328a47e6f8c240848
52384 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52385 Date:   Sat May 24 12:47:46 2008 +0200
52387     MAKEALL: add at91 list
52389     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52391 commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
52392 Author: Ron Madrid <ron_madrid@sbcglobal.net>
52393 Date:   Fri May 23 15:37:05 2008 -0700
52395     Add Marvell 88E1118 support for TSEC
52397     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
52398     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
52400 commit 557b377d8bfc8b833b6e749457bcdfa298331a24
52401 Author: Jens Gehrlein <sew_s@tqs.de>
52402 Date:   Mon May 5 14:06:11 2008 +0200
52404     smc911x: add 16 bit support
52406     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
52407     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
52409 commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
52410 Author: Christian Eggers <ceggers@gmx.de>
52411 Date:   Wed May 21 21:29:10 2008 +0200
52413     Fix endianess conversion in usb_ohci.c
52415     Sorry, I forgot this line:
52417     Signed-off-by: Christian Eggers <ceggers@gmx.de>
52419     I think this must be swapped (result may be equal).
52421 commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
52422 Author: Christian Eggers <ceggers@gmx.de>
52423 Date:   Wed May 21 22:12:00 2008 +0200
52425     USB: replace old swap_ with proper endianess conversion macros
52427     Signed-off-by: Christian Eggers <ceggers@gmx.de>
52428     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
52430 commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
52431 Author: Christian Eggers <ceggers@gmx.de>
52432 Date:   Wed May 21 21:29:10 2008 +0200
52434     Fix endianess conversion in usb_ohci.c
52436     Signed-off-by: Christian Eggers <ceggers@gmx.de>
52437     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
52439 commit 477434c63c2ea5baa5c6c4e43500786f436511ff
52440 Author: Sergei Poselenov <sposelenov@emcraft.com>
52441 Date:   Thu May 22 01:15:53 2008 +0200
52443     USB: add support for multiple PCI OHCI controllers
52445     Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
52446     In case of several PCI USB controllers on a board this variable
52447     specifys which controller to use.
52449     Also add USB support for sokrates board.
52451     See doc/README.generic_usb_ohci for details.
52453     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52454     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
52456 commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
52457 Author: Wolfgang Denk <wd@denx.de>
52458 Date:   Wed May 21 16:56:08 2008 +0200
52460     Fix some whitespace issues
52462     introduced by 53677ef18 "Big white-space cleanup."
52464     Signed-off-by: Wolfgang Denk <wd@denx.de>
52466 commit 4416603aeb06861b468b06a981e52c3ff805db7b
52467 Author: York Sun <yorksun@freescale.com>
52468 Date:   Mon May 12 14:36:39 2008 -0500
52470     Make ads5121 out-of-tree compiling safe
52472     Reuse the existing DIU driver in board/freescale/common.
52474     Signed-off-by: York Sun <yorksun@freescale.com>
52476 commit 0e1bad47cd345c76c91a64caf41011e431b62599
52477 Author: York Sun <yorksun@freescale.com>
52478 Date:   Mon May 5 10:20:01 2008 -0500
52480     Adding DIU support for Freescale 5121ADS
52482     Add DIU and cfb console support to FSL 5121ADS board.
52484     Use #define CONFIG_VIDEO in config file to enable fb console.
52486     Signed-off-by: York Sun <yorksun@freescale.com>
52488 commit a48ff68d235e671176f6b496c44246dbe5e0a93f
52489 Author: York Sun <yorksun@freescale.com>
52490 Date:   Mon May 5 10:20:00 2008 -0500
52492     Replace DPRINTF with debug
52494     Remove DPRINTF macro and replace it with generic debug macro.
52496     Signed-off-by: York Sun <yorksun@freescale.com>
52498 commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
52499 Author: York Sun <yorksun@freescale.com>
52500 Date:   Mon May 5 10:19:59 2008 -0500
52502     Move pixel clock setting to board file
52504     The clock divider has different format in 5121 and 8610. This patch moves it to
52505     board specific code.
52507     Signed-off-by: York Sun <yorksun@freescale.com>
52509 commit 53677ef18e25c97ac613349087c5cb33ae5a2741
52510 Author: Wolfgang Denk <wd@denx.de>
52511 Date:   Tue May 20 16:00:29 2008 +0200
52513     Big white-space cleanup.
52515     This commit gets rid of a huge amount of silly white-space issues.
52516     Especially, all sequences of SPACEs followed by TAB characters get
52517     removed (unless they appear in print statements).
52519     Also remove all embedded "vim:" and "vi:" statements which hide
52520     indentation problems.
52522     Signed-off-by: Wolfgang Denk <wd@denx.de>
52524 commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
52525 Author: Sergei Poselenov <sposelenov@emcraft.com>
52526 Date:   Thu May 8 17:46:23 2008 +0200
52528     socrates: fix second TSEC configuration (it is actually TSEC3)
52530     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52532 commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
52533 Author: Sergei Poselenov <sposelenov@emcraft.com>
52534 Date:   Thu May 8 14:17:08 2008 +0200
52536     Fixed reset for socrates
52538     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52540 commit e18575d5f589a62e19c70d471d4b4e27cad3af56
52541 Author: Sergei Poselenov <sposelenov@emcraft.com>
52542 Date:   Wed May 7 15:10:49 2008 +0200
52544     socrates: changes to support FDT
52546     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52547     Signed-off-by: Wolfgang Denk <wd@denx.de>
52549 commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
52550 Author: Sergei Poselenov <sposelenov@emcraft.com>
52551 Date:   Wed Apr 30 11:42:50 2008 +0200
52553     Initial support for "Socrates" board
52555     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
52557 commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
52558 Author: Yuri Tikhonov <yur@emcraft.com>
52559 Date:   Thu May 8 15:46:42 2008 +0200
52561     POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
52563     This way we become able to utilize the full post_log_word for POST
52564     activities (overwise, POST ECC, which has 0x8000 ID, could be
52565     erroneously treated as started in post_output_backlog() even if there
52566     was actually no POST ECC run (because of OCM POST failure, for
52567     example).
52569     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52571 commit 7845d49094c81321021b50a4dbb8864d2f3777e4
52572 Author: Yuri Tikhonov <yur@emcraft.com>
52573 Date:   Thu May 8 15:46:02 2008 +0200
52575     POST: mark OCM test as POST_STOP
52577     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
52579 commit 28a385065882d6cb6ac5f443311ff87887ed7c13
52580 Author: Yuri Tikhonov <yur@emcraft.com>
52581 Date:   Thu May 8 15:45:26 2008 +0200
52583     POST: add POST_STOP flag
52585     Don't run futher tests in case of a test fails that is marked as
52586     POST_STOP.
52588     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
52589     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52591 commit a525145d8110d15b4389d23c3ea8a78f22509d3f
52592 Author: Yuri Tikhonov <yur@emcraft.com>
52593 Date:   Thu May 8 15:44:16 2008 +0200
52595     POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
52597     Switch the OCM testid with the codec one. The reason is that current
52598     implementation requires the POST_ROM testid to fit into lower 16
52599     bits, and the codec test will never run with POST_ROM hopefully.
52601     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
52603 commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
52604 Author: Yuri Tikhonov <yur@emcraft.com>
52605 Date:   Thu May 8 15:43:28 2008 +0200
52607     lwmon5: enable OCM post test on lwmon5 board
52609     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
52611 commit 6e8ec682268493b8d098f99e17b1ce71b4448977
52612 Author: Yuri Tikhonov <yur@emcraft.com>
52613 Date:   Thu May 8 15:42:47 2008 +0200
52615     POST: OCM test added.
52617     Added OCM test to POST layer. This version runs before all other tests
52618     but doesn't yet interrupt post sequence on failure.
52620     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
52621     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52623 commit 6891260bdd935a382c95d9fa333922b0dfded68a
52624 Author: Yuri Tikhonov <yur@emcraft.com>
52625 Date:   Thu May 8 15:40:39 2008 +0200
52627     POST: typo fix
52629     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
52631 commit 727f63334676e760877d43bfb8f0e9331ac8b101
52632 Author: Hebbar <gururajakr@sanyo.co.in>
52633 Date:   Tue May 20 02:16:36 2008 -0700
52635     common/usb.c: fix incorrect escape sequence
52637     Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
52639 commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
52640 Author: York Sun <yorksun@freescale.com>
52641 Date:   Thu May 15 15:26:27 2008 -0500
52643     Fix 8313ERDB board configuration
52645     Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
52646     Correct TSEC1 vs TSEC2 assignment.
52647     Define ETHADDR and ETH1ADDR always.
52649     Signed-off-by: York Sun <yorksun@freescale.com>
52650     Signed-off-by: Timur Tabi <timur@freescale.com>
52652 commit 2c289e320dcfb3760e99cf1d765cb067194a1202
52653 Author: Jon Loeliger <jdl@freescale.com>
52654 Date:   Mon May 19 09:47:25 2008 -0500
52656     mpc86xx: Removed unused and unconfigured memory test code.
52658     Besides, other common code exists.
52660     Signed-off-by: Jon Loeliger <jdl@freescale.com>
52662 commit 180a90abdae72587c0f679edf8991455e559440d
52663 Author: Wolfgang Denk <wd@denx.de>
52664 Date:   Mon May 19 12:47:11 2008 +0200
52666     Release v1.3.3
52668     Update CHANGELOG for release.
52670     Signed-off-by: Wolfgang Denk <wd@denx.de>
52672 commit 16bedc661de0dae767b1377d8413373a3fbcfa79
52673 Author: Stefan Roese <sr@denx.de>
52674 Date:   Mon May 19 07:14:38 2008 +0200
52676     ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
52678     When SATA is selected (via jumper J6) we need to disable the first PCIe
52679     node in the device tree, so that Linux doesn't initialize it. Otherwise
52680     the Linux SATA driver will fail to detect the devices.
52682     The same goes the other way around too. So if PCIe is selected we need
52683     to disable the SATA node in the device tree.
52685     This is because PCIe port 0 and SATA on 460EX share the same pins
52686     (multiplexed) and we have to configure in U-Boot which peripheral is
52687     enabled.
52689     Signed-off-by: Stefan Roese <sr@denx.de>
52691 commit 3cc27b426aeefe2930f911692e9df3143fb2565f
52692 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52693 Date:   Sun May 18 19:09:58 2008 +0200
52695     i386: Fix multiple definitions of __show_boot_progress
52697     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52699 commit 311f3446930c1e64c12026c1cfd00500b05be52d
52700 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52701 Date:   Sun May 18 19:09:57 2008 +0200
52703     sc530_spunk: add missing SOBJS entry
52705     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52707 commit a559317143b4f95927b08cd388707e6f077e95fa
52708 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52709 Date:   Sun May 18 19:09:56 2008 +0200
52711     sc520_spunk: Fix flash
52713     flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
52714     flash.c:398: error: label at end of compound statement
52716     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52718 commit 91f221317af64191ee8caf303ea9305943158691
52719 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52720 Date:   Sun May 18 19:09:49 2008 +0200
52722     drivers/pcmcia: add missing i82365
52724     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52726 commit dd223944132f97ffa52977ea95e5a52428f5cc2f
52727 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52728 Date:   Sun May 18 19:09:47 2008 +0200
52730     i386/bootm: remove unused var
52732     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52734 commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
52735 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52736 Date:   Sun May 18 19:09:45 2008 +0200
52738     example/gitignore: update with all generated examples
52740     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52742 commit a38dc3ea8614f8b0c41e432b445a9959b9711295
52743 Author: Wolfgang Denk <wd@denx.de>
52744 Date:   Thu May 15 00:42:45 2008 +0200
52746     TQM8272: fix out-of-tree building
52748     ...and add to MAKEALL script
52750     Signed-off-by: Wolfgang Denk <wd@denx.de>
52752 commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
52753 Author: Wolfgang Denk <wd@denx.de>
52754 Date:   Wed May 14 23:34:53 2008 +0200
52756     environment: fix bug introduced by commit a8409f4f1ac8
52758     env_get_char is not a function, but a pointer to one.
52760     Signed-off-by: Wolfgang Denk <wd@denx.de>
52762 commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
52763 Author: Gary Jennejohn <garyj@denx.de>
52764 Date:   Wed May 14 13:39:22 2008 +0200
52766     ppc4xx: QUAD100HD: Allow the environment to be put into flash.
52768     After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect.  Also
52769     use a redundant environment.
52771     Signed-off-by: Gary Jennejohn <garyj@denx.de>
52773 commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
52774 Author: Wolfgang Denk <wd@denx.de>
52775 Date:   Wed May 14 13:55:30 2008 +0200
52777     Fix config files for out-of-tree building
52779     Several board/<...>/config.mk files include dynamically built (by
52780     the Makefile) config files but used the wrong file name of
52781         $(TOPDIR)/board/$(BOARDDIR)/config.tmp
52782     instead if the correct
52783         $(OBJTREE)/board/$(BOARDDIR)/config.tmp
52785     The bug is nasty because the build result is correct for the (normal)
52786     in-tree builds, and because 'sinclude' is used no errors get raised
52787     even for out-of-tree build tests. But out-of-tree builds use an
52788     incomplete and thus usually incorrect configuration...
52790     Signed-off-by: Wolfgang Denk <wd@denx.de>
52792 commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
52793 Author: Stefan Roese <sr@denx.de>
52794 Date:   Wed May 14 13:40:03 2008 +0200
52796     ppc4xx: Fix bogus Canyonlands config.mk
52798     This patch fixes the canyonlands config.mk file to enable correct
52799     out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
52801     Signed-off-by: Stefan Roese <sr@denx.de>
52803 commit fdd1247a66d788a3446244f6fde9955a93c26322
52804 Author: Stefan Roese <sr@denx.de>
52805 Date:   Wed May 14 10:32:32 2008 +0200
52807     ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
52809     Canyonlands has a file ddr2_fixed.c which needs special treatment when
52810     building in separate directory. It has to be linked to build directory
52811     otherwise it is not seen.
52813     Signed-off-by: Stefan Roese <sr@denx.de>
52815 commit a8409f4f1ac84c36273c1a1e341189662521bcfb
52816 Author: Wolfgang Denk <wd@denx.de>
52817 Date:   Wed May 14 12:22:49 2008 +0200
52819     environment: cleanup prototype declarations of env functions.
52821     Signed-off-by: Wolfgang Denk <wd@denx.de>
52823 commit cf39b07948015c480b72a6e732cf7d839aa93a9e
52824 Author: Wolfgang Denk <wd@denx.de>
52825 Date:   Wed May 14 12:21:48 2008 +0200
52827     linkstation_HGLAN: Fix out of tree building.
52829     Signed-off-by: Wolfgang Denk <wd@denx.de>
52831 commit 085551c05ca09e6c491ea11a1c6727a36776a545
52832 Author: Stefan Roese <sr@denx.de>
52833 Date:   Wed May 14 10:32:32 2008 +0200
52835     ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
52837     Canyonlands has a file ddr2_fixed.c which needs special treatment when
52838     building in separate directory. It has to be linked to build directory
52839     otherwise it is not seen.
52841     Signed-off-by: Stefan Roese <sr@denx.de>
52843 commit 1510b82d50615f344e89d42533e8224cce067dc0
52844 Author: Wolfgang Denk <wd@denx.de>
52845 Date:   Tue May 13 23:15:52 2008 +0200
52847     Makefile: fix "error: version_autogenerated.h: No such file or directory"
52849     Signed-off-by: Wolfgang Denk <wd@denx.de>
52851 commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
52852 Author: Stelian Pop <stelian@popies.net>
52853 Date:   Tue May 13 17:31:24 2008 +0200
52855     Cleanup nand_info[] declaration.
52857     The nand_info array is declared as extern in several .c files.
52858     Those days, nand.h contains a reference to the array, so there is
52859     no need to declare it elsewhere.
52861     Signed-off-by: Stelian Pop <stelian@popies.net>
52862     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52864 commit 70fab1908fc1734a403711eaabbef546bc4b77dc
52865 Author: Stefan Roese <sr@denx.de>
52866 Date:   Tue May 13 20:22:01 2008 +0200
52868     ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
52870     Signed-off-by: Stefan Roese <sr@denx.de>
52872 commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
52873 Author: Wolfgang Denk <wd@denx.de>
52874 Date:   Mon May 12 01:11:21 2008 +0200
52876     Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
52878     This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
52879     which broke many PowerPC boards.
52881 commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
52882 Author: Wolfgang Denk <wd@denx.de>
52883 Date:   Mon May 12 00:56:28 2008 +0200
52885     Revert "Avoid initrd and logbuffer area overlaps"
52887     This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
52888     which breaks building on all PPC boards that don't use a log buffer.
52890 commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
52891 Author: Nick Spence <nick.spence@freescale.com>
52892 Date:   Sat May 10 14:02:04 2008 -0700
52894     Fix offset calculation for multi-type legacy images.
52896     Calculation of tail was incorrect when size % 4 == 0.
52898     New code removes the conditional and does the same thing but with arithmetic
52900     Signed-off-by: Nick Spence <nick.spence@freescale.com>
52902 commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
52903 Author: Wolfgang Denk <wd@denx.de>
52904 Date:   Mon May 12 00:40:58 2008 +0200
52906     Revert "Change env_get_char from a global function ptr to a function."
52908     This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
52909     which is known to break booting from dataflash and NAND.
52911 commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
52912 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52913 Date:   Sun May 11 23:13:57 2008 +0200
52915     API: remove duplicate syscall check
52917     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52919 commit 67e3beb52c320b0a31cf030716c99392cde2d532
52920 Author: Stelian Pop <stelian@popies.net>
52921 Date:   Fri May 9 21:46:51 2008 +0200
52923     AT91: Cleanup unused config header file definitions.
52925     CONFIG_ENV_OVERWRITE is commented out in the config header files,
52926     so let's cleanup the files by removing the whole definition.
52928     Signed-off-by: Stelian Pop <stelian@popies.net>
52929     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52931 commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
52932 Author: Stelian Pop <stelian@popies.net>
52933 Date:   Thu May 8 14:52:34 2008 +0200
52935     Support AT91CAP9 revC CPUs
52937     The AT91CAP9 revC CPU has a few differences over the previous,
52938     revB CPU which was distributed in small quantities only (revA was
52939     an internal Atmel product only).
52941     The revC silicon needs a special initialisation sequence to
52942     switch from the internal (imprecise) RC oscillator to the
52943     external 32k clock.
52945     Signed-off-by: Stelian Pop <stelian@popies.net>
52946     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52948 commit 098b7b4b441b12c2a64dd517930f43c793542759
52949 Author: Stelian Pop <stelian@popies.net>
52950 Date:   Thu May 8 14:52:33 2008 +0200
52952     Use custom logo for Atmel boards
52954     This patch adds a custom vendor logo for the Atmel AT91 boards.
52956     Signed-off-by: Stelian Pop <stelian@popies.net>
52957     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52959 commit 761c70b80cdd3bead40146b96a8e713d6ae01632
52960 Author: Stelian Pop <stelian@popies.net>
52961 Date:   Thu May 8 14:52:32 2008 +0200
52963     AT91SAM9RLEK: hook up the ATMEL LCD driver
52965     This patch makes the necessary adaptations (PIO configurations and
52966     defines in config header file) to hook up the Atmel LCD driver to the
52967     AT91SAM9RLEK board.
52969     Signed-off-by: Stelian Pop <stelian@popies.net>
52970     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52972 commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
52973 Author: Stelian Pop <stelian@popies.net>
52974 Date:   Thu May 8 14:52:31 2008 +0200
52976     AT91SAM9263EK: hook up the ATMEL LCD driver
52978     This patch makes the necessary adaptations (PIO configurations and
52979     defines in config header file) to hook up the Atmel LCD driver to the
52980     AT91SAM9263EK board.
52982     Signed-off-by: Stelian Pop <stelian@popies.net>
52983     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52985 commit 820f2a958325061a446115f3035e48e4726b3390
52986 Author: Stelian Pop <stelian@popies.net>
52987 Date:   Thu May 8 14:52:30 2008 +0200
52989     AT91SAM9261EK: hook up the ATMEL LCD driver
52991     This patch makes the necessary adaptations (PIO configurations and
52992     defines in config header file) to hook up the Atmel LCD driver to the
52993     AT91SAM9261EK board.
52995     Signed-off-by: Stelian Pop <stelian@popies.net>
52996     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52998 commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
52999 Author: Stelian Pop <stelian@popies.net>
53000 Date:   Thu May 8 14:52:29 2008 +0200
53002     AT91CAP9ADK: hook up the ATMEL LCD driver
53004     This patch makes the necessary adaptations (PIO configurations and
53005     defines in config header file) to hook up the Atmel LCD driver to the
53006     AT91CAP9ADK board.
53008     Signed-off-by: Stelian Pop <stelian@popies.net>
53009     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53011 commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
53012 Author: Stelian Pop <stelian@popies.net>
53013 Date:   Fri May 9 21:57:18 2008 +0200
53015     Add ATMEL LCD driver
53017     This patch adds support for the ATMEL LCDC driver which is used on some
53018     AT91 and AVR platforms.
53020     Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
53021     AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
53023     Signed-off-by: Stelian Pop <stelian@popies.net>
53024     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53026 commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
53027 Author: Stelian Pop <stelian@popies.net>
53028 Date:   Thu May 8 18:52:25 2008 +0200
53030     AT91SAM9RLEK support
53032     This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
53033     board.
53035     Signed-off-by: Stelian Pop <stelian@popies.net>
53036     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53038 commit 8e429b3eee23927c1222679f6b6f53667b21595c
53039 Author: Stelian Pop <stelian@popies.net>
53040 Date:   Thu May 8 18:52:23 2008 +0200
53042     AT91SAM9263EK support
53044     This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
53045     board.
53047     Signed-off-by: Stelian Pop <stelian@popies.net>
53048     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53050 commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
53051 Author: Stelian Pop <stelian@popies.net>
53052 Date:   Thu May 8 20:52:22 2008 +0200
53054     AT91SAM9261EK support
53056     This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
53057     board.
53059     Signed-off-by: Stelian Pop <stelian@popies.net>
53060     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53062 commit 86c8c8a414988c50104a3b02c29f50af2be738c0
53063 Author: Stelian Pop <stelian@popies.net>
53064 Date:   Thu May 8 20:52:21 2008 +0200
53066     AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
53068     This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
53069     in order to cope with the changes in DataFlash partitionning scheme
53070     (cset c3a60cb3).
53072     Signed-off-by: Stelian Pop <stelian@popies.net>
53073     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53075 commit 96996ac25d5222611a8888968db6e53a6d3726da
53076 Author: Stelian Pop <stelian@popies.net>
53077 Date:   Thu May 8 20:52:20 2008 +0200
53079     AT91SAM9260EK: Normalize BOOTARGS
53081     This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
53082     DataFlash or from NAND), and gives to Linux a fully specified mtdparts
53083     variable.
53085     Signed-off-by: Stelian Pop <stelian@popies.net>
53086     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53088 commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
53089 Author: Stelian Pop <stelian@popies.net>
53090 Date:   Thu May 8 20:52:19 2008 +0200
53092     AT91SAM9260EK: Normalize SPI timings
53094     This patch changes the SPI timings to closely match the ones
53095     used by the Linux kernel and the Atmel's own bootstrap project.
53097     Signed-off-by: Stelian Pop <stelian@popies.net>
53098     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53100 commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
53101 Author: Stelian Pop <stelian@popies.net>
53102 Date:   Thu May 8 20:52:18 2008 +0200
53104     AT91SAM9260EK: Handle 8 or 16 bit NAND
53106     The Atmel boards can handle 8 or 16 bit NAND memories. This patch
53107     makes the support configurable in the board config header file
53108     (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
53110     Signed-off-by: Stelian Pop <stelian@popies.net>
53111     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53113 commit ab52640fc01624e208424e527af0b7b3a5a65a12
53114 Author: Stelian Pop <stelian@popies.net>
53115 Date:   Thu May 8 20:52:17 2008 +0200
53117     AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
53119     This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
53120     in order to cope with the changes in DataFlash partitionning scheme
53121     (cset c3a60cb3).
53123     Signed-off-by: Stelian Pop <stelian@popies.net>
53124     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53126 commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
53127 Author: Stelian Pop <stelian@popies.net>
53128 Date:   Thu May 8 20:52:16 2008 +0200
53130     AT91CAP9ADK: Normalize BOOTARGS
53132     This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
53133     DataFlash or from NAND), and gives to Linux a fully specified mtdparts
53134     variable.
53136     Signed-off-by: Stelian Pop <stelian@popies.net>
53137     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53139 commit 93da48b910511911ce110656e17ed733c8ac4c45
53140 Author: Stelian Pop <stelian@popies.net>
53141 Date:   Thu May 8 20:52:15 2008 +0200
53143     AT91CAP9ADK: Normalize SPI timings
53145     This patch changes the SPI timings to closely match the ones
53146     used by the Linux kernel and the Atmel's own bootstrap project.
53148     Signed-off-by: Stelian Pop <stelian@popies.net>
53149     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53151 commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
53152 Author: Stelian Pop <stelian@popies.net>
53153 Date:   Thu May 8 20:52:14 2008 +0200
53155     AT91CAP9ADK: Handle 8 or 16 bit NAND
53157     The Atmel boards can handle 8 or 16 bit NAND memories. This patch
53158     makes the support configurable in the board config header file
53159     (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
53161     Signed-off-by: Stelian Pop <stelian@popies.net>
53162     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53164 commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
53165 Author: Stelian Pop <stelian@popies.net>
53166 Date:   Thu May 8 20:52:13 2008 +0200
53168     Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
53170     All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
53171     below avoids the duplication of u-boot.lds by putting the file in the
53172     cpu directory instead of the board one.
53174     Signed-off-by: Stelian Pop <stelian@popies.net>
53175     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53177 commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
53178 Author: Stelian Pop <stelian@popies.net>
53179 Date:   Thu May 8 20:52:12 2008 +0200
53181     Add proper copyright notices in Atmel boards Makefiles
53183     The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
53184     copyright notice. This patch adds the missing pieces.
53186     Signed-off-by: Stelian Pop <stelian@popies.net>
53187     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53189 commit e817a042cef6164bf26fee86f90326f2ec9e6745
53190 Author: Stelian Pop <stelian@popies.net>
53191 Date:   Thu May 8 20:52:11 2008 +0200
53193     Add copyright information in Atmel boards partition.c
53195     When Ulf did the dataflash.c cleanup, he didn't add his copyright on
53196     the new created files. This patch fixes the problem.
53198     Signed-off-by: Stelian Pop <stelian@popies.net>
53199     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53201 commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
53202 Author: Stelian Pop <stelian@popies.net>
53203 Date:   Thu May 8 20:52:10 2008 +0200
53205     Update origin and copyright information in arch-at91sam9 header files
53207     When doing the AT91CAP9/AT91SAM9 port, a number of header files were
53208     copied from the Linux kernel sources. This patch explicitly specifies
53209     this origin for all the copied headers, and for those missing copyright
53210     information, adds it.
53212     Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
53213     in the latest kernel sources by 'at91sam9_smc.h'.
53215     The copyright information has been confirmed by the AT91 Linux kernel
53216     maintainer, Andrew Victor <avictor.za@gmail.com>.
53218     Signed-off-by: Stelian Pop <stelian@popies.net>
53219     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53221 commit 79dd1712689d6a5031d7cbff54957049680751c7
53222 Author: Markus Klotzbücher <mk@denx.de>
53223 Date:   Thu May 8 16:00:55 2008 +0200
53225     ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
53227     When using dhcp/bootp the "netmask" environment variable is not set
53228     because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
53229     desireable, so the following patch adds this this option to the board
53230     config.
53232     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
53233     Signed-off-by: Stefan Roese <sr@denx.de>
53235 commit 869d14b4cc2e47de2ddcb117bad0407a44436684
53236 Author: Stefan Roese <sr@denx.de>
53237 Date:   Sat May 10 10:30:36 2008 +0200
53239     ppc4xx: Update Makalu defconfig to use device-tree booting as default
53241     This patch reworks the default environment on Makalu. Now "net_nfs" for
53242     example uses the device-tree style booting formerly know as "net_nfs_fdt".
53243     Also the addresses in RAM were changed because of the new image booting
53244     support, which check for image overwriting. So the addresses needed to
53245     get adjusted.
53247     Signed-off-by: Stefan Roese <sr@denx.de>
53249 commit f3612a7b199cab3942f60d9c1392eb39d58cc699
53250 Author: Becky Bruce <bgill@freescale.com>
53251 Date:   Wed May 7 13:28:16 2008 -0500
53253     PPC: fix map_physmem build warning
53255     map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
53256     enabled.  This quiets the warning.
53258     Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
53260 commit 36f32675f40292002ee1fed252c180a43022d2d4
53261 Author: Becky Bruce <bgill@freescale.com>
53262 Date:   Wed May 7 13:24:57 2008 -0500
53264     Update pci code to use phys_addr_t
53266     Physical addrs need to be represented by phys_addr_t, not
53267     unsigned long.  Otherwise, systems that use CONFIG_PHYS_64BIT
53268     are going to fail mightily.
53270     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
53272 commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
53273 Author: Nick Spence <nick.spence@freescale.com>
53274 Date:   Thu May 8 22:32:22 2008 -0700
53276     Support legacy multi-type images without FDT section.
53278     This patch enables legacy multi-type images containing only a Linux kernel
53279     and root file system to be loaded, maintaining compatibility with previous
53280     versions of u-boot.
53282     This is required when using old image files such as a Linux 2.4 kernel /
53283     filesystem.
53285     Signed-off-by: Nick Spence <nick.spence@freescale.com>
53286     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
53288 commit 881031d9732783b7aeae2198fc7eb480ae8974a6
53289 Author: Wolfgang Denk <wd@denx.de>
53290 Date:   Sat May 10 00:38:02 2008 +0200
53292     Update CHANGELOG.
53294     Signed-off-by: Wolfgang Denk <wd@denx.de>
53296 commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
53297 Author: Wolfgang Denk <wd@denx.de>
53298 Date:   Sat May 10 00:36:09 2008 +0200
53300     post/cpu/ppc4xx/Makefile: line length cleanup
53302     Signed-off-by: Wolfgang Denk <wd@denx.de>
53304 commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
53305 Author: Stelian Pop <stelian@popies.net>
53306 Date:   Thu May 8 22:52:09 2008 +0200
53308     Fix @ -> <at> substitution
53310     When applying the AT91CAP9 patches upstream, something transformed
53311     the '@' character into the ' <at> ' sequence.
53313     The patch below restores the original form in all the places where
53314     it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
53315     were copied from AT91CAP9, and a couple of other files where the
53316     ' <at> ' sequence was present).
53318     Signed-off-by: Stelian Pop <stelian@popies.net>
53320 commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
53321 Author: Stelian Pop <stelian@popies.net>
53322 Date:   Thu May 8 22:52:10 2008 +0200
53324     Update origin and copyright information in arch-at91sam9 header files
53326     When doing the AT91CAP9/AT91SAM9 port, a number of header files were
53327     copied from the Linux kernel sources. This patch explicitly specifies
53328     this origin for all the copied headers, and for those missing copyright
53329     information, adds it.
53331     Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
53332     in the latest kernel sources by 'at91sam9_smc.h'.
53334     The copyright information has been confirmed by the AT91 Linux kernel
53335     maintainer, Andrew Victor <avictor.za@gmail.com>.
53337     Signed-off-by: Stelian Pop <stelian@popies.net>
53339 commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
53340 Author: Stelian Pop <stelian@popies.net>
53341 Date:   Thu May 8 22:52:11 2008 +0200
53343     Add copyright information in Atmel boards partition.c
53345     When Ulf did the dataflash.c cleanup, he didn't add his copyright on
53346     the new created files. This patch fixes the problem.
53348     Signed-off-by: Stelian Pop <stelian@popies.net>
53350 commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
53351 Author: Guennadi Liakhovetski <lg@denx.de>
53352 Date:   Thu May 8 10:09:27 2008 +0200
53354     mx31ads: fix 32kHz clock handling
53356     According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
53357     oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
53358     Also fix a typo when verifying a jumper configuration. While at it, make
53359     two needlessly global functions static.
53361     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
53363 commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
53364 Author: Marian Balakowicz <m8@semihalf.com>
53365 Date:   Wed May 7 13:10:04 2008 +0200
53367     Avoid initrd and logbuffer area overlaps
53369     Add logbuffer to reserved LMB areas to prevent initrd allocation
53370     from overlaping with it.
53372     Make sure to use correct logbuffer base address.
53374     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53376 commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
53377 Author: Marian Balakowicz <m8@semihalf.com>
53378 Date:   Wed May 7 13:08:54 2008 +0200
53380     ppc: Cleanup get_effective_memsize() use
53382     Removed duplicated effective memory size calculation code.
53384     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53386 commit 273c37d843d5b581090378016cd12dd9c586907b
53387 Author: Marian Balakowicz <m8@semihalf.com>
53388 Date:   Wed May 7 09:03:53 2008 +0200
53390     Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
53392     Recent modifcations to LOGBUFFER handling code were incorrecly
53393     introduced to fit_check_kernel() routine during
53394     "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
53395     commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
53397     This patch cleans up this merge issue.
53399     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53401 commit bc11756daff89a3de09ca80adac962b88cf06e6e
53402 Author: Grant Erickson <gerickson@nuovations.com>
53403 Date:   Tue May 6 20:16:15 2008 -0700
53405     Propagate Error Status to the Shell on fw_printenv Errors
53407     Changed implementation such that fw_printenv returns failure status
53408     when one or more specified variables do not exist or when incorrect
53409     command syntax is used.
53411     This aids scripting fw_printenv such that the script can key of the
53412     return status rather than relying on standard error "scraping".
53414     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
53415     Signed-off-by: Wolfgang Denk <wd@denx.de>
53417 commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
53418 Author: Grant Erickson <gerickson@nuovations.com>
53419 Date:   Tue May 6 16:18:00 2008 -0700
53421     Fix Compilation Errors with 'tools/env/fw_printenv'
53423     In the current top-of-tree, 1.3.3.-rc2, the optional tool
53424     'tools/env/fw_printenv' fails to compile for two reasons:
53426     1) The header watchdog.h cannot be found.
53427     2) The header zlib.h is picked up from the tool chain rather than the
53428        project causing a prototype conflict for crc32.
53430     This patch addresses both of these issues.
53432     Platforms Tested On:
53433     - AMCC "Kilauea"
53435     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
53437 commit 597f6c26a18b389903a64692bacbf9a1ca69355b
53438 Author: James Yang <James.Yang@freescale.com>
53439 Date:   Mon May 5 10:22:53 2008 -0500
53441     Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
53443     When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
53444     work before relocating to RAM because command history is written into
53445     a global array that is not writable before relocation.  This patch
53446     defers to the no-editing and no-history code in readline_into_buffer()
53447     if it is called before relocation.
53449     Signed-off-by: James Yang <James.Yang@freescale.com>
53450     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53452 commit 726c0f1e5f108dccea052965123b95837d2bd402
53453 Author: Detlev Zundel <dzu@denx.de>
53454 Date:   Mon May 5 16:11:22 2008 +0200
53456     cosmetic: Adjust coding style for switch statements to be consistent
53458     Signed-off-by: Detlev Zundel <dzu@denx.de>
53460 commit 574b319512b13e10800f0045e39b993f4ca25e42
53461 Author: Detlev Zundel <dzu@denx.de>
53462 Date:   Mon May 5 16:11:21 2008 +0200
53464     Fix disk type output in disk/part.c
53466     Signed-off-by: Detlev Zundel <dzu@denx.de>
53468 commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
53469 Author: Vlad Lungu <vlad.lungu@windriver.com>
53470 Date:   Mon May 5 14:20:03 2008 +0300
53472     Mail address change, documentation modified
53474     Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
53476 commit 4d49b28038e2819088e8356a77212fc95a89ce5a
53477 Author: Michal Simek <monstr@monstr.eu>
53478 Date:   Sun May 4 15:42:41 2008 +0200
53480     microblaze: Repare intc handling
53482     Signed-off-by: Michal Simek <monstr@monstr.eu>
53484 commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
53485 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53486 Date:   Sun May 4 15:17:52 2008 +0200
53488     include/gitignore: update to all architectures
53490     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53492 commit 1df368aed3b8bc240fe1595d290b0e91b22961da
53493 Author: Marcel Ziswiler <marcel@ziswiler.com>
53494 Date:   Mon May 5 02:12:06 2008 +0200
53496     ide: Remove spurious second include of io.h
53498     Removed the second include, with all the #ifdef around as suggested by Wolfgang.
53500     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
53502 commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
53503 Author: Adrian Filipi <adrian.filipi@eurotech.com>
53504 Date:   Tue May 6 16:46:37 2008 -0400
53506     Fix some typos
53508     This patch fixes three typos.
53509     The first is a repetition of CONFIG_CMD_BSP.
53510     The second makes the #endif comment match its #if.
53511     The third is a spelling error.
53513     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
53515 commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
53516 Author: Grant Erickson <gerickson@nuovations.com>
53517 Date:   Sun May 4 16:45:01 2008 -0700
53519     Recognize 'powerpc' As an Alias for IH_ARCH_PPC
53521     Add support for the recognition of 'powerpc' as an alias for the PowerPC
53522     architecture type since Linux is already trending in that direction,
53523     preferring 'powerpc' to 'ppc'.
53525     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
53527 commit f5a24259190c388c2527bdc49fee34577d862cc7
53528 Author: Wheatley Travis <Travis.Wheatley@freescale.com>
53529 Date:   Fri May 2 13:35:15 2008 -0700
53531     7450 and 86xx L2 cache invalidate bug corrections
53533     The 7610 and related parts have an L2IP bit in the L2CR that is
53534     monitored to signal when the L2 cache invalidate is complete whereas the
53535     7450 and related parts utilize L2I for this purpose. However, the
53536     current code does not account for this difference. Additionally the 86xx
53537     L2 cache invalidate code used an "andi" instruction where an "andis"
53538     instruction should have been used.
53540     This patch addresses both of these bugs.
53542     Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
53543     Acked-By: Jon Loeliger <jdl@freescale.com>
53545 commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
53546 Author: Wolfgang Denk <wd@denx.de>
53547 Date:   Fri May 9 10:16:13 2008 +0200
53549     Avoid infinite loop "Generating include/autoconf.mk"
53551     Fix a bogus circular dependency that caused an infinite loop of
53552     "Generating include/autoconf.mk" again and again.
53554     Signed-off-by: Wolfgang Denk <wd@denx.de>
53556 commit 567fb852178dbf59529d7301620a3f3732a4b02d
53557 Author: Stelian Pop <stelian@popies.net>
53558 Date:   Thu May 8 22:52:09 2008 +0200
53560     Fix @ -> <at> substitution
53562     When applying the AT91CAP9 patches upstream, something transformed
53563     the '@' character into the ' <at> ' sequence.
53565     The patch below restores the original form in all the places where
53566     it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
53567     were copied from AT91CAP9, and a couple of other files where the
53568     ' <at> ' sequence was present).
53570     Signed-off-by: Stelian Pop <stelian@popies.net>
53571     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53573 commit 73ccb3410a0785593cda7aee455dfc51f790e281
53574 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
53575 Date:   Mon Apr 28 14:04:32 2008 +0200
53577     ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
53579     Signed-off-by: Gary Jennejohn <garyj@denx.de>
53580     Signed-off-by: Stefan Roese <sr@denx.de>
53582 commit ef2642625cbfb1c3695e3478d08ae515052a4950
53583 Author: Stefan Roese <sr@denx.de>
53584 Date:   Thu May 8 11:10:46 2008 +0200
53586     ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
53588     Signed-off-by: Stefan Roese <sr@denx.de>
53590 commit a00eccfebc954ad9485161efeca7d9aaf626d530
53591 Author: Stefan Roese <sr@denx.de>
53592 Date:   Thu May 8 11:05:15 2008 +0200
53594     ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
53596     This patch adds fdt (flattened device tree) support to all remaining AMCC
53597     eval boards. Most newer boards already support device tree. With this patch,
53598     all AMCC boards now enable device tree passing from U-Boot to Linux
53599     arch/powerpc kernels.
53601     Signed-off-by: Stefan Roese <sr@denx.de>
53603 commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
53604 Author: Stefan Roese <sr@denx.de>
53605 Date:   Thu May 8 11:01:09 2008 +0200
53607     ppc4xx: Add weak default ft_board_setup() routine
53609     This patch adds a default ft_board_setup() routine to the 4xx fdt code.
53610     This routine is defined as weak and can be overwritten by a board specific
53611     one if needed.
53613     Signed-off-by: Stefan Roese <sr@denx.de>
53615 commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
53616 Author: Stefan Roese <sr@denx.de>
53617 Date:   Thu May 8 10:48:58 2008 +0200
53619     ppc4xx: acadia: Add fdt support and fix section overlap problem
53621     This patch adds fdt (flattened device tree) support to the AMCC
53622     Acadia eval board. This increases the image size and it doesn't
53623     fit anymore into 256kByte. Since we didn't want to remove features
53624     from the configuration, we decided to increase the U-Boot image size
53625     (add one flash sector).
53627     Also changed the default environment definition to make it
53628     independent of such changes.
53630     Signed-off-by: Stefan Roese <sr@denx.de>
53632 commit 4adb3023de75bc150f088c8935db340930ad38c8
53633 Author: Ira Snyder <iws@ovro.caltech.edu>
53634 Date:   Tue Apr 29 11:18:54 2008 -0700
53636     ppc4xx: Add device tree support to AMCC Yosemite
53638     Add support for booting with a device tree blob. This is needed to boot
53639     ARCH=powerpc kernels. Also add support for setting the eth0 mac address
53640     via the ethaddr variable.
53642     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
53643     Signed-off-by: Stefan Roese <sr@denx.de>
53645 commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
53646 Author: Dave Mitchell <dmitchell@amcc.com>
53647 Date:   Wed May 7 09:00:23 2008 -0700
53649     ppc4xx: Fix typos in 460GT/EX FBDV array
53651     Corrected two typos in the 460GT/EX FBDV array.
53653     Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
53654     Signed-off-by: Stefan Roese <sr@denx.de>
53656 commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
53657 Author: Andy Fleming <afleming@freescale.com>
53658 Date:   Wed May 7 16:54:31 2008 -0500
53660     85xx: Limit CPU2 workaround to parts that have the errata
53662     Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
53663     Signed-off-by: Andy Fleming <afleming@freescale.com>
53665 commit a5fe514e8ace564300d2c1d73846ddff49654243
53666 Author: Lee Nipper <lee.nipper@freescale.com>
53667 Date:   Fri Apr 25 15:44:45 2008 -0500
53669     mpc83xx: system performance settings for MPC8349EMDS.
53671     These same settings are used on MPC8349ITX, and
53672     improve performance on MPC8349EMDS.
53674     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
53675     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
53677 commit 49387dba910e485640b575e920ee463b7e611dc3
53678 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53679 Date:   Tue May 6 13:22:52 2008 +0900
53681     [MIPS] cpu/mips/cache.S: Fix build warning
53683     Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
53684     warns illegal global symbol references by bal (and jal also) instruction.
53685     This does not happen with the latest binutils v2.18.
53687     Here's an example on gth2_config:
53689     mips_4KC-gcc  -D__ASSEMBLY__ -g  -Os   -D__KERNEL__ -DTEXT_BASE=0x90000000 -I/home/skuribay/devel/u-boot.git/include -fno-builtin -ffreestanding -nostdinc -isy
53690     stem /opt/eldk311/usr/bin/../lib/gcc-lib/mips-linux/3.3.3/include -pipe  -DCONFIG_MIPS -D__MIPS__ -G 0 -mabicalls -fpic -pipe -msoft-float -march=4kc -mtune=4k
53691     c -EB -c -o cache.o cache.S
53692     cache.S: Assembler messages:
53693     cache.S:243: Warning: Pretending global symbol used as branch target is local.
53694     cache.S:250: Warning: Pretending global symbol used as branch target is local.
53696     In principle, gas might be sensitive to global symbol references in PIC
53697     code because they should be processed through GOT (global offset table).
53698     But if `bal' instruction is used, it results in PC-based offset jump.
53699     This is the cause of this warning.
53701     In practice, we know it doesn't matter whether PC-based reference or GOT-
53702     based. As for this case, both will work before/after relocation. But let's
53703     fix the code.
53705     This patch explicitly sets up a target address, then jump there.
53706     Here's an example of disassembled code with/without this patch.
53708      90000668:       1485ffef        bne     a0,a1,90000628 <mips_cache_reset+0x20>
53709      9000066c:       ac80fffc        sw      zero,-4(a0)
53710      90000670:       01402821        move    a1,t2
53711     -90000674:       0411ffba        bal     90000560 <mips_init_icache>
53712     -90000678:       01803021        move    a2,t4
53713     -9000067c:       01602821        move    a1,t3
53714     -90000680:       0411ffcc        bal     900005b4 <mips_init_dcache>
53715     -90000684:       01a03021        move    a2,t5
53716     -90000688:       03000008        jr      t8
53717     -9000068c:       00000000        nop
53718     +90000674:       01803021        move    a2,t4
53719     +90000678:       8f8f83ec        lw      t7,-31764(gp)
53720     +9000067c:       01e0f809        jalr    t7
53721     +90000680:       00000000        nop
53722     +90000684:       01602821        move    a1,t3
53723     +90000688:       01a03021        move    a2,t5
53724     +9000068c:       8f8f81e0        lw      t7,-32288(gp)
53725     +90000690:       01e0f809        jalr    t7
53726     +90000694:       00000000        nop
53727     +90000698:       03000008        jr      t8
53728     +9000069c:       00000000        nop
53730     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53732 commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
53733 Author: Vlad Lungu <vlad.lungu@windriver.com>
53734 Date:   Mon May 5 14:04:00 2008 +0300
53736     Allow building mips versions with ELDK 3.1.1
53738     .gpword works only with local symbols on certain binutils versions
53740     Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
53742 commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
53743 Author: Wolfgang Denk <wd@denx.de>
53744 Date:   Mon May 5 12:52:36 2008 +0200
53746     MAKEALL: add inka4x0 board
53748     Signed-off-by: Wolfgang Denk <wd@denx.de>
53750 commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
53751 Author: Wolfgang Denk <wd@denx.de>
53752 Date:   Sun May 4 21:34:23 2008 +0200
53754     kb9202 board: fix build problem.
53756     Signed-off-by: Wolfgang Denk <wd@denx.de>
53758 commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
53759 Author: Wolfgang Denk <wd@denx.de>
53760 Date:   Sun May 4 12:10:33 2008 +0200
53762     Prepare for v1.3.3-rc3
53764     Update ChNAGELOG, minor white space cleanup.
53766     Signed-off-by: Wolfgang Denk <wd@denx.de>
53768 commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
53769 Author: Wolfgang Denk <wd@denx.de>
53770 Date:   Sun May 4 00:35:15 2008 +0200
53772     drivers/net/tsec.c: Fix typo.
53774     Signed-off-by: Wolfgang Denk <wd@denx.de>
53776 commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
53777 Author: Mike Frysinger <vapier@gentoo.org>
53778 Date:   Fri May 2 21:45:12 2008 -0400
53780     version_autogenerated.h: use printf rather than echo -n
53782     Some systems are dumb and do not implement the -n flag to echo (like OS X).
53783     Convert the Makefile to use printf as this should work everywhere.
53785     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53786     Signed-off-by: Wolfgang Denk <wd@denx.de>
53788 commit 4acc2a108ad0a669165924704a6cb083f9138242
53789 Author: Mike Frysinger <vapier@gentoo.org>
53790 Date:   Fri May 2 18:17:50 2008 -0400
53792     fix building when saveenv is disabled in some setups
53794     If you enable environment in the flash, but disable the embedded
53795     option, and you disable the saveenv command, then the #if nested
53796     logic will trigger a compile failure:
53797     env_flash.c: In function 'env_relocate_spec':
53798     env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
53799     The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
53801     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53803 commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
53804 Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
53805 Date:   Fri May 2 16:10:04 2008 -0400
53807     SBC8548: fix address mask to allow 64M flash
53809     Fix incorrect mask to enable all 64MB of onboard flash.
53810     Previously U-Boot incorrectly mapped only 8MB of flash, this
53811     patch correctly maps all the available flash.
53813     Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
53815 commit 3648085c464c8c22ef76fab006ca4344d3796124
53816 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53817 Date:   Fri May 2 19:48:56 2008 +0200
53819     qemu_mips: add README
53821     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53823 commit 6fdd002689190a0022c7b3dbab37fcba724580ce
53824 Author: Marcel Ziswiler <marcel@ziswiler.com>
53825 Date:   Fri May 2 02:35:59 2008 +0200
53827     Fix misspelled comment
53829     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
53831 commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
53832 Author: Mike Frysinger <vapier@gentoo.org>
53833 Date:   Thu May 1 04:13:05 2008 -0400
53835     mkimage: make mmap() checks consistent
53837     The mmap() related code is full of inconsistent casts/constants when
53838     it comes to error checking, and may break when building on some
53839     systems (like ones that do not implicitly define the caddr_t type).
53840     Let's just avoid the whole mess by writing the code nice and clean in
53841     the first place.
53843     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53845 commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
53846 Author: Marcel Ziswiler <marcel@ziswiler.com>
53847 Date:   Thu May 1 09:05:34 2008 +0200
53849     Fix defined but not used build warning
53851     - warning: 'srom' defined but not used
53853     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
53855 commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
53856 Author: Marcel Ziswiler <marcel@ziswiler.com>
53857 Date:   Thu May 1 09:05:26 2008 +0200
53859     Fix implicit declaration build warnings
53861     - warning: implicit declaration of function â€˜serial_initialize’
53863     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
53865 commit 9acde129cc3f9c1b3bc11a821480dd446774d618
53866 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
53867 Date:   Tue Apr 29 19:18:32 2008 +0200
53869     TSEC: add config options for VSC8601 RGMII PHY
53871     The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
53872     and Tx clock lines. They are configured using 2 bits in extended
53873     register 0x17.
53874     Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
53875     been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
53877     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
53878     Acked-by: Andy Fleming <afleming@freescale.com>
53879     Acked-by: Ben Warren <biggerbadderben@gmail.com>
53880     --
53882      drivers/net/tsec.c |    6 ++++++
53883      drivers/net/tsec.h |    3 +++
53884      2 files changed, 9 insertions(+), 0 deletions(-)
53886 commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
53887 Author: Wolfgang Denk <wd@denx.de>
53888 Date:   Sat May 3 23:07:15 2008 +0200
53890     Revert "ColdFire: Get information from the correct GCC"
53892     This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
53893     (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
53895 commit c4e5f52a58d278eebb87f476e353972c5dacea40
53896 Author: Wolfgang Denk <wd@denx.de>
53897 Date:   Sat May 3 22:25:00 2008 +0200
53899     config.mk: use correct (cross) compiler
53901     Some config.mk files reference $(CC) to test for specific tool chain
53902     features, so make sure $(CC) gets set before including any such
53903     config files.
53905     This patch replaces commit b7166e05a5 ("ColdFire: Get information from
53906     the correct GCC").
53908     Signed-off-by: Wolfgang Denk <wd@denx.de>
53910 commit 27c38689d0cfde0e444239345f97b5eecc9f4067
53911 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53912 Date:   Thu May 1 02:13:44 2008 +0200
53914     pxa: fix previous definition on cpu init
53916     start.S:183:1: warning: "ICMR" redefined
53917     In file included from start.S:33:
53918     include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
53919     start.S:187:1: warning: "RCSR" redefined
53920     ...
53922     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53924 commit 6d12e697de794d700767f22f950e3026ccf4daf6
53925 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53926 Date:   Thu May 1 02:13:43 2008 +0200
53928     pxa: fix pcmcia operation on 'i' may be undefined
53930     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53931     Signed-off-by: Wolfgang Denk <wd@denx.de>
53933 commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
53934 Author: Kumar Gala <galak@kernel.crashing.org>
53935 Date:   Wed Apr 30 16:24:35 2008 -0500
53937     MPC8610HPCD: Drop -O2 from the build flags
53939     Make the flags use -Os like all other boards
53941     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53943 commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
53944 Author: Stefan Roese <sr@denx.de>
53945 Date:   Wed Apr 30 15:50:39 2008 +0200
53947     RTC: Fix month offset by one problem in M41T62 RTC driver
53949     This patch fixes a problem with the month being read and written
53950     incorrectly (offset by one). This only gets visible by also using
53951     the Linux driver (rtc-m41t80).
53953     Tested on AMCC Canyonlands.
53955     Signed-off-by: Stefan Roese <sr@denx.de>
53957 commit 141ba1cad8e6598a2466e7e2976c6a12285df619
53958 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53959 Date:   Sat May 3 13:51:44 2008 +0900
53961     [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
53963     Current trick to pick up GNU assembler minor version uses a dot(.) as a
53964     delimiter, and take the second field to obtain minor version number. But
53965     as can be expected, this doesn't work with a version string which has
53966     dots more than needs.
53968     Here's an example:
53970     $ mips-linux-gnu-as --version | grep 'GNU assembler'
53971     GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
53972     $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
53973     2-129) 2
53974     $
53976     This patch restricts the version format to 2.XX.XX... This will work
53977     in most cases.
53979     $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
53980     2.18.50.20080215
53981     $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
53982     18
53983     $
53985     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53987 commit ea638951acead7f1086c908c0b9f086beab82a22
53988 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53989 Date:   Sat May 3 13:51:28 2008 +0900
53991     [MIPS] cpu/mips/cache.S: Add dcache_enable
53993     Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
53994     "allow ports to override bootelf behavior") requires ports to have this
53995     function.
53997     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
53998     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54000 commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
54001 Author: Wolfgang Denk <wd@denx.de>
54002 Date:   Thu May 1 21:30:16 2008 +0200
54004     onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
54006     Onenand needs a version of memcpy() which performs 16 bit accesses
54007     only; make sure the name does not conflict with the standard
54008     function.
54010     Signed-off-by: Wolfgang Denk <wd@denx.de>
54012 commit 12bc4e94251c369c529ffa505cf58b148c372f7f
54013 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54014 Date:   Wed Apr 30 22:38:17 2008 +0200
54016     cmd_nand: fix warning: str2long ncompatible pointer type
54018     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54020 commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
54021 Author: Timur Tabi <timur@freescale.com>
54022 Date:   Fri Apr 4 11:16:11 2008 -0500
54024     Fix calculation of I2C clock for some 86xx chips
54026     Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
54027     There is no pattern that can be used to determine which chips use which
54028     frequency, so the only way to determine is to look up the actual SOC
54029     designation and use the right value for that SOC.
54031     Signed-off-by: Timur Tabi <timur@freescale.com>
54033 commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
54034 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
54035 Date:   Wed Apr 30 12:11:19 2008 -0500
54037     ColdFire: Fix ethernet hang issue for mcf547x_8x
54039     The ethernet hang is caused by receiving buffer in DRAM is not
54040     yet ready due to access cycles require longer time in DRAM.
54041     Relocate DMA buffer descriptors from DRAM to internal SRAM.
54043     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
54045 commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
54046 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
54047 Date:   Wed Apr 30 12:10:47 2008 -0500
54049     ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
54051     Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
54052     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
54054 commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
54055 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
54056 Date:   Wed Apr 30 12:10:23 2008 -0500
54058     ColdFire: Get information from the correct GCC
54060     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
54061     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
54063 commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
54064 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
54065 Date:   Wed Apr 30 18:02:59 2008 +0200
54067     Fix warning in env_nand.c if compiled for DaVinci Schmoogie
54069     Fix warnings
54071     nv_nand.c: In function 'saveenv':
54072     env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
54073     env_nand.c: In function 'env_relocate_spec':
54074     env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
54076     if compiled for davinci_schmoogie_config.
54078     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
54079     Ack by: Sergey Kubushyn <ksi@koi8.net>
54081 commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
54082 Author: Anatolij Gustschin <agust@denx.de>
54083 Date:   Wed Apr 30 13:34:40 2008 +0200
54085     Fix warnings while compiling net/net.c for MPC8610HPCD board
54087     MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
54088     causing overriding default -Os option. New gcc (ver. 4.2.2)
54089     produces warnings while compiling net/net.c file with -O2
54090     option. The patch is an attempt to fix this.
54092     Signed-off-by: Anatolij Gustschin <agust@denx.de>
54094 commit 58b575e575c25fdf8c88141e145db201f3092149
54095 Author: Sascha Laue <Sascha.Laue@gmx.biz>
54096 Date:   Wed Apr 30 15:23:38 2008 +0200
54098     lwmon5: fix offset error in sysmon0 POST
54100     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
54101     Signed-off-by: Wolfgang Denk <wd@denx.de>
54103 commit e7419b243a373de4ee042f7d4f45f66de787240d
54104 Author: Sascha Laue <Sascha.Laue@gmx.biz>
54105 Date:   Wed Apr 30 15:16:35 2008 +0200
54107     lwmon5: fix manual merge error in POST
54109     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
54111 commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
54112 Author: Wolfgang Denk <wd@denx.de>
54113 Date:   Wed Apr 30 17:46:26 2008 +0200
54115     cmd_nand.c: fix another 'incompatible pointer type' warning.
54117     Signed-off-by: Wolfgang Denk <wd@denx.de>
54119 commit de109d909707e2dfe806be5efc3cdb103b47c8ad
54120 Author: Wolfgang Denk <wd@denx.de>
54121 Date:   Wed Apr 30 17:25:07 2008 +0200
54123     Makefile: fix parallel builds
54125     This problem shows up with parallel builds only; it results in
54126     somewhat cryptic error messages like
54128         $ JOBS=-j6 MAKEALL netstar
54129         Configuring for netstar board...
54130         arm-linux-ld: cannot find -lgeneric
54131         make[1]: *** [eeprom.srec] Error 1
54133     A few boards (like netstar and voiceblue) need some libraries for
54134     building; however, the board Makefile does not contain any such
54135     dependencies which may cause problems with parallel builds. Adding
54136     such dependencies is difficult as we would also have to provide build
54137     rules, which already exist in the respective library Makefiles.
54139     To solve this, we make sure that all libraries get built before the
54140     board code.
54142     Signed-off-by: Wolfgang Denk <wd@denx.de>
54144 commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
54145 Author: Stefan Roese <sr@denx.de>
54146 Date:   Wed Apr 30 14:51:36 2008 +0200
54148     ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
54150     This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
54151     used for NAND booting to match the values needed for the new 512MB
54152     DIMM modules shipped with the productions boards:
54154     Crucial: CT6464AC667.8FB
54156     Signed-off-by: Stefan Roese <sr@denx.de>
54158 commit ea9202a659dc75996facf1475f1866a19a9d3129
54159 Author: Stefan Roese <sr@denx.de>
54160 Date:   Wed Apr 30 10:49:43 2008 +0200
54162     ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
54164     This patch fixes a problem with DIMMs that have 8 banks. Now the
54165     MCIF0_MBxCF register will be setup correctly for this setup too.
54167     This was noticed with the 512MB DIMM on Canyonlands/Glacier.
54169     Signed-off-by: Stefan Roese <sr@denx.de>
54171 commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
54172 Author: Wolfgang Denk <wd@denx.de>
54173 Date:   Tue Apr 29 23:41:06 2008 +0200
54175     Prepare v1.3.3-rc2, again.
54177     Signed-off-by: Wolfgang Denk <wd@denx.de>
54179 commit b7fcc4c13993782342cf5cd20d237a6281648a0b
54180 Author: Wolfgang Denk <wd@denx.de>
54181 Date:   Tue Apr 29 23:35:24 2008 +0200
54183     Prepare v1.3.3-rc2
54185     Signed-off-by: Wolfgang Denk <wd@denx.de>
54187 commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
54188 Author: Wolfgang Denk <wd@denx.de>
54189 Date:   Tue Apr 29 23:32:20 2008 +0200
54191     common/env_nand.c: fix one more incompatible pointer type issue
54193     Signed-off-by: Wolfgang Denk <wd@denx.de>
54195 commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
54196 Author: Wolfgang Denk <wd@denx.de>
54197 Date:   Tue Apr 29 21:33:08 2008 +0200
54199     post/board/lwmon5/sysmon.c: fix manual merge error.
54201     Signed-off-by: Wolfgang Denk <wd@denx.de>
54203 commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
54204 Author: Kumar Gala <galak@kernel.crashing.org>
54205 Date:   Tue Apr 29 12:54:59 2008 -0500
54207     85xx: Add -mno-spe to e500/85xx builds
54209     Newer gcc's might be configured to enable autovectorization by default.
54210     If we happen to build with one of those compilers we will get SPE
54211     instructions in random code.
54213     -mno-spe disables the compiler for automatically generating SPE
54214     instructions without our knowledge.
54216     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54218 commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
54219 Author: Kumar Gala <galak@kernel.crashing.org>
54220 Date:   Tue Apr 29 10:18:34 2008 -0500
54222     Update .gitignore for zlib.h
54224     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54226 commit 45239cf4152109caa925145ccd433529902df887
54227 Author: Kumar Gala <galak@kernel.crashing.org>
54228 Date:   Tue Apr 29 10:27:08 2008 -0500
54230     85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
54232     All the 85xx and 86xx UM describe the register as timing_cfg_3
54233     not as ext_refrec.
54235     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54237 commit ef7d30b14394e4c4a153118f5845760cadada02a
54238 Author: Kumar Gala <galak@kernel.crashing.org>
54239 Date:   Tue Apr 29 10:28:34 2008 -0500
54241     85xx/86xx: Rename DDR init address and init extended address register
54243     Rename init_addr and init_ext_addr to match the docs between
54244     85xx and 86xx.  Both now use 'init_addr' and 'init_ext_addr'.
54246     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54248 commit cf6cc014270549684873a5972d2595052c468cb6
54249 Author: Kumar Gala <galak@kernel.crashing.org>
54250 Date:   Mon Apr 28 02:24:04 2008 -0500
54252     85xx: Additional fixes and cleanup of MP code
54254     * adjust __spin_table alignment to match ePAPR v0.94 spec
54255     * loop over all cpus when determing who is up.  This fixes an issue if
54256       the "boot cpu" isn't core0.  The "boot cpu" will already be in the
54257       cpu_up_mask so there is no harm
54258     * Added some protection in the code to ensure proper behavior.  These
54259       changes are explicitly needed but don't hurt:
54260       - Added eieio to ensure the "hot word" of the table is written after
54261         all other table updates have occurred.
54262       - Added isync to ensure we don't prefetch loading of table entries
54263         until we a released
54265     These issues we raised by Dave Liu.
54267     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54269 commit b2d527a8b9fb50afccbaf79b5540952585cdc760
54270 Author: Yuri Tikhonov <yur@emcraft.com>
54271 Date:   Tue Apr 29 15:06:41 2008 +0200
54273     lwmon5: minor clean-up to include/configs/lwmon5.h
54275     LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
54276     the CFG_DSPIC_TEST_ADDR definition more readable.
54278     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
54280 commit f4c4d21a885ccc222fd0acdf653b683249e85117
54281 Author: Stefan Roese <sr@denx.de>
54282 Date:   Tue Apr 29 16:08:05 2008 +0200
54284     ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
54286     Signed-off-by: Stefan Roese <sr@denx.de>
54288 commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
54289 Author: Yuri Tikhonov <yur@emcraft.com>
54290 Date:   Tue Apr 29 13:32:45 2008 +0200
54292     ppc flush_cache: add watch-dog triggering into the loops.
54294     Some boards (e.g. lwmon5) need rather a frequent watch-dog
54295     kicking. Since the time it takes for the flush_cache() function
54296     to complete its job depends on the size of data being flushed, one
54297     may encounter watch-dog resets on such boards when, for example,
54298     download big files over ethernet.
54300     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
54302 commit cab99d6f3281ab6784feccf98b9b425daa58418a
54303 Author: Stefan Roese <sr@denx.de>
54304 Date:   Tue Apr 29 14:44:54 2008 +0200
54306     ppc4xx: Fix compilation warning in denali_spd_ddr2.c
54308     Signed-off-by: Stefan Roese <sr@denx.de>
54310 commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
54311 Author: Stefan Roese <sr@denx.de>
54312 Date:   Tue Apr 29 14:12:07 2008 +0200
54314     ppc4xx: Fix Katmai CFG_MONITOR_LEN
54316     Signed-off-by: Stefan Roese <sr@denx.de>
54318 commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
54319 Author: Stefan Roese <sr@denx.de>
54320 Date:   Tue Apr 29 13:57:07 2008 +0200
54322     ppc4xx: Complete remove bogus dflush()
54324     Since the current dflush() implementation is know to have some problems
54325     (as seem on lwmon5 ECC init) this patch removes it completely and replaces
54326     it by using clean_dcache_range().
54328     Tested on Katmai with ECC DIMM.
54330     Signed-off-by: Stefan Roese <sr@denx.de>
54332 commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
54333 Author: Stefan Roese <sr@denx.de>
54334 Date:   Tue Apr 29 13:36:51 2008 +0200
54336     ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
54338     As it seems the "old" ECC initialization routine by using dflush() didn't
54339     write all lines in the dcache back to memory on lwmon5. This could lead
54340     to ECC error upon Linux booting. This patch changes the program_ecc()
54341     routine to now use clean_dcache_range() instead of dflush().
54342     clean_dcache_range() uses dcbst which is exactly what we want in this
54343     case.
54345     Since dflush() is known is cause problems, this routine will be
54346     removed completely and replaced by clean_dcache_range() with an
54347     additional patch.
54349     Signed-off-by: Stefan Roese <sr@denx.de>
54351 commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
54352 Author: Yuri Tikhonov <yur@emcraft.com>
54353 Date:   Mon Apr 28 18:19:34 2008 +0200
54355     POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
54357     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
54359 commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
54360 Author: Markus Brunner <super.firetwister@googlemail.com>
54361 Date:   Mon Apr 28 08:47:47 2008 +0200
54363     ppc4xx: Fixup ebc clock in FDT for 405GP/EP
54365     On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
54366     and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
54367     doesn't exist.
54369     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
54371 commit 2ef7503a593c77a80c2a054011970227c4b62774
54372 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54373 Date:   Thu Apr 24 07:57:17 2008 +0200
54375     NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
54377     Move non-inlied functions into specific drivers file
54378     Set get_prom as weak
54380     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54381     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
54382     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
54384 commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
54385 Author: Guennadi Liakhovetski <lg@denx.de>
54386 Date:   Thu Apr 3 17:04:19 2008 +0200
54388     net: make ARP timeout configurable
54390     Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
54391     On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
54392     to the boards get lost, which typically are ARP replies. By configuring
54393     the timeout to a lower value we significantly improve the first network
54394     transfer time on this board. The timeout is specified in milliseconds,
54395     later internally it is converted to deciseconds, because it has to be
54396     converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
54397     different boards.
54399     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
54400     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
54402 commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
54403 Author: Guennadi Liakhovetski <lg@denx.de>
54404 Date:   Thu Apr 3 13:36:18 2008 +0200
54406     minor cs8900 driver clean up
54408     Remove a redundant register definition, clean up some coding style
54409     violations.
54411     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
54412     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
54414 commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
54415 Author: Wolfgang Denk <wd@denx.de>
54416 Date:   Mon Apr 28 22:01:04 2008 +0200
54418     jffs2_1pass.c: fix incompatible pointer type warning
54420     Signed-off-by: Wolfgang Denk <wd@denx.de>
54422 commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
54423 Author: Sascha Laue <Sascha.Laue@gmx.biz>
54424 Date:   Tue Apr 1 10:10:18 2008 +0200
54426     lwmon5: update dsPIC POST spezification
54428     The specification for the lwmon5 board dsPIC POST got changed.
54429     Also add defines for the temperatures  and voltages.
54431     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
54433 commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
54434 Author: Sascha Laue <Sascha.Laue@gmx.biz>
54435 Date:   Tue Apr 1 15:13:03 2008 +0200
54437     Fix watchdog POST for lwmon5
54439     If the hardware watchdog detects a voltage error, the watchdog sets
54440     GPIO62 to low. The watchdog POST has to detect this low level.
54442     Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
54443     Signed-off-by: Wolfgang Denk <wd@denx.de>
54445 commit dd5748bcd669f46aeb6686c1b341323843738ccc
54446 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
54447 Date:   Mon Apr 28 14:37:14 2008 +0200
54449     rtl8169: fix compiler warnings
54451     Fix multiple compiler warnings related to argument type mismatch.
54453     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
54455 commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
54456 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
54457 Date:   Mon Apr 28 14:36:06 2008 +0200
54459     IDE: fix compiler warnings
54461     The IDE driver can use 32-bit addresses in LBA mode, in which case it
54462     spits multiple warnings during compilation. Fix them.
54464     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
54466 commit db9084de28c46ac81c8f681722cb0d7411be4d7f
54467 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
54468 Date:   Mon Apr 28 14:35:57 2008 +0200
54470     LinkStation: fix compiler warning, add a maintainer
54472     out_8 wants a pointer to an unsigned as the first argument. Add a
54473     maintainer for Linkstation boards.
54475     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
54477 commit c71abba3cb67b063f789f17abf6c7447727c0cd5
54478 Author: Wolfgang Denk <wd@denx.de>
54479 Date:   Mon Apr 28 14:55:12 2008 +0200
54481     cmd_nand.c: fix "differ in signedness" problem
54483     Signed-off-by: Wolfgang Denk <wd@denx.de>
54485 commit f2c288a35341ad02ac03b1563d786763c9c8f159
54486 Author: Wolfgang Denk <wd@denx.de>
54487 Date:   Mon Apr 28 12:48:47 2008 +0200
54489     pcnet.c: fix a merge issue
54491     Signed-off-by: Wolfgang Denk <wd@denx.de>
54493 commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
54494 Author: Wolfgang Denk <wd@denx.de>
54495 Date:   Mon Apr 28 12:08:18 2008 +0200
54497     NAND: fix some strict-aliasing compiler warnings
54499     Signed-off-by: Wolfgang Denk <wd@denx.de>
54501 commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
54502 Author: Stefan Roese <sr@denx.de>
54503 Date:   Mon Apr 28 11:37:14 2008 +0200
54505     ppc4xx: Fix compile warning of hcu4 board
54507     Signed-off-by: Stefan Roese <sr@denx.de>
54509 commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
54510 Author: Wolfgang Denk <wd@denx.de>
54511 Date:   Mon Apr 28 11:31:23 2008 +0200
54513     MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
54515     Signed-off-by: Wolfgang Denk <wd@denx.de>
54517 commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
54518 Author: Guennadi Liakhovetski <lg@denx.de>
54519 Date:   Mon Apr 28 00:25:32 2008 +0200
54521     mx31ads: fix loadaddr environment variable define
54523     Arithmetic expressions do not get evaluated under stringification. Remove
54524     default network configuration, add DHCP command support. Thanks to Felix
54525     Radensky for reporting.
54527     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
54529 commit 144eec777ac07bcb12bd38245a5a289f694a7f98
54530 Author: Wolfgang Denk <wd@denx.de>
54531 Date:   Mon Apr 28 10:55:24 2008 +0200
54533     katmai: fix section overlap problem
54535     Since we didn't want to remove features from the configuration, we
54536     decided to increase the U-Boot image size (add one flash sector).
54538     Also changed the default environment definition to make it
54539     independent of such changes.
54541     Signed-off-by: Wolfgang Denk <wd@denx.de>
54542     Acked-by: Stefan Roese <sr@denx.de>
54544 commit 941d696d25624e3cc65ebf924199541acf52d74e
54545 Author: Wolfgang Denk <wd@denx.de>
54546 Date:   Mon Apr 28 10:55:24 2008 +0200
54548     katmai: fix section overlap problem
54550     Since we didn't want to remove features from the configuration, we
54551     decided to increase the U-Boot image size (add one flash sector).
54553     Also changed the default environment definition to make it
54554     independent of such changes.
54556     Signed-off-by: Wolfgang Denk <wd@denx.de>
54557     Acked-by: Stefan Roese <sr@denx.de>
54559 commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
54560 Author: Kumar Gala <galak@kernel.crashing.org>
54561 Date:   Sat Apr 26 11:44:44 2008 -0500
54563     post: Fix building with O=
54565     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54567 commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
54568 Author: Wolfgang Denk <wd@denx.de>
54569 Date:   Sat Apr 26 01:55:00 2008 +0200
54571     Prepare v1.3.3-rc1
54573     Signed-off-by: Wolfgang Denk <wd@denx.de>
54575 commit 19cf2ec90d8ce52da60c1693693c4048cb810967
54576 Author: Wolfgang Denk <wd@denx.de>
54577 Date:   Sat Apr 26 01:25:39 2008 +0200
54579     post/Makefile: make sure to use the correct flags
54581     ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
54582     messages to be printed.
54584     Signed-off-by: Wolfgang Denk <wd@denx.de>
54586 commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
54587 Author: Wolfgang Denk <wd@denx.de>
54588 Date:   Sat Apr 26 00:34:42 2008 +0200
54590     Coding Style cleanup, update CHANGELOG
54592     Signed-off-by: Wolfgang Denk <wd@denx.de>
54594 commit f9204e15173834ff8d123e36279ce49c3c6c74fc
54595 Author: Magnus Lilja <lilja.magnus@gmail.com>
54596 Date:   Sun Apr 20 10:38:12 2008 +0200
54598     i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
54600     This patch enables SPI and MC13783/RTC support for the Litekit board.
54602     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
54604 commit f97abbfb47d9e407354e157cae3f6369e460cd37
54605 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
54606 Date:   Fri Apr 25 01:08:32 2008 -0500
54608     MPC8544DS: decode pcie3 end-point configuration correctly.
54610     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
54611     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54613 commit 292188e15523c165c4269403fdcd33c26d89176e
54614 Author: Roy Zang <tie-fei.zang@freescale.com>
54615 Date:   Fri Apr 25 00:55:09 2008 -0500
54617     MPC8544DS: Removes the unknown flash message information
54619     This patch removes the unknown flash message information:
54620     '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
54621     This unknown flash message is caused by PromJet.
54622     Some of the board user is unhappy with this information.
54624     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
54625     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54627 commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
54628 Author: Kim Phillips <kim.phillips@freescale.com>
54629 Date:   Thu Apr 24 14:07:38 2008 -0500
54631     mpc83xx: bump loadaddr over fdtaddr to 0x500000
54633     this seems as a good compromise between human memory, typing,
54634     and last but not least, to accommodate for current and future kernel bloat.
54636     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54637     Acked-by: Dave Liu <daveliu@freescale.com>
54639 commit be5a7190265a34d968578ff266549c60f6f57654
54640 Author: Dave Liu <r63238@freescale.com>
54641 Date:   Tue Apr 15 13:12:23 2008 +0800
54643     mpc83xx: clean up the readme for 83xx boards
54645     1. correct the typo
54646     2. correct the memory map for 837xerdb board
54648     Signed-off-by: Dave Liu <daveliu@freescale.com>
54650 commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
54651 Author: Dave Liu <r63238@freescale.com>
54652 Date:   Tue Apr 15 13:11:11 2008 +0800
54654     mpc83xx: remove the unused CPM's stuff
54656     The MPC83xx family never have CPM block, so remove it from 83xx.
54658     Signed-off-by: Dave Liu <daveliu@freescale.com>
54660 commit c63ad6325a8ac0097a54b418a3288926b0484b18
54661 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54662 Date:   Fri Apr 18 16:29:40 2008 +0200
54664     cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
54666     This patch adds a configurable flash auto protection list that can be used
54667     to make U-Boot protect flash regions in flash_init().
54669     The idea has been discussed on the u-boot mailing list starting
54670     on Nov 18th, 2007.
54672     Even this patch brings a new feature it is used as a bugfix for 4xx
54673     platforms where flash_init() does not completely protect the
54674     monitor's flash range in all situations.
54676     U-Boot protects the flash range from CFG_MONITOR_BASE to
54677     (CFG_MONITOR_BASE + monitor_flash_len  - 1) by default. This does not
54678     include the reset vector at 0xfffffffc.
54680     Example:
54681     #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
54683     This config option will auto protect the last 512k of flash that
54684     contains the bootloader on board like APC405 and PMC405.
54686     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54688 commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
54689 Author: Stefan Roese <sr@denx.de>
54690 Date:   Fri Apr 25 13:59:03 2008 +0200
54692     ppc4xx: Remove double defines in lwmon5.h
54694     introduced with latest lwmon5/POST merge
54696     Signed-off-by: Stefan Roese <sr@denx.de>
54698 commit 7590378fb9c686709492ceb142825cd058255956
54699 Author: Bartlomiej Sieka <tur@semihalf.com>
54700 Date:   Fri Apr 25 13:54:02 2008 +0200
54702     Use watchdog-aware functions when calculating hashes of images - take two
54704     Some files didn't get updated properly with the "Use watchdog-aware
54705     functions when calculating hashes of images" commit, this commit
54706     fixes this.
54708     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54709     Signed-off-by: Wolfgang Denk <wd@denx.de>
54711 commit 8e048c438e20ec89b49da5f085f8f756eba6e587
54712 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54713 Date:   Fri Apr 25 12:01:39 2008 +0200
54715     ppc4xx: Add bootcount limit handling for APC405 boards
54717     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
54719 commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
54720 Author: Bartlomiej Sieka <tur@semihalf.com>
54721 Date:   Fri Apr 25 12:10:09 2008 +0200
54723     Use watchdog-aware functions when calculating hashes of images
54725     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54727 commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
54728 Author: Wolfgang Denk <wd@denx.de>
54729 Date:   Fri Apr 25 12:44:08 2008 +0200
54731     USB: fix more GCC 4.2.x aliasing warnings
54733     Signed-off-by: Wolfgang Denk <wd@denx.de>
54734     Acked-by: Markus Klotzbuecher <mk@denx.de>
54736 commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
54737 Author: Wolfgang Denk <wd@denx.de>
54738 Date:   Fri Apr 25 12:41:53 2008 +0200
54740     lib_generic/crc32.c: add missing #include <watchdog.h>
54742     Signed-off-by: Wolfgang Denk <wd@denx.de>
54744 commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
54745 Author: Wolfgang Denk <wd@denx.de>
54746 Date:   Fri Apr 25 11:52:21 2008 +0200
54748     lib_generic/crc32.c: fix compile problem
54750     Signed-off-by: Wolfgang Denk <wd@denx.de>
54752 commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
54753 Author: Stefan Roese <sr@denx.de>
54754 Date:   Tue Apr 22 12:20:32 2008 +0200
54756     ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
54758     The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
54759     environment variable will now get passed to the Linux kernel by setting
54760     the device_type property of the PCIe device tree node. For normal root-
54761     complex configuration it will keep its defaults value of "pci" and for
54762     endpoint configuration it will get changed to "pci-endpoint".
54764     Signed-off-by: Stefan Roese <sr@denx.de>
54766 commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
54767 Author: Yuri Tikhonov <yur@emcraft.com>
54768 Date:   Thu Apr 24 10:30:53 2008 +0200
54770     lwmon5: watchdog POST fix
54772     Use the GPT0_MASKx registers as the temporary storage for watch-dog
54773     timer POST test instead of GPT0_COMPx. The latter
54774     (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
54776     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
54777     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
54779 commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
54780 Author: Kim Phillips <kim.phillips@freescale.com>
54781 Date:   Mon Apr 21 18:10:14 2008 -0500
54783     lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
54785     This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
54786     proven problematic getting right from the start at least on 83xx and
54787     4xx.
54789     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54791 commit a99715b8ebfc500f3f40e01b36b64d473938443d
54792 Author: Detlev Zundel <dzu@denx.de>
54793 Date:   Fri Apr 18 14:50:01 2008 +0200
54795     Realining some header definitions.
54797     Signed-off-by: Detlev Zundel <dzu@denx.de>
54799 commit 4acbc6c7f993cae409c424615415a3e76820f13d
54800 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54801 Date:   Thu Apr 24 07:57:16 2008 +0200
54803     NE2000: coding style cleanup
54805     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54807 commit b4aff1ffaf7120032c653357c007faa14f74d29d
54808 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54809 Date:   Wed Apr 23 00:11:47 2008 +0900
54811     qemu-mips.h: Add CFI support
54813     CONFIG_ENV_OVERWRITE is also added.
54815     This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
54817     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54818     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54820 commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
54821 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54822 Date:   Tue Apr 22 22:47:27 2008 +0900
54824     doc/README.mips: Add MIPS notes
54826     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54828 commit 215b01bba8bc662d35f72b084700b192d367dfb4
54829 Author: Bartlomiej Sieka <tur@semihalf.com>
54830 Date:   Tue Apr 22 12:27:56 2008 +0200
54832     Add support for calculating hashes with watchdog triggering
54834     Implement watchodg-aware variants of hash calculation functions:
54835     - crc32_wd()
54836     - md5_wd()
54837     - sha1_csum_wd()
54838     The above functions calculate the hash of the input buffer in chunks,
54839     triggering the watchdog after processing each chunk. The chunk size
54840     is given as a function call parameter.
54842     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54844 commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
54845 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
54846 Date:   Wed Apr 23 11:02:12 2008 +0900
54848     qemu-mips: Cleanup whitespace, indentation, etc.
54850     No functional change.
54852     This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
54853     Then I re-created from scratch, and changed more lines than the original.
54855     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54856     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54858 commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
54859 Author: Vlad Lungu <vlad@comsys.ro>
54860 Date:   Wed Oct 10 23:02:09 2007 +0300
54862     Fixed pcnet io_base
54864     Bus and phys address are not always the same
54866     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
54868 commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
54869 Author: Wolfgang Denk <wd@denx.de>
54870 Date:   Thu Apr 24 23:44:26 2008 +0200
54872     drivers/net/pcnet.c: Coding Style cleanup.
54874     Signed-off-by: Wolfgang Denk <wd@denx.de>
54876 commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
54877 Author: Vlad Lungu <vlad@comsys.ro>
54878 Date:   Wed Oct 10 23:04:23 2007 +0300
54880     Added Am79C970A chip id to pcnet
54882     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
54884 commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
54885 Author: Magnus Lilja <lilja.magnus@gmail.com>
54886 Date:   Sun Apr 20 10:35:03 2008 +0200
54888     i.MX31: Fix architecture numbers for ADS and Litekit boards
54890     Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
54892     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
54894 commit e7ae84d6c7288790e88639f57cb60daf89c11369
54895 Author: Magnus Lilja <lilja.magnus@gmail.com>
54896 Date:   Sun Apr 20 10:36:36 2008 +0200
54898     i.MX31: Use symbolic names for Litekit membases.
54900     Use symbolic names instead of hard coded addresses for Litekit membases.
54902     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
54904 commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
54905 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54906 Date:   Sat Apr 19 17:59:20 2008 +0200
54908     Fix show_boot_progress prototype
54910     in commit fad634071 "make show_boot_progress () weak."
54911     show_boot_progress is supposed to be declared as weak but declared as
54912     inline instead.
54914     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54916 commit edbed247a14d70b94958010f736621212285de91
54917 Author: Bartlomiej Sieka <tur@semihalf.com>
54918 Date:   Fri Apr 18 12:39:23 2008 +0200
54920     Memory footprint optimizations
54922     As suggested by Wolfgang Denk:
54923     - image printing functions:
54924       - remove wrappers
54925       - remove indentation prefix from functions' signatures
54926     - merge getenv_verify and getenv_autostart into one parametrized function
54928     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54930 commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
54931 Author: Guennadi Liakhovetski <lg@denx.de>
54932 Date:   Tue Apr 15 13:33:11 2008 +0200
54934     MX31ADS environment variable update, spi and rtc support
54936     Update MX31ADS default environment to better match the flash layout and
54937     the memory map, support SPI and RTC.
54939     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
54941 commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
54942 Author: Kumar Gala <galak@kernel.crashing.org>
54943 Date:   Mon Apr 21 09:28:36 2008 -0500
54945     85xx: Round up frequency calculations to get reasonable output
54947     eg. because of rounding error we can get 799Mhz instead of 800Mhz.
54949     Introduced DIV_ROUND_UP and roundup taken from linux kernel.
54951     Signed-off-by: Dejan Minic <minic@freescale.com>
54952     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
54953     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54954     Acked-by: Andy Fleming <afleming@freescale.com>
54956 commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
54957 Author: Kumar Gala <galak@kernel.crashing.org>
54958 Date:   Wed Apr 23 16:58:04 2008 -0500
54960     fsl_pci: Only modify registers if we have them
54962     pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
54964     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54966 commit 83fe32334337def160b302aa9d152d808bfcc68e
54967 Author: Markus Klotzbücher <mk@denx.de>
54968 Date:   Wed Apr 23 10:57:33 2008 +0200
54970     USB: remove a cpu bug workaround for an unsupported architecture.
54972     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
54974 commit f957576cb53e6cfab412709cfc8db1afd39d21c3
54975 Author: Markus Klotzbücher <mk@denx.de>
54976 Date:   Wed Apr 23 10:53:23 2008 +0200
54978     USB: fix those pesky aliasing warnings issued by gcc-4.2
54980     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
54981     Signed-off-by: Detlev Zundel <dzu@denx.de>
54983 commit 89cdab788f3716b335fefb60b836ebcf975aceab
54984 Author: Mike Frysinger <vapier@gentoo.org>
54985 Date:   Mon Mar 31 11:02:01 2008 -0400
54987     crc32: use uint32_t rather than unsigned long
54989     The envcrc.c does sizeof(unsigned long) when calculating the crc, but
54990     this is done with the build toolchain instead of the target tool
54991     chain, so if the build is a 64bit system but the target is 32bits,
54992     the size will obviously be wrong. This converts all unsigned long
54993     stuff related to crc32 to uint32_t types. Compile tested only: output
54994     of ./tools/envcrc when run on a 32bit build system matches that of a
54995     64bit build system.
54997     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
54998     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55000 commit 80c40b765b3642ddb9f3392b7898715aab44a29c
55001 Author: Dirk Behme <dirk.behme@googlemail.com>
55002 Date:   Wed Mar 26 09:53:29 2008 +0100
55004     ARM: Davinci: Fix DM644x timer overflow handling and cleanup
55006     Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
55008     Changes:
55010     - Remove *_masked() functions as noted by Wolfgang
55012     - Adapt register naming to recent TI spec (sprue26, March 2007)
55014     - Fix reset_timer() handling
55016     - As reported by Pieter [1] the overflow fix introduced a delay of factor 16 (e.g 2 seconds became 32). While the overflow fix is basically okay, it missed to divide udelay by 16, too. Fix this.
55018     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
55020     - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
55022     Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
55024     Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
55026     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
55027     Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
55029 commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
55030 Author: Sergei Poselenov <sposelenov@emcraft.com>
55031 Date:   Wed Apr 9 16:09:41 2008 +0200
55033     Added watchdog triggering calls in the "mtest" test function.
55035     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
55037 commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
55038 Author: Yuri Tikhonov <yur@emcraft.com>
55039 Date:   Sun Apr 6 19:19:14 2008 +0200
55041     lwmon5 watchdog: limit trigger rate
55043     Limit the rate of h/w watch-dog triggering on the LWMON5 board by
55044     the CONFIG_WD_MAX_RATE value.
55046     Note that an earlier version of this patch which used microseconds
55047     instead of ticks dis not work. The problem was that we used
55048     usec2ticks() to convert microseconds into ticks. usec2ticks() uses
55049     get_tbclk(), which in turn calls get_sys_info(). It turns out that
55050     this function does a lot of prolonged operations (like divisions)
55051     which take too much time so we do not trigger the watchdog in time,
55052     and it resets the system.
55054     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
55056 commit 2d2b994a30bb100774dc747ae9865b7f95285a88
55057 Author: Yuri Tikhonov <yur@emcraft.com>
55058 Date:   Mon Mar 31 10:51:37 2008 +0200
55060     POST: move CONFIG_POST to Makefiles
55062     Introduce the new logical option CONFIG_HAS_POST which is set when the
55063     platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
55064     to determine should the POST libs be compiled for the selected target
55065     platform, or not.
55067     To avoid breaking u-boot linking process, the empty post/libpost.a file is
55068     created for platforms which do not have POSTs.
55070     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
55071     Signed-off-by: Wolfgang Denk <wd@denx.de>
55073 commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
55074 Author: Yuri Tikhonov <yur@emcraft.com>
55075 Date:   Mon Mar 31 10:49:34 2008 +0200
55077     POST: preparations for moving CONFIG_POST to Makefiles
55079     Remove CONFIG_POST ifdefs from the post/ source files.
55081     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
55082     Signed-off-by: Wolfgang Denk <wd@denx.de>
55084 commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
55085 Author: Stefan Roese <sr@denx.de>
55086 Date:   Tue Apr 22 14:14:20 2008 +0200
55088     ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
55090     This patch fixes the Canyonlands and Glacier default environment to better
55091     fit to the arch/powerpc device-tree kernels. The variables dealing with
55092     arch/ppc booting are removed, since these boards are supported only in
55093     arch/powerpc. Glacier uses the same config file as Canyonlands.
55095     Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
55097     Signed-off-by: Stefan Roese <sr@denx.de>
55099 commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
55100 Author: Stefan Roese <sr@denx.de>
55101 Date:   Tue Apr 22 14:06:42 2008 +0200
55103     ppc4xx: Small coding style cleanup for the latest esd patches
55105     Signed-off-by: Stefan Roese <sr@denx.de>
55107 commit 79941d63bc03aed8c48d7602f18217cc200ee931
55108 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55109 Date:   Mon Apr 21 18:01:07 2008 +0200
55111     ppc4xx: Update CPU strapping for PMC440 boards
55113     This patch removes the temporary 'test' strapping option
55114     of the sbe command. The '667' strapping option now uses
55115     a PLB/PCI divider of 3.
55117     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55119 commit f00cf3193a6635355b121e90debb2f54e777e7da
55120 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55121 Date:   Mon Apr 21 14:42:21 2008 +0200
55123     ppc4xx: Remove unused APC405 strataflash driver
55125     The APC405 board support has been migrated to use the common
55126     CFI flash driver.
55128     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55130 commit 1c686676a86473bbd92151f0544e109413f6ed06
55131 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55132 Date:   Mon Apr 21 14:42:17 2008 +0200
55134     ppc4xx: Update APC405 configuration
55136     - enable esd's auto_update mechanism
55137     - support alternative flash layout on rev. 1.8 boards
55138     - update default environment
55139     - use common CFI flash driver
55140     - coding style cleanup
55142     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55144 commit 0b9872515a521bf7866dc24b85ddce708e60d702
55145 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55146 Date:   Mon Apr 21 14:42:11 2008 +0200
55148     ppc4xx: Update APC405 board support
55150     - enable esd's auto_update mechanism
55151     - fix LCD support on latest hardware revision (uses other LCD controller)
55152     - support alternative flash layout on rev. 1.8 boards
55153     - coding style cleanup
55155     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55157 commit 83975d02e225e231960784972e7820a8b303756b
55158 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55159 Date:   Mon Apr 21 14:42:06 2008 +0200
55161     ppc4xx: update esd's common auto_update code for 405 boards
55163     - Coding style cleanup (long lines)
55164     - improve handling of protected flash regions
55165     - remove dead code
55167     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55169 commit b9233fe5d59cb25d975071616bd1035d6f4c2285
55170 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55171 Date:   Mon Apr 21 14:41:59 2008 +0200
55173     ppc4xx: Update esd's common LCD code for 405 boards
55175     - Coding style cleanup (long lines)
55176     - Add s1d13505 support
55177     - Make some functions return a result code instead of void
55179     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55181 commit dea68189424c3f1242427a8146a3861bf093173c
55182 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55183 Date:   Mon Apr 21 11:36:55 2008 +0200
55185     ppc4xx: Update FPGA image for APC405 boards
55187     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55189 commit 2a05b152924acfcec3b037693329e517e6d3578f
55190 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55191 Date:   Mon Apr 21 11:36:08 2008 +0200
55193     ppc4xx: Update bootlogo for APC405 boards
55195     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55197 commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
55198 Author: Stefan Roese <sr@denx.de>
55199 Date:   Fri Apr 18 16:41:31 2008 +0200
55201     ppc4xx: Add dcache_enable() for 440
55203     dcache_enable() was missing for 440 and the patch
55204     017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
55205     "] behavior uses this function.
55207     Note: Currently the cache handling functions like
55208     d/icache_disable/enable() are NOP's on 440. This may be changed in the
55209     future.
55211     Signed-off-by: Stefan Roese <sr@denx.de>
55213 commit a49e0d177a0749614b316ec847fb623f09c82c07
55214 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55215 Date:   Mon Apr 21 11:19:04 2008 +0200
55217     video: Add missing free for logo memory
55219     This patch adds two missing free()s.
55221     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55223 commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
55224 Author: Troy Kisky <troy.kisky@boundarydevices.com>
55225 Date:   Mon Sep 24 16:41:43 2007 -0700
55227     PATCH - Fix oob data copied into supplied buffer
55229     This patch correctly sets the oobavail variable
55230     and fixes a bug where the oob data was not valid when
55231     there where multiple groups in oobfree.
55233     First segment fixes a typo
55234     Second segment fixes a bug where oob data may be copied incorrectly.
55235     Third segment adds an error message when exiting due to write protect.
55236     Forth segment fixes a bug where oobavail may be set incorrectly.
55238     Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
55240 commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
55241 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55242 Date:   Fri Apr 18 17:24:32 2008 +0200
55244     ppc4xx: Fix sys_get_info() for 405GP(r)
55246     This patch assigns the correct EBC clock for 405GP(r) CPUs
55247     to PPC4xx_SYS_INFO structure. Without this patch U-Boot
55248     uses an uninitialized EBC clock in its startup message.
55250     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
55252 commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
55253 Author: Wolfgang Denk <wd@denx.de>
55254 Date:   Sun Apr 20 15:39:38 2008 -0700
55256     Makefile: remove nand_spl/System.map when cleaning up.
55258 commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
55259 Author: Wolfgang Denk <wd@denx.de>
55260 Date:   Sun Apr 20 15:35:52 2008 -0700
55262     MAKEALL: sort entries / lists.
55264     Signed-off-by: Wolfgang Denk <wd@denx.de>
55266 commit 0878af169b181868a105b5c33f3a6423e2c9fd60
55267 Author: Kumar Gala <galak@kernel.crashing.org>
55268 Date:   Fri Apr 18 11:29:01 2008 -0500
55270     85xx: Fix size of cpu-release-addr property
55272     The cpu-release-addr is defined as always being a 64-bit quanity regardless
55273     if we are running on a 32-bit or 64-bit machine.
55275 commit 88353a985109562a639b2f8a0c90d77011bfe374
55276 Author: Timur Tabi <timur@freescale.com>
55277 Date:   Fri Apr 4 11:15:58 2008 -0500
55279     Fix calculation of I2C clock for some 85xx chips
55281     Some 85xx chips use CCB as the base clock for the I2C.  Some use CCB/2, and
55282     some use CCB/3.  There is no pattern that can be used to determine which
55283     chips use which frequency, so the only way to determine is to look up the
55284     actual SOC designation and use the right value for that SOC.
55286     Update immap_85xx.h to include the GUTS PORDEVSR2 register.
55288     Signed-off-by: Timur Tabi <timur@freescale.com>
55290 commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
55291 Author: Wolfgang Denk <wd@denx.de>
55292 Date:   Fri Apr 18 11:44:27 2008 -0700
55294     Fix build breakage casued by commit c0559be371b2
55296         Change env_get_char from a global function ptr to a function.
55298     Signed-off-by: Wolfgang Denk <wd@denx.de>
55300 commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
55301 Author: Wolfgang Denk <wd@denx.de>
55302 Date:   Fri Apr 18 10:53:41 2008 -0700
55304     Coding Style cleanup, update CHANGELOG.
55306     Signed-off-by: Wolfgang Denk <wd@denx.de>
55308 commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
55309 Author: Mike Frysinger <vapier@gentoo.org>
55310 Date:   Tue Apr 8 14:00:57 2008 -0400
55312     Add support for u-boot in svn and localversion-* files
55314     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55316 commit d23ff6827decf121461fbc5622612fd7effe207e
55317 Author: Guennadi Liakhovetski <lg@denx.de>
55318 Date:   Thu Apr 3 17:04:22 2008 +0200
55320     MX31ADS network and flash updates
55322     This patch allows U-Boot to use buffered writes to the Spansion NOR
55323     flash installed on this board, and eliminates long delays in network
55324     transfers after the board startup.
55326     Also modify flash layout to embed main and redundant environment
55327     blocks in the U-Boot image.
55329     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55331 commit b5dc9b304d289831f291843ff88a45cbdf1a6290
55332 Author: Guennadi Liakhovetski <lg@denx.de>
55333 Date:   Mon Apr 14 10:53:12 2008 +0200
55335     Support for the MX31ADS evaluation board from Freescale
55337     This patch adds support for the MX31ADS evaluation board from Freescale,
55338     initialization code is copied from RedBoot sources, also provided by
55339     Freescale.
55341     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55343 commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
55344 Author: Stefan Roese <sr@denx.de>
55345 Date:   Tue Apr 8 10:33:29 2008 +0200
55347     ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
55349     Signed-off-by: Stefan Roese <sr@denx.de>
55351 commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
55352 Author: Stefan Roese <sr@denx.de>
55353 Date:   Tue Apr 8 10:33:28 2008 +0200
55355     ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
55357     Signed-off-by: Stefan Roese <sr@denx.de>
55359 commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
55360 Author: Stefan Roese <sr@denx.de>
55361 Date:   Tue Apr 8 10:33:27 2008 +0200
55363     ppc4xx: Add Glacier NAND booting target
55365     Signed-off-by: Stefan Roese <sr@denx.de>
55367 commit 46f373838e384a4c23d13581b1dfa5acb66b5810
55368 Author: Stefan Roese <sr@denx.de>
55369 Date:   Tue Apr 8 10:31:00 2008 +0200
55371     nand_spl: Update nand_spl to support 2k page size NAND devices
55373     This patch adds support for booting from 2k page sized NAND device
55374     (e.g. Micron 29F2G08AAC).
55376     Tested on AMCC Canyonlands.
55378     Signed-off-by: Stefan Roese <sr@denx.de>
55380 commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
55381 Author: Anatolij Gustschin <agust@denx.de>
55382 Date:   Thu Apr 17 18:18:00 2008 +0200
55384     Fix crash on sequoia in ppc_4xx_eth_init
55386     Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
55387     with cache enabled (TLB Parity exeption). This patch
55388     fixes the problem.
55390     Signed-off-by: Anatolij Gustschin <agust@denx.de>
55392 commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
55393 Author: Anatolij Gustschin <agust@denx.de>
55394 Date:   Thu Apr 17 18:15:27 2008 +0200
55396     ppc4xx: Fix crash on sequoia with cache enabled
55398     Currently U-Boot crashes on sequoia board in CPU POST if
55399     cache is enabled (CONFIG_4xx_DCACHE defined). The cache
55400     won't be disabled by change_tlb before CPU POST because
55401     there is an insufficient adress range check since
55402     CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
55403     this problem.
55405     Signed-off-by: Anatolij Gustschin <agust@denx.de>
55407 commit 43c509254fab375c49936498da944658117ed07c
55408 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
55409 Date:   Thu Apr 17 23:35:13 2008 +0900
55411     Use jr as register jump instruction
55413     Current assembler codes are inconsistent in the way of register jump
55414     instruction usage; some use jr, some use j. Of course GNU as allows both
55415     usages, but as can be expected from `Jump Register' the mnemonic `jr' is
55416     more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
55417     at all.
55419     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
55421 commit 7ce63709828d37b08866e537339a169bd0db2bd3
55422 Author: Guennadi Liakhovetski <lg@denx.de>
55423 Date:   Tue Apr 15 14:15:30 2008 +0200
55425     RTC driver for MC13783
55427     MC13783 is a multifunction IS with an SPI interface to the host. This
55428     driver handles the RTC controller in this chip.
55430     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55432 commit 38254f45b0b412332726c90d3184ad47479fcffb
55433 Author: Guennadi Liakhovetski <lg@denx.de>
55434 Date:   Tue Apr 15 14:14:25 2008 +0200
55436     New i.MX31 SPI driver
55438     This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
55439     only implemented and tested on i.MX31, can with a modified register layout
55440     and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
55441     controllers too.
55443     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55445 commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
55446 Author: Magnus Lilja <lilja.magnus@gmail.com>
55447 Date:   Tue Apr 15 19:09:10 2008 +0200
55449     Fix name of i.MX31 boards in config file header
55451     Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
55453     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
55455 commit a49864593e083a5d0779fb9ca98e5a0f2053183d
55456 Author: Mike Frysinger <vapier@gentoo.org>
55457 Date:   Sun Apr 13 19:42:19 2008 -0400
55459     allow ports to override go behavior
55461     Split the arch-specific logic out of the common go code and into a dedicated
55462     weak function called do_go_exec() that lives in cpu directories.  This will
55463     need review from i386/nios people to make sure I didn't break them.
55465 commit 017e9b7925f74878d0e9475388cca9bda5ef9482
55466 Author: Mike Frysinger <vapier@gentoo.org>
55467 Date:   Sun Apr 13 19:42:18 2008 -0400
55469     allow ports to override bootelf behavior
55471     Change the bootelf setup function into a dedicated weak function called
55472     do_bootelf_exec.  This way ports can control the behavior however they
55473     like before/after calling the ELF entry point.
55475 commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
55476 Author: Ulf Samuelsson <ulf@atmel.com>
55477 Date:   Sat Apr 12 20:56:03 2008 +0200
55479     Reorder ARM boards in Makefile
55481     Rearrange ARM boards in Makefile so that ARM926EJ-S boards
55482     are no longer under ARM92xT header.
55484     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
55485     Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55487 commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
55488 Author: Ulf Samuelsson <ulf@atmel.com>
55489 Date:   Sat Apr 12 20:29:44 2008 +0200
55491     Clean up dataflash partitioning
55493     This patch removes the board dependent parts from
55494     "drivers/mtd/dataflash.c".
55495     Each board relying on this, will have the appropriate
55496     code in a new file, "partition.c" in the board directory.
55497     board Makefiles updated to use the file.
55499     The dataflash partitions are aligned on sector/page boundaries.
55501     The CONFIG_NEW_DF_PARTITION was used to create named partitions
55502     This is now the default operation, and the CONFIG variable is removed.
55504     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
55506 commit 51ecde946fec511a16346e498204ca10ad71080d
55507 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55508 Date:   Sat Apr 12 14:08:45 2008 +0200
55510     gitignore: udpate stgit generated and .patch file
55512     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55514 commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
55515 Author: Wolfgang Denk <wd@denx.de>
55516 Date:   Fri Apr 18 00:15:36 2008 -0700
55518     Get rid of redundant copy of renamed header file.
55520     Signed-off-by: Wolfgang Denk <wd@denx.de>
55522 commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
55523 Author: Vlad Lungu <vlad@comsys.ro>
55524 Date:   Fri Apr 11 21:20:14 2008 +0300
55526     Fix dependency generation for older gcc versions
55528      With gcc 3.3.3 at least, compilation fails with
55530     Generating include/autoconf.mk
55531     gcc: compilation of header file requested
55532     make: *** [include/autoconf.mk] Error 1
55534     since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
55536     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
55538 commit cb1c4896905ab22fcd982e6a8a539f0031942e71
55539 Author: Marian Balakowicz <m8@semihalf.com>
55540 Date:   Fri Apr 11 11:07:49 2008 +0200
55542     Restore the ability to continue booting after legacy image overwrite
55544     Before new uImage code was merged, bootm code allowed for the kernel image to
55545     get overwritten during decompresion. new uImage introduced a check for image
55546     overwrites and refused to boot the image that got overwritten. This patch
55547     restores the old behavior. It also adds a warning when the image overwriten is
55548     a multi-image file, because in such case accessing componentes other than the
55549     first one will fail.
55551     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55553 commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
55554 Author: Marian Balakowicz <m8@semihalf.com>
55555 Date:   Fri Apr 11 11:07:43 2008 +0200
55557     ppc: Fix ftd_blob variable init when processing raw blob
55559     Set fdt_blob variable before its value is printed out.
55561     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55563 commit 3d36be030043cd841a2551d00a395135e363a64b
55564 Author: Jason Wessel <jason.wessel@windriver.com>
55565 Date:   Thu Apr 10 14:30:16 2008 -0500
55567     Remove all the search paths from the .lds files.
55569     The cross compiler is responsible for providing the correct libraries
55570     and the logic to find the linking libraries.
55572     Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
55574 commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
55575 Author: Bartlomiej Sieka <tur@semihalf.com>
55576 Date:   Mon Apr 14 15:44:16 2008 +0200
55578     Boot-related documentation update
55580     - document 'bootm_low' and 'bootm_size' environment variables
55581     - update inaccurate CFG_BOOTMAPSZ entry
55583     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
55585 commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
55586 Author: Guennadi Liakhovetski <lg@denx.de>
55587 Date:   Wed Apr 9 17:34:08 2008 +0200
55589     Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
55591     Restore logic reverted by commit
55593     commit 80767a6cead9990d9e77e62be947843c2c72f469
55594     Author: Peter Pearse <peter.pearse@arm.com>
55595     Date:   Wed Sep 5 16:04:41 2007 +0100
55597         Changed API name to coloured_led.h
55598         Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
55599         Tidied other cpu/arm920t/start.S code
55601     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55603 commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
55604 Author: Mike Frysinger <vapier@gentoo.org>
55605 Date:   Tue Apr 8 10:24:24 2008 -0400
55607     Remove conflicting NAND ID
55609     There are two NAND entries with ID 0xDC and this obviously causes problems.
55610     In the kernel, they punted the first entry, so we should do the same.
55612     See this upstream e-mail for more info:
55613     http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
55615     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
55616     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55618 commit 188e94c370621708d13547d58dbc6ed3c5602aa8
55619 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
55620 Date:   Tue Apr 8 16:20:35 2008 +0900
55622     cpu/mips/cpu.c: Fix flush_cache bug
55624     Cache operations have to take line address (addr), not start_addr.
55625     I noticed this bug when debugging ping failure.
55627     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
55629 commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
55630 Author: Martin Krause <martin.krause@tqs.de>
55631 Date:   Thu Apr 3 14:29:01 2008 +0200
55633     TQM5200: fix default IDE reset level
55635     Before the first call of ide_reset(), the level of the IDE reset
55636     signal on the TQM5200 is low (reset asserted). This patch sets the
55637     default value to high (reset not asserted).
55639     Currently this patch fixes no real problem, but it is cleaner to
55640     assert the reset signal only on demand, and not permanently.
55642     Signed-off-by: Martin Krause <martin.krause@tqs.de>
55644 commit c61e033d6e8abb7b4060ee36060961e1399f6079
55645 Author: Detlev Zundel <dzu@denx.de>
55646 Date:   Thu Apr 3 14:18:48 2008 +0200
55648     mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
55650     Signed-off-by: Detlev Zundel <dzu@denx.de>
55652 commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
55653 Author: Detlev Zundel <dzu@denx.de>
55654 Date:   Thu Apr 3 14:18:47 2008 +0200
55656     mgcoge, mgsuv: rename 'addcon' to 'addcons'
55658     The latter name with 13 users is already established, so we will use
55659     that.
55661     Signed-off-by: Detlev Zundel <dzu@denx.de>
55663 commit e175eacc87c3a9e4dad0799fee0e95732520afc7
55664 Author: Martin Krause <martin.krause@tqs.de>
55665 Date:   Thu Apr 3 13:37:56 2008 +0200
55667     IDE: fix bug in reset sequence
55669     According to the ata (ata5) specification the RESET- signal
55670     shall be asserted for at least 25 us. Without this patch,
55671     the RESET- signal is asserted on some boards for only < 1 us
55672     (e. g. on the TQM5200). This patch adds a general delay of
55673     25 us to the RESET- signal.
55675     Without this patch a Platinum 4 GiB CF card is not recognised
55676     properly on boards with a TQM5200 (STK52xx, TB5200).
55678     Signed-off-by: Martin Krause <martin.krause@tqs.de>
55680 commit 813bea96a960916c72b4a3a7df840151529c26ce
55681 Author: Sascha Laue <Sascha.Laue@gmx.biz>
55682 Date:   Thu Apr 3 14:43:11 2008 +0200
55684     lwmon5: disable CONFIG_ZERO_BOOTDELAY
55686     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
55688 commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
55689 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55690 Date:   Wed Apr 2 08:03:58 2008 +0200
55692     ds174x: Fix warning on return in rtc_get and rtc_set functions
55694     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55696 commit a253b38bf50c85227c33ca0febc870ee49d1588e
55697 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55698 Date:   Wed Apr 2 08:03:57 2008 +0200
55700     cmd_log.c: Fix assignment differ in signedness
55702     In function 'logbuff_init_ptrs':
55703     cmd_log.c:79: warning: pointer targets in assignment differ in signedness
55705     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55707 commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
55708 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
55709 Date:   Wed Apr 2 11:04:43 2008 +0530
55711     Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
55713     Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
55715 commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
55716 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55717 Date:   Tue Apr 1 14:07:10 2008 +0200
55719     s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
55721     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55723 commit c08fb3ea36d19b1640b7906264581e9105534399
55724 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
55725 Date:   Tue Apr 15 10:24:14 2008 +0200
55727     Additional PCI IDs for IDE and network controllers
55729     These PCI IDs are required by the Linkstation platforms.
55731     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
55733 commit c0559be371b2a64b1a817088c3308688e2182f93
55734 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
55735 Date:   Mon Apr 14 23:01:50 2008 +0200
55737     Change env_get_char from a global function ptr to a function.
55739     This avoids an early global data reference.
55741     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
55743 commit 3e0f331c05d72f140715c1e9fca991927e44d422
55744 Author: Guennadi Liakhovetski <lg@denx.de>
55745 Date:   Tue Apr 29 12:35:08 2008 +0000
55747     Clean up smsc911x driver
55749     Replace direct register address derefencing with accessor functions.
55750     Restrict explicitly 32-bit bus-width, extend affected configurations
55751     respectively.
55753     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55754     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
55756 commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
55757 Author: Sascha Hauer <s.hauer@pengutronix.de>
55758 Date:   Tue Apr 15 00:08:20 2008 -0400
55760     This patch adds a driver for the following smsc network controllers:
55761     LAN9115
55762     LAN9116
55763     LAN9117
55764     LAN9215
55765     LAN9216
55766     LAN9217
55768     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
55769     Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
55770     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
55772 commit 3dfd4aab929cccddb63d9ea509967861e1333b52
55773 Author: Sascha Laue <Sascha.Laue@gmx.biz>
55774 Date:   Tue Apr 1 15:13:03 2008 +0200
55776     Fix watchdog POST for lwmon5
55778     If the hardware watchdog detects a voltage error, the watchdog sets
55779     GPIO62 to low. The watchdog POST has to detect this low level.
55781     Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
55783 commit 24b448448a917e52806f82660a5c9d47608894fb
55784 Author: Dave Liu <r63238@freescale.com>
55785 Date:   Tue Apr 1 15:22:11 2008 +0800
55787     ata: update the libata.h from ata.h of linux kernel
55789     Current libata.h of u-boot is out of sync from linux kernel,
55790     this patch make it be consistent with linux kernel.
55792     Signed-off-by: Dave Liu <daveliu@freescale.com>
55793     Signed-off-by: Tor Krill <tor@excito.com>
55795 commit f8f9dc98883f66f59eb0601da65808e6b139c87c
55796 Author: Kumar Gala <galak@kernel.crashing.org>
55797 Date:   Mon Mar 31 11:59:27 2008 -0500
55799     Allow use of ARCH=powerpc when building
55801     The linux kernel is now mostly ARCH=powerpc, so to make life easier
55802     allow use to use ARCH=powerpc and convert it to ARCH=ppc.
55804     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55806 commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
55807 Author: Kyungmin Park <kmpark@infradead.org>
55808 Date:   Mon Mar 31 10:40:54 2008 +0900
55810     Add apollon board MAINTAINERS entry
55812     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55814 commit 77e475cc0ed1832160017d364be32a0be9ff02a9
55815 Author: Kyungmin Park <kmpark@infradead.org>
55816 Date:   Mon Mar 31 10:40:36 2008 +0900
55818     Fix OneNAND read
55820     It should access with 16-bit instead of 8-bit
55822     Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
55824     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55826 commit a9da2b41079d230db3a5641625311983f85ce1fb
55827 Author: Kyungmin Park <kmpark@infradead.org>
55828 Date:   Mon Mar 31 10:40:19 2008 +0900
55830     Fix OneNAND erase command
55832     It mis-calculates the block address.
55833     Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
55835     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55837 commit 61525f2ffa156665a66908fda47dbf29d65ea579
55838 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
55839 Date:   Mon Mar 31 01:32:15 2008 +0200
55841     Support for LinkStation / KuroBox HD and HG PPC models
55843     This patch is based on the port by Mihai Georgian (see linkstation.c for
55844     Copyright information) and implements support for LinkStation / KuroBox HD
55845     and HG PPC models from Buffalo Technology, whereby HD is deactivated at
55846     the moment, pending network driver fixing.
55848     Notice to users: this is pretty much a barebone port. Support for network
55849     on HG models is already in the U-Boot mainline, but you might also want
55850     patches to switch fan / phy modes depending on the negotiated ethernet
55851     parameters. This patch also doesn't support console switching, booting EM
55852     mode, Buffalo specific ext2 magic number. So, if you want to use any of
55853     those, you need additional patches. Otherwise this patche provides a fully
55854     functional u-boot with a network console on your system.
55856     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
55858 commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
55859 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
55860 Date:   Sun Mar 30 01:22:13 2008 -0500
55862     Add CONFIG_MII_INIT support to related boards
55864     Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
55865     cmd_init.c. Add CONFIG_MII_INIT to board configuration files
55866     that use mii_init() in cmd_init.c.
55868     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
55869     Acked-by: Ben Warren <biggerbadderben@gmail.com>
55871 commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
55872 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
55873 Date:   Sun Mar 30 01:19:06 2008 -0500
55875     Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
55877     Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
55878     CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
55880     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
55882 commit e99ccb488181d012248c6be30b2093e950319fc5
55883 Author: Kumar Gala <galak@kernel.crashing.org>
55884 Date:   Thu Mar 27 11:46:38 2008 -0500
55886     Introduce phys_size_t and move phys_addr_t into asm/types.h
55888     Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
55889     that have larger physical addresses like 44x, 85xx, and 86xx.
55891     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55893 commit 20a14a42a25f72e379f38460b8a8484667536795
55894 Author: Andy Fleming <afleming@freescale.com>
55895 Date:   Wed Apr 2 16:19:07 2008 -0500
55897     Rename include/md5.h to include/u-boot/md5.h
55899     Some systems have md5.h installed in /usr/include/. This isn't the
55900     desired file (we want the one in include/md5.h). This will avoid the
55901     conflict. This fixes the host tools building problem by creating a new
55902     directory for U-Boot specific header files.
55904     [Patch by Andy Fleming, modified to use separate directory by Wolfgang
55905     Denk]
55907     Signed-off-by: Wolfgang Denk <wd@denx.de>
55908     Signed-off-by: Andy Fleming <afleming@freescale.com>
55909     Acked-by: Timur Tabi <timur@freescale.com>
55911 commit f297b7a1ec87433f66320d89d993e1bc738c66b8
55912 Author: Dave Liu <r63238@freescale.com>
55913 Date:   Thu Mar 27 18:51:17 2008 +0800
55915     drivers: code clean up
55917     Signed-off-by: Dave Liu <daveliu@freescale.com>
55919 commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
55920 Author: Dave Liu <r63238@freescale.com>
55921 Date:   Thu Mar 27 18:50:41 2008 +0800
55923     drivers: clean up the ata_piix.h
55925     Signed-off-by: Dave Liu <daveliu@freescale.com>
55927 commit e8f7ba404f1409606962815ecc955a06984b08b3
55928 Author: Dave Liu <r63238@freescale.com>
55929 Date:   Thu Mar 27 18:49:56 2008 +0800
55931     doc: english polishing for README.sata
55933     according to gvb's suggestion, polishing for the doc.
55935     Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
55936     Signed-off-by: Dave Liu <daveliu@freescale.com>
55938 commit 3e3f766a5274d204780460e1879723b565296d34
55939 Author: Kumar Gala <galak@kernel.crashing.org>
55940 Date:   Wed Mar 26 18:53:28 2008 -0500
55942     Fix warnings introduced by I2C bus speed setting patch
55944     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55946 commit 3c735e7437150e8615f26930c7819db85634276d
55947 Author: eran liberty <eran.liberty@gmail.com>
55948 Date:   Thu Mar 27 00:50:49 2008 +0100
55950     Altera Stratix II support
55952     Adds Support for Altera's Stratix II.
55954     Within your board specific init file you will have to call
55956     1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
55957     2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
55959     Altera_desc* contines (for example):
55960         {
55961          Altera_StratixII,      /* part type */
55962          passive_serial,        /* interface type */
55963          1,                     /* bytes of data part can accept */
55964          (void *)(&funcs),      /* interface function table */
55965          0L,                    /* base interface address */
55966          0                      /* implementation specific cookie */
55967          }
55969     funcs is the interface. It is of type altera_board_specific_func.
55970     It looks like this:
55971     altera_board_specific_func func = {
55972         pre_fn,
55973         config_fn,
55974         status_fn,
55975         done_fn,
55976         clk_fn,
55977         data_fn,
55978         abort_fn,
55979         post_fn,
55980     };
55982     you will have to implement these functions, which is usually bit
55983     banging some gpio.
55985     Signed-off-by: Eran Liberty <liberty@extricom.com>
55987 commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
55988 Author: Wolfgang Denk <wd@denx.de>
55989 Date:   Sun Apr 13 14:32:54 2008 -0700
55991     Update CHANGELOG
55993     Signed-off-by: Wolfgang Denk <wd@denx.de>
55995 commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
55996 Author: Sascha Hauer <s.hauer@pengutronix.de>
55997 Date:   Wed Mar 26 20:41:17 2008 +0100
55999     Phytec Phycore-i.MX31 support
56001     This patch adds support for the Phytec Phycore-i.MX31 board
56003     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
56004     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56006 commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
56007 Author: Sascha Hauer <s.hauer@pengutronix.de>
56008 Date:   Wed Mar 26 20:41:09 2008 +0100
56010     mx31 litekit support
56012     This patch adds support for the mx31 litekit board
56014     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
56015     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56017 commit cdace0661208754a53019ea0dc7b803a040e0939
56018 Author: Sascha Hauer <s.hauer@pengutronix.de>
56019 Date:   Wed Mar 26 20:40:49 2008 +0100
56021     add an i2c driver for mx31
56023     This patch adds an i2c driver for Freescale i.MX processors
56025     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
56026     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56028 commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
56029 Author: Sascha Hauer <s.hauer@pengutronix.de>
56030 Date:   Wed Mar 26 20:40:42 2008 +0100
56032     core support for Freescale mx31
56034     This patch adds the core support for Freescale mx31
56036     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
56037     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56039 commit 7ec68862a27c8f6f6d566228de8f6724d964a939
56040 Author: Wolfgang Denk <wd@denx.de>
56041 Date:   Sun Apr 13 14:19:23 2008 -0700
56043     Fix compile error
56045     ...as suggested by Peter Pearse
56047     Signed-off-by: Wolfgang Denk <wd@denx.de>
56049 commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
56050 Author: Sascha Hauer <s.hauer@pengutronix.de>
56051 Date:   Wed Mar 26 20:40:36 2008 +0100
56053     Separate omap24xx specific code from arm1136
56055     Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
56056     to cpu/arm1136/omap24xx.
56058     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
56059     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56061 commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
56062 Author: Mike Frysinger <vapier@gentoo.org>
56063 Date:   Tue Jan 29 18:21:05 2008 -0500
56065     disable caches before booting an app for Blackfin apps
56067     It isn't generally save to execute applications outside of U-Boot with caches
56068     enabled due to the way the Blackfin processor handles caches (requires
56069     software assistance).  This patch disables caches before booting an ELF or
56070     just booting raw code.  The previous discussion on the patch was that we
56071     wanted to use weaks instead, but that proved to not be feasible when multiple
56072     symbols are involved, which puts us back at the ifdef solution.  I've
56073     minimized the ugliness by moving the setup step outside of the main function.
56075     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56077 commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
56078 Author: Wolfgang Denk <wd@denx.de>
56079 Date:   Sun Apr 13 10:03:54 2008 -0700
56081     ppc: Get rid of unused machine type definitions
56083     Signed-off-by: Wolfgang Denk <wd@denx.de>
56085 commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
56086 Author: Wolfgang Denk <wd@denx.de>
56087 Date:   Sun Apr 13 09:59:26 2008 -0700
56089     Coding Style cleanup; update CHANGELOG
56091     Signed-off-by: Wolfgang Denk <wd@denx.de>
56093 commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
56094 Author: Larry Johnson <lrj@acm.org>
56095 Date:   Thu Feb 21 13:58:11 2008 -0500
56097     LM73 bug fix for negative temperatures and cleanup
56099     When the LM73 temperature sensor measures a temperature below 0 C, the
56100     current driver does not perform sign extension, so the result returned is
56101     512 C too high.  This patch fixes the problem, and does general cleanup
56102     of the code.
56104     Signed-off-by: Larry Johnson <lrj@acm.org>
56106 commit 96ef831f713289afba19da0c8f905e99da2b23e0
56107 Author: Guennadi Liakhovetski <lg@denx.de>
56108 Date:   Thu Apr 3 13:36:02 2008 +0200
56110     cfi_flash: Support buffered writes on non-standard Spansion NOR flash
56112     Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
56113     series require different addresses for buffered write commands. Define a
56114     configuration option to support buffered writes on those chips. A more
56115     elegant solution would be to automatically detect those chips by parsing
56116     their CFI records, but that would require introduction of a fixup table
56117     into the cfi_flash driver.
56119     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56121 commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
56122 Author: Lee Nipper <lee.nipper@freescale.com>
56123 Date:   Thu Apr 10 09:35:06 2008 -0500
56125     mpc83xx: Update DIMM data bus width test to support 40-bit width
56127     32-bit wide ECC memory modules report 40-bit width.
56128     Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
56130     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
56131     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56133 commit 5fb5a689d822ca61e814bd523fc930af335242fa
56134 Author: Dave Liu <r63238@freescale.com>
56135 Date:   Mon Mar 31 17:05:12 2008 +0800
56137     mpc83xx: Fix the bug of serdes initialization
56139     Currently the serdes will not be initializated due to the
56140     partid's error.
56142     Signed-off-by: Dave Liu <daveliu@freescale.com>
56143     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56145 commit 2000784818f043db7ca60e2846a72d097766b894
56146 Author: Dave Liu <r63238@freescale.com>
56147 Date:   Thu Apr 3 16:28:29 2008 +0800
56149     mpc83xx: Fix the SATA clock setting of 837x targets
56151     Currently the SATA controller clock is configured as CSB clock,
56152     usually the CSB clock is 400/333/266MHz.
56154     However, The SATA IP block is only guaranteed to operate up to
56155     200 MHz as stated in the HW spec.
56157     The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
56159     This patch makes the SATA clock as half of CSB clock.
56161     Signed-off-by: Dave Liu <daveliu@freescale.com>
56162     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56164 commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
56165 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56166 Date:   Wed Apr 2 13:41:21 2008 +0200
56168     mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
56170     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56171     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56173 commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
56174 Author: Kumar Gala <galak@kernel.crashing.org>
56175 Date:   Wed Apr 9 04:20:57 2008 -0500
56177     85xx: Fix detection of MP cpu spin up
56179     We were looking at the wrong memory offset to determine of a secondary
56180     cpu had been spun up or not.  Also added a warning message if the
56181     all the secondary cpus we expect don't spin up.
56183     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56185 commit f3e04bdc3f360c66801a9048956e61e41a16edba
56186 Author: Kumar Gala <galak@kernel.crashing.org>
56187 Date:   Tue Apr 8 10:45:50 2008 -0500
56189     85xx: Use SVR_SOC_VER instead of SVR_VER
56191     The recent change introduced by 'Update SVR numbers to expand support'
56192     now requires that we use SVR_SOC_VER instead of SVR_VER if we want
56193     to compare against a particular processor id.
56195     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56197 commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
56198 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
56199 Date:   Fri Apr 11 10:00:35 2008 -0400
56201     ppc4xx: Fix power mgt definitions for PPC440
56203     Corrected DCR addresses of PPC440EP power management registers.
56205     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
56207 commit 950a392464e616b4590bc4501be46e2d7d162dea
56208 Author: Wolfgang Denk <wd@denx.de>
56209 Date:   Fri Apr 11 15:11:26 2008 +0200
56211     Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
56213     Reverting became necessary after it turned out that the patches in
56214     the u-boot-arm repo were modified, and in some cases corrupted.
56216     This reverts the following commits:
56218         066bebd6353e33af3adefc3404560871699e9961
56219         7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
56220         c88ae20580b2b01487b4cdcc8b2a113f551aee36
56221         a147e56f03871bba4f05058d5e04ce7deb010b04
56222         d6674e0e2a6a1f033945f78838566210d3f28c95
56223         8c8463cce44d849e37744749b32d38e1dfb12e50
56224         c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
56225         8bf69d81782619187933a605f1a95ee1d069478d
56226         8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
56227         a574a73852a527779234e73e17e7597fd8128882
56228         1377b5583a48021d983e1fd565f7d40c89e84d63
56229         1704dc20917b4f71e373e2c888497ee666d40380
56231     Signed-off-by: Wolfgang Denk <wd@denx.de>
56233 commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
56234 Author: Stefan Roese <sr@denx.de>
56235 Date:   Fri Apr 11 07:02:29 2008 +0200
56237     ppc4xx: Update Kilauea defconfig to use device-tree booting as default
56239     This patch reworks the default environment on Kilauea/Haleakala. Now
56240     "net_nfs" for exmaple uses the device-tree style booting formerly know
56241     as "net_nfs_fdt". Also the addresses in RAM were changed because of the
56242     new image booting support, which check for image overwriting. So the
56243     addresses needed togeet adjusted.
56245     Signed-off-by: Stefan Roese <sr@denx.de>
56247 commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
56248 Author: Stefan Roese <sr@denx.de>
56249 Date:   Wed Apr 9 11:58:02 2008 +0200
56251     ppc4xx: Fix Canyonlands default environment to work with new image support
56253     Since the new image support checks for image overwriting, the default
56254     environment needs to get adjusted to use correct addresses.
56256     Signed-off-by: Stefan Roese <sr@denx.de>
56258 commit dfc6c7b647dba7ab86749616f0e9e5740deed422
56259 Author: Stefan Roese <sr@denx.de>
56260 Date:   Wed Apr 9 11:54:11 2008 +0200
56262     ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
56264     The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
56265     closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
56266     on 4xx systems _start currently cannot be used for this calculation.
56267     So revert back to the original version for now.
56269     Signed-off-by: Stefan Roese <sr@denx.de>
56271 commit f91374f65eae8b42cac329e06ba1c54728278efb
56272 Author: Michal Simek <monstr@monstr.eu>
56273 Date:   Fri Mar 28 12:49:52 2008 +0100
56275     microblaze: Sort microblaze boards in MAKEALL script
56277 commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
56278 Author: Michal Simek <monstr@monstr.eu>
56279 Date:   Fri Mar 28 11:58:45 2008 +0100
56281     microblaze: clean microblaze_config.mk
56283     FLAGS are generated by U-BOOT generator.
56284     Board specific FLAGS are in board directory
56286     Signed-off-by: Michal Simek <monstr@monstr.eu>
56288 commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
56289 Author: Michal Simek <monstr@monstr.eu>
56290 Date:   Fri Mar 28 12:47:19 2008 +0100
56292     microblaze: xupv2p fix config file for supporting FDT
56294 commit 188dc16b189143573b1ed90e584bf866d75cdd12
56295 Author: Michal Simek <monstr@monstr.eu>
56296 Date:   Fri Mar 28 11:53:02 2008 +0100
56298     microblaze: ml401 fix config file for supporting FDT
56300     Signed-off-by: Michal Simek <monstr@monstr.eu>
56302 commit 4c6a6f02e239236261333759997eeaf86b30b54c
56303 Author: Michal Simek <monstr@monstr.eu>
56304 Date:   Fri Mar 28 11:22:48 2008 +0100
56306     microblaze: ml401 - add ifdef for GPIO
56308     Signed-off-by: Michal Simek <monstr@monstr.eu>
56310 commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
56311 Author: Michal Simek <monstr@monstr.eu>
56312 Date:   Fri Mar 28 12:13:03 2008 +0100
56314     microblaze: clean uart16550 and uartlite handling
56316     Signed-off-by: Michal Simek <monstr@monstr.eu>
56318 commit 0b20f250877441460fb79d72192954abe8498834
56319 Author: Michal Simek <monstr@monstr.eu>
56320 Date:   Fri Mar 28 11:08:31 2008 +0100
56322     microblaze: Add Emaclite driver to Makefile
56324     Signed-off-by: Michal Simek <monstr@monstr.eu>
56326 commit 868cde5310f88234b774878e4f06e79df10a88b3
56327 Author: Michal Simek <monstr@monstr.eu>
56328 Date:   Fri Mar 28 11:08:01 2008 +0100
56330     microblaze: Add Emac driver to Makefile
56332     Signed-off-by: Michal Simek <monstr@monstr.eu>
56334 commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
56335 Author: Michal Simek <monstr@monstr.eu>
56336 Date:   Fri Mar 28 12:42:29 2008 +0100
56338     microblaze: add Emac ethernet driver
56340 commit 89c53891b18cbafd29ab8931b40e27ad231b6085
56341 Author: Michal Simek <monstr@monstr.eu>
56342 Date:   Fri Mar 28 12:41:56 2008 +0100
56344     microblaze: add Emaclite ethernet driver
56346 commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
56347 Author: Michal Simek <monstr@monstr.eu>
56348 Date:   Fri Mar 28 11:04:01 2008 +0100
56350     microblaze: ML401 and XUPV2P remove emac and emaclite reference
56352     Signed-off-by: Michal Simek <monstr@monstr.eu>
56354 commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
56355 Author: Michal Simek <monstr@monstr.eu>
56356 Date:   Fri Mar 28 10:59:32 2008 +0100
56358     microblaze: remove old setting for emac driver
56360     Signed-off-by: Michal Simek <monstr@monstr.eu>
56362 commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
56363 Author: Michal Simek <monstr@monstr.eu>
56364 Date:   Fri Mar 28 10:58:15 2008 +0100
56366     microblaze: Clean Makefile from ancient emac driver
56368     Signed-off-by: Michal Simek <monstr@monstr.eu>
56370 commit ab68f921d9c741830f721c3d879c13a0c5597183
56371 Author: Daniel Hellstrom <daniel@gaisler.com>
56372 Date:   Fri Mar 28 10:20:43 2008 +0100
56374     SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
56376     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56378 commit 6ed8a43a19bb0275501bc286007daafa923552cf
56379 Author: Daniel Hellstrom <daniel@gaisler.com>
56380 Date:   Wed Mar 26 23:38:48 2008 +0100
56382     SPARC/LEON3: added support for GR-CPCI-AX2000 FPGA AX board. The FPGA is exchangeable but a standard LEON3 design is assumed. See www.gaisler.com for information.
56384     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56386 commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
56387 Author: Daniel Hellstrom <daniel@gaisler.com>
56388 Date:   Wed Mar 26 23:34:47 2008 +0100
56390     SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
56392     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56394 commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
56395 Author: Daniel Hellstrom <daniel@gaisler.com>
56396 Date:   Fri Mar 28 10:06:52 2008 +0100
56398     SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
56400     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56402 commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
56403 Author: Daniel Hellstrom <daniel@gaisler.com>
56404 Date:   Wed Mar 26 23:26:48 2008 +0100
56406     SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
56408     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56410 commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
56411 Author: Daniel Hellstrom <daniel@gaisler.com>
56412 Date:   Fri Mar 28 10:00:33 2008 +0100
56414     SPARC: Added support for SPARC LEON2 SOC Processor.
56416     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56418 commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
56419 Author: Daniel Hellstrom <daniel@gaisler.com>
56420 Date:   Wed Mar 26 23:00:38 2008 +0100
56422     SPARC/LEON3: Added AMBA Bus Plug&Play information print command (ambapp). It can print available cores (type: AHB Master, AHB Slave, APB Slave), their address ranges, IRQ number and version.
56424     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56426 commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
56427 Author: Daniel Hellstrom <daniel@gaisler.com>
56428 Date:   Wed Mar 26 22:51:29 2008 +0100
56430     SPARC: Added support for SPARC LEON3 SOC processor.
56432     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56434 commit bf3d8b31169546fcddb4737391e1893fb12d033a
56435 Author: Daniel Hellstrom <daniel@gaisler.com>
56436 Date:   Fri Mar 28 08:29:26 2008 +0100
56438     SPARC: added SPARC support for new uimage in common code.
56440     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56442 commit 00ab32c85405a4fe65fd4128243086210fc90a21
56443 Author: Daniel Hellstrom <daniel@gaisler.com>
56444 Date:   Wed Mar 26 22:36:03 2008 +0100
56446     SPARC: added SPARC board information to the command bdinfo.
56448     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56450 commit c2f02da21a3f37f0878554eebc785e04fdc4e128
56451 Author: Daniel Hellstrom <daniel@gaisler.com>
56452 Date:   Fri Mar 28 09:47:00 2008 +0100
56454     SPARC: Added generic support for SPARC architecture.
56456     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56458 commit e54ec0f016803e4d9524ff71f7971bda0c51b287
56459 Author: Stefan Roese <sr@denx.de>
56460 Date:   Thu Apr 3 14:50:34 2008 +0200
56462     ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
56464     This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
56465     has 2 RGMII instances and we need to configure the 2nd RGMII instance
56466     for the EMAC2+3 channels.
56468     Signed-off-by: Stefan Roese <sr@denx.de>
56470 commit c2a545ce33b26d80337f80b533828839249fb1c9
56471 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56472 Date:   Wed Apr 2 08:03:56 2008 +0200
56474     MPC8xx: Fix libfdt support introduced in commit 77ff7b74
56476     fdt.c: In function 'ft_cpu_setup':
56477     fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
56478     fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
56479     fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
56480     fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
56482     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56484 commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
56485 Author: Andy Fleming <afleming@freescale.com>
56486 Date:   Mon Mar 31 20:45:56 2008 -0500
56488     Fix fdt set command to conform to dts spec
56490     The fdt set command was treating properties specified as <00> and <0011>
56491     as byte streams, rather than as an array of cells.  As we already have
56492     syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
56493     we should use the <> syntax to describe arrays of cells, which are always
56494     32-bits per element.  If we imagine this likely (IMHO) scenario:
56496     > fdt set /ethernet-phy@1 reg <1>
56498     With the old code, this would create a bad fdt, since the reg cell would be
56499     made to be one byte in length.  But the cell must be 4 bytes, so this would
56500     break mysteriously.
56502     Also, the dts spec calls for constants inside the angle brackets (<>)
56503     to conform to C constant standards as they pertain to base.
56504     Take this scenario:
56506     > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
56508     The old fdt command would complain that it couldn't parse that.  Or, if you
56509     wanted to specify that a certain clock ran at 33 MHz, you'd be required to
56510     do this:
56512     > fdt set /mydev clock <1f78a40>
56514     Whereas the new code will accept decimal numbers.
56516     While I was in there, I extended the fdt command parser to handle property
56517     strings which are split across multiple arguments:
56519     > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
56520     > fdt p /ethernet@f00
56521     ethernet@f00 {
56522         interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
56523     };
56525     Lastly, the fdt print code was rearranged slightly to print arrays of cells
56526     if the length of the property is a multiple of 4 bytes, and to not print
56527     leading zeros.
56529     Signed-off-by: Andy Fleming <afleming@freescale.com>
56531 commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
56532 Author: Stefan Roese <sr@denx.de>
56533 Date:   Wed Apr 2 08:39:33 2008 +0200
56535     ppc4xx: Canyonlands: Init SATA/PCIe port correctly
56537     Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
56538     interface. This usage can be configured with the jumper J6. This patch
56539     correctly configures the SATA/PCIe PHY for SATA usage when this jumper
56540     is installed.
56542     Signed-off-by: Stefan Roese <sr@denx.de>
56544 commit 6fe2946f198481254a6ee9600d7456b8316a4083
56545 Author: Kim Phillips <kim.phillips@freescale.com>
56546 Date:   Fri Mar 28 17:37:49 2008 -0500
56548     remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
56550     finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
56551     "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
56552     started.
56554     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56556 commit b5873f1732b92a25690e1513b90dfb0d644f6697
56557 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56558 Date:   Tue Apr 1 07:30:51 2008 +0200
56560     dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
56562     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56564 commit 2d934ea51f276522b532f870a820e844ff480b5b
56565 Author: Tor Krill <tor@excito.com>
56566 Date:   Fri Mar 28 15:29:45 2008 +0100
56568     Add Vitesse 8601 support to TSEC driver
56570     Add phy_info for Vitesse VSC8601.
56571     Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
56573     Signed-off-by: Tor Krill <tor@excito.com>
56574     Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
56575     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56577 commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
56578 Author: Daniel Hellstrom <daniel@gaisler.com>
56579 Date:   Mon Mar 31 14:25:00 2008 +0000
56581     SPARC: added SMC91111 driver in and out macros for LEON processors.
56583     This patch makes SPARC/LEON processors able to read and write
56584     to the SMC91111 chip using the chip external I/O bus of the memory
56585     controller. This patchs defines the standard in and out macros
56586     expected by the SMC9111 driver.
56588     To access that I/O bus one must set up the memory controller
56589     (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
56590     up this correctly when the other MCTRL parameters are set up. It
56591     can be set up from the board configuration header file.
56593     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
56594     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56596 commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
56597 Author: Stelian Pop <stelian@popies.net>
56598 Date:   Wed Mar 26 18:52:34 2008 +0100
56600     Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
56602     Signed-off-by: Stelian Pop <stelian@popies.net>
56604 commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
56605 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56606 Date:   Mon Mar 31 21:31:04 2008 +0200
56608     AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
56610     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56612 commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
56613 Author: Stelian Pop <stelian@popies.net>
56614 Date:   Wed Mar 26 18:52:33 2008 +0100
56616     Add support for AT91SAM9260EK
56618     Support for booting from internal DataFlash, external DataFlash card
56619     or NAND flash is available.
56621     Signed-off-by: Stelian Pop <stelian@popies.net>
56623 commit 1762f13b4aab88b685b1722f17dada247945624b
56624 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56625 Date:   Mon Mar 31 21:20:49 2008 +0200
56627     AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
56629     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56631 commit 761712188b353494defb2b644491ff73d0daaa6f
56632 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56633 Date:   Mon Mar 31 21:12:17 2008 +0200
56635     AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
56637     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56639 commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
56640 Author: Stelian Pop <stelian@popies.net>
56641 Date:   Wed Mar 26 20:52:32 2008 +0100
56643     Port AT91CAP9 to the new headers
56645     Adapt the existing AT91CAP9 code to the new headers and APIs.
56647     Signed-off-by: Stelian Pop <stelian@popies.net>
56649 commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
56650 Author: Stelian Pop <stelian@popies.net>
56651 Date:   Wed Mar 26 19:52:31 2008 +0100
56653     Finish header files reworking
56655     Replace AT91CAP9.h file with several splitted header files coming
56656     from the Linux kernel.
56658     This is part 2 of the replacement: more header imports and edits.
56660     Signed-off-by: Stelian Pop <stelian@popies.net>
56662 commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
56663 Author: Stelian Pop <stelian@popies.net>
56664 Date:   Wed Mar 26 19:52:30 2008 +0100
56666     Import several header files from Linux
56668     Replace AT91CAP9.h file with several splitted header files coming
56669     from the Linux kernel.
56671     This is part 1 of the replacement: pristine header files import.
56673     Signed-off-by: Stelian Pop <stelian@popies.net>
56675 commit a8a78f2d99dc1bd30dc3595da118539b506c6118
56676 Author: Stelian Pop <stelian@popies.net>
56677 Date:   Wed Mar 26 20:52:28 2008 +0100
56679     Move at91cap9 specific files to at91sam9 directory
56681     AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
56682     common infrastructure can be used. Let this infrastructure be
56683     named after the AT91SAM9 family, and move the existing AT91CAP9
56684     files to the new place.
56686     Signed-off-by: Stelian Pop <stelian@popies.net>
56688 commit 61106a565870ff503f92b251b94bd7afef889a04
56689 Author: Stelian Pop <stelian@popies.net>
56690 Date:   Wed Mar 26 21:52:27 2008 +0100
56692     Use timer_init() instead of board supplied interrupt_init()
56694     The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
56695     the board, so use timer_init() instead of interrupt_init().
56697     Signed-off-by: Stelian Pop <stelian@popies.net>
56699 commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
56700 Author: Stelian Pop <stelian@popies.net>
56701 Date:   Wed Mar 26 21:52:36 2008 +0100
56703     Cleanup DataFlash partition handling
56705     DataFlash partition information has become a mess. This patch
56706     defines a single partition scheme for Atmel DataFlashes. This partition
56707     scheme will be used by all AT91CAP9 and AT91SAM9 boards.
56709     Signed-off-by: Stelian Pop <stelian@popies.net>
56711 commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
56712 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56713 Date:   Fri Mar 28 08:47:45 2008 -0500
56715     ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
56717     When the version_string function in start.S is not 4-byte align,
56718     it will cause the compiler generates "unaligned opcodes detected
56719     in executable segment". This issue affects all ColdFire CPUs.
56720     By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
56721     it is not aligned.
56723     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56724     Acked-by: John Rigby <jrigby@freescale.com>
56726 commit bae61eefe15b4d454060a7140e49ae58322be803
56727 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56728 Date:   Tue Mar 25 15:41:15 2008 -0500
56730     ColdFire: Add dspi and serial flash support for MCF5445x
56732     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56733     Acked-by: John Rigby <jrigby@freescale.com>
56735 commit 48ead7a7a922fceaf494e352abfab8216a41b417
56736 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56737 Date:   Tue Mar 18 17:37:01 2008 -0500
56739     ColdFire: Remove R5200 board
56741     This board never went into production
56743     Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
56744     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56745     Acked-by: John Rigby <jrigby@freescale.com>
56747 commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
56748 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
56749 Date:   Thu Jan 24 14:02:32 2008 -0600
56751     ColdFire: Added M5275EVB support.
56753     Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
56754     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56755     Acked-by: John Rigby <jrigby@freescale.com>
56757 commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
56758 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
56759 Date:   Mon Feb 4 15:38:20 2008 -0600
56761     ColdFire: Added MCF5275 cpu support.
56763     Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
56764     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56765     Acked-by: John Rigby <jrigby@freescale.com>
56767 commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
56768 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56769 Date:   Mon Mar 17 12:14:11 2008 -0500
56771     ColdFire: Define bootdelay in configuration file for M52277EVB
56773     Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
56774     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56775     Acked-by: John Rigby <jrigby@freescale.com>
56777 commit 77878f16cedee17161ff2336990970fffc6cea35
56778 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56779 Date:   Mon Mar 17 12:09:07 2008 -0500
56781     ColdFire: Fix second memory Chipselect for M5475EVB
56783     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56784     Acked-by: John Rigby <jrigby@freescale.com>
56786 commit 43d60642395a550956cb21d287c8cfa563913d28
56787 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56788 Date:   Thu Mar 13 14:26:32 2008 -0500
56790     ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
56792     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
56793     Acked-by: John Rigby <jrigby@freescale.com>
56795 commit eb14ebe813a0cb5d47905228da446a5ad692473b
56796 Author: Larry Johnson <lrj@acm.org>
56797 Date:   Sun Mar 30 20:33:04 2008 -0500
56799     ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
56801     Signed-off-by: Larry Johnson <lrj@acm.org>
56803 commit 02e3892021112f21067d9ed1d04ae4182725ba52
56804 Author: Stefan Roese <sr@denx.de>
56805 Date:   Mon Mar 31 12:20:48 2008 +0200
56807     ppc4xx: Small whitespace fix of esd patches
56809     Signed-off-by: Stefan Roese <sr@denx.de>
56811 commit 034394abb524785047c815f00dde8cdbdc1593c5
56812 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56813 Date:   Sun Mar 30 18:52:44 2008 +0200
56815     ppc4xx: Cleanup PMC440 board support
56817     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56819 commit a6cc6c37188d85c25d167a4515da86f48d9a583e
56820 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56821 Date:   Sun Mar 30 18:52:06 2008 +0200
56823     ppc4xx: Add ptm configuration variables for PMC440
56825     Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
56826     environment variables.
56828     Cleanup pci_target_init.
56830     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56832 commit 7c91f51a2fe296909147f1646a1412729dd10b1d
56833 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56834 Date:   Sun Mar 30 18:01:15 2008 +0200
56836     ppc4xx: Minor updates for DU440 boards
56838     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
56840 commit d5bffeb868d6b4d462f558dac43011027b6644b7
56841 Author: Mike Frysinger <vapier@gentoo.org>
56842 Date:   Tue Feb 19 00:54:20 2008 -0500
56844     Blackfin: cleanup and overhaul common board init functions
56846     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56848 commit b86b3416f874358acaf07519e7620cdb2145f75b
56849 Author: Mike Frysinger <vapier@gentoo.org>
56850 Date:   Tue Feb 19 00:50:58 2008 -0500
56852     Blackfin: cleanup lib_blackfin/cache.c
56854     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56856 commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
56857 Author: Mike Frysinger <vapier@gentoo.org>
56858 Date:   Sun Mar 30 15:46:13 2008 -0400
56860     Blackfin: unify cpu and boot modes
56862     All of the duplicated code for Blackfin processors and boot modes have been
56863     unified.  After all, the core is the same for all processors, just the
56864     peripheral set differs (which gets handled in the drivers).
56866     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56868 commit 880cc4381ea8360248cddcdf87a64566745a5724
56869 Author: Stelian Pop <stelian@popies.net>
56870 Date:   Wed Mar 26 22:52:35 2008 +0100
56872     Fix CFG_NO_FLASH compilation.
56874     Many Atmel boards have no "real" (NOR) flash on board, and rely only
56875     on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
56876     be present in a board configuration file, while still enabling flash
56877     commands like 'flinfo', 'protect', etc.
56879     Signed-off-by: Stelian Pop <stelian@popies.net>
56881 commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
56882 Author: Mike Frysinger <vapier@gentoo.org>
56883 Date:   Tue Feb 19 00:58:13 2008 -0500
56885     Blackfin: BF537-stamp: cleanup spi flash driver
56887     This punts the old spi flash driver for a new/generalized one until the
56888     common one can be integrated.
56890     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56892 commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
56893 Author: Ben Warren <biggerbadderben@gmail.com>
56894 Date:   Sun Mar 30 11:34:34 2008 -0400
56896     Fix macro typo in common/cmd_mii.c
56898     This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206.  I
56899     actually applied the wrong patch.
56901     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56903 commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
56904 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56905 Date:   Sun Mar 30 16:39:53 2008 +0200
56907     use correct at91rm9200 register name in m501sk board
56909     This fixes a naming bug for at91rm9200 lowlevel init code:
56910     NOR boot flash is on chipselect 0, not chipselect 2.  This
56911     makes code use the register name from chip datasheets.
56913     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56915 commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
56916 Author: David Brownell <david-b@pacbell.net>
56917 Date:   Fri Jan 18 12:55:00 2008 -0800
56919     use correct at91rm9200 register name
56921     This fixes a naming bug for at91rm9200 lowlevel init code:
56922     NOR boot flash is on chipselect 0, not chipselect 2.  This
56923     makes code use the register name from chip datasheets.
56925     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
56927 commit a3543d6dc52b0ba9c64016687cf32d600b31a476
56928 Author: David Brownell <david-b@pacbell.net>
56929 Date:   Fri Jan 18 12:45:45 2008 -0800
56931     add missing ARM boards to MAKEALL
56933     Add some missing ARM boards to MAKEALL.  These build correctly,
56934     unlike several of the boards already listed.
56936     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
56938 commit 066bebd6353e33af3adefc3404560871699e9961
56939 Author: Peter Pearse <peter.pearse@arm.com>
56940 Date:   Sun Mar 30 11:34:09 2008 +0100
56942     Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
56943     to prevent compilation error.
56945     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
56947 commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
56948 Author: Guennadi Liakhovetski <[lg@denx.de]>
56949 Date:   Sun Mar 30 11:32:30 2008 +0100
56951     Support for the MX31ADS evaluation board from Freescale
56953     This patch adds support for the MX31ADS evaluation board from Freescale,
56954     initialization code is copied from RedBoot sources, also provided by Freescale.
56956     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56958 commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
56959 Author: Sascha Hauer <s.hauer@pengutronix.de>
56960 Date:   Sun Mar 30 11:32:27 2008 +0100
56962     Phytec Phycore-i.MX31 support
56964     This patch adds support for the Phytec Phycore-i.MX31 board
56966     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
56967     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56969 commit a147e56f03871bba4f05058d5e04ce7deb010b04
56970 Author: Sascha Hauer <s.hauer@pengutronix.de>
56971 Date:   Sun Mar 30 11:32:24 2008 +0100
56973     mx31 litekit support
56975     This patch adds support for the mx31 litekit board
56977     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
56978     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56980 commit d6674e0e2a6a1f033945f78838566210d3f28c95
56981 Author: Sascha Hauer <s.hauer@pengutronix.de>
56982 Date:   Sun Mar 30 11:32:21 2008 +0100
56984     add SMSC LAN9x1x Network driver
56986     This patch adds a driver for the following smsc network controllers:
56987     LAN9115
56988     LAN9116
56989     LAN9117
56990     LAN9215
56991     LAN9216
56992     LAN9217
56994     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
56995     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
56997 commit 8c8463cce44d849e37744749b32d38e1dfb12e50
56998 Author: Sascha Hauer <s.hauer@pengutronix.de>
56999 Date:   Sun Mar 30 11:32:16 2008 +0100
57001     add an i2c driver for mx31
57003     This patch adds an i2c driver for Freescale i.MX processors
57005     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
57006     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
57008 commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
57009 Author: Sascha Hauer <s.hauer@pengutronix.de>
57010 Date:   Sun Mar 30 11:30:43 2008 +0100
57012     core support for Freescale mx31
57014     This patch adds the core support for Freescale mx31
57016     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
57017     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
57019 commit 8bf69d81782619187933a605f1a95ee1d069478d
57020 Author: Sascha Hauer <s.hauer@pengutronix.de>
57021 Date:   Sun Mar 30 11:28:46 2008 +0100
57023     Separate omap24xx specific code from arm1136
57025     Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
57027     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
57028     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
57030 commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
57031 Author: Peter Pearse <peter.pearse@arm.com>
57032 Date:   Sun Mar 30 11:23:05 2008 +0100
57034     Add pmdra into MAKEALL
57036     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
57038 commit a574a73852a527779234e73e17e7597fd8128882
57039 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
57040 Date:   Sun Mar 30 11:21:58 2008 +0100
57042     Adds support for the Prodrive PMDRA board, based on a DM6441
57044     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
57046 commit 1377b5583a48021d983e1fd565f7d40c89e84d63
57047 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
57048 Date:   Sun Mar 30 11:11:34 2008 +0100
57050     Removes all board specific code from the arch. part for DM644x (DaVinci) boards
57052     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
57054 commit 1704dc20917b4f71e373e2c888497ee666d40380
57055 Author: Dirk Behme <dirk.behme@gmail.com>
57056 Date:   Sun Mar 30 11:09:01 2008 +0100
57058     - Remove *_masked() functions as noted by Wolfgang
57059     - Adapt register naming to recent TI spec (sprue26, March 2007)
57060     - Fix reset_timer() handling
57061     - As reported by Pieter [1] the overflow fix introduced a
57062     delay of factor 16 (e.g 2 seconds became 32). While the
57063     overflow fix is basically okay, it missed to divide udelay by
57064     16, too. Fix this.
57065     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
57066     - Remove software division of timer count value (DIV(x)
57067     macro) and do it in hardware (TIM_CLK_DIV).
57068     Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
57069     and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
57070     the hints & testing!
57072     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
57074     Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
57076 commit ac3315c26e143c31680750c9c13f027efbcc887e
57077 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
57078 Date:   Thu Mar 6 16:45:44 2008 +0100
57080     new PHY @ e1000 - 2nd try
57082     Add 82541ER device with latest integrated IGP2 PHY.
57083     Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
57085     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
57086     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57088 commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
57089 Author: Daniel Hellstrom <daniel@gaisler.com>
57090 Date:   Fri Mar 28 20:22:53 2008 +0100
57092     SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
57094     GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
57095     a debug link (EDCL). The GRETH core is documented in GRIP.pdf
57096     available at www.gaisler.com.
57098     If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
57099     offloading etc.) can be determined by a bit in the control register.
57100     The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
57102     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
57103     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57105 commit 233a8bcd94997f3f345833a3b82e836222f2a206
57106 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
57107 Date:   Mon Mar 17 17:08:22 2008 -0500
57109     Add CONFIG_MII_INIT in cmd_mii.c
57111     Provide common configuration in do_mii() to execute mii_init()
57112     for all cpu architectures
57114     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
57115     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57117 commit f605479de2deb11e834f31dfdb0af107c86aced6
57118 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
57119 Date:   Mon Mar 17 17:08:16 2008 -0500
57121     ColdFire: Fix FEC transmit issue for MCF5275
57123     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
57124     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57126 commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
57127 Author: Aras Vaichas <arasv@magtech.com.au>
57128 Date:   Wed Mar 26 09:43:57 2008 +1100
57130     DHCP request fix for Windows Server 2003
57132     Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
57133     delay before sending "DHCP Request" in net/bootp.c. Required to overcome
57134     interoperability problems with Windows Server 200x DHCP server when U-Boot
57135     client responds too fast for server to handle.
57137     Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
57138     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57140 commit 97bf85d784fbed485e652eb907589ad0d5cb7262
57141 Author: Daniel Hellstrom <daniel@gaisler.com>
57142 Date:   Fri Mar 28 20:40:19 2008 +0100
57144     MTD/CFI: flash_read64 is defined a weak function (for SPARC)
57146     SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
57147     SPARC CPUs implement flash_read64 which calls __raw_readq.
57149     For current SPARC architectures (LEON2 and LEON3) each read from the
57150     FLASH must lead to a cache miss. This is because FLASH can not be set
57151     non-cacheable since program code resides there, and alternatively disabling
57152     cache is poor from performance view, or doing a cache flush between each
57153     read is even poorer.
57155     Forcing a cache miss on a SPARC is done by a special instruction "lda" -
57156     load alternative space, the alternative space number (ASI) is processor
57157     implementation spcific and can be found by including <asm/processor.h>.
57159     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
57161 commit 70431e8a7393b6b793f77957f95b999fc9a269b8
57162 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
57163 Date:   Fri Mar 28 15:41:25 2008 +0100
57165     Make MPC83xx one step closer to full relocation.
57167     Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
57168     and use GOT relative reference.
57170     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
57171     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57173 commit 5b2793a3f3de34d439232b05acc8af67a028fd35
57174 Author: Michael Barkowski <michael.barkowski@freescale.com>
57175 Date:   Thu Mar 27 14:34:43 2008 -0400
57177     mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
57179     This patch fixes eeprom page size so that you can now write more than
57180     64 bytes at a time.
57182     It also makes the board take MAC addresses, if found, from EEPROM.
57184     User should place up to 4 addresses at offset 0x7f00, for
57185     eth{,1,2,3}addr.  Any unused addresses should be zero.  This group of
57186     four six-byte values should have it's CRC at the end.  crc32 and
57187     eeprom commands can be used to accomplish this.
57189     If CRC fails, MAC addresses come from the environment.  If CRC
57190     succeeds, the environment is overwritten at startup.
57192     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
57193     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57195 commit 8f325cff31f6e745e6540014b131b9a97f61944c
57196 Author: Michael Barkowski <michael.barkowski@freescale.com>
57197 Date:   Fri Mar 28 15:15:38 2008 -0400
57199     mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
57201     Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
57202     controller on the PCI bus in Linux on the MPC8323ERDB.
57204     This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
57205     config file.
57207     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
57208     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57210 commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
57211 Author: Kim Phillips <kim.phillips@freescale.com>
57212 Date:   Fri Mar 28 10:19:07 2008 -0500
57214     mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
57216     in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
57217     85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
57218     and processor ID display.  Add REVID_{MAJ,MIN}OR macros to make
57219     REVID dependent code simpler.  Also added PARTID_NO_E and IS_E_PROCESSOR
57220     convenience macros.
57222     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57224 commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
57225 Author: Kim Phillips <kim.phillips@freescale.com>
57226 Date:   Fri Mar 28 10:18:53 2008 -0500
57228     mpc83xx: display ddr frequency in board_add_ram_info banner
57230     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57232 commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
57233 Author: Kim Phillips <kim.phillips@freescale.com>
57234 Date:   Fri Mar 28 10:18:40 2008 -0500
57236     mpc83xx: unreinvent mem_clk
57238     delete ddr_clk and use mem_clk instead.  Rename other ddr_*_clk to
57239     mem_*_clk for consistency's sake.
57241     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57243 commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
57244 Author: Kim Phillips <kim.phillips@freescale.com>
57245 Date:   Fri Mar 28 14:31:23 2008 -0500
57247     mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
57249     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57251 commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
57252 Author: Dave Liu <r63238@freescale.com>
57253 Date:   Wed Mar 26 22:57:19 2008 +0800
57255     mpc83xx: enable the SATA interface on mpc837xemds board
57257     Enable the first two SATA interfaces on MPC837xEMDS board,
57258     The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
57260     Signed-off-by: Dave Liu <daveliu@freescale.com>
57261     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57263 commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
57264 Author: Dave Liu <r63238@freescale.com>
57265 Date:   Wed Mar 26 22:56:36 2008 +0800
57267     mpc83xx: initialize serdes for MPC837xEMDS boards
57269     This patch is stolen from Anton Vorontsov's patch
57270     for mpc837xerdb boards.
57272     The reference clk and xcorevdd voltage of serdes1/2
57273     is same between mpc837xemds and mpc837xerdb.
57275     8377E: LYNX1- 2 SATA        LYNX2- 2 PCIE
57276     8378E: LYNX1- 2 SGMII       LYNX2- 2 PCIE
57277     8379E: LYNX1- 2 SATA        LYNX2- 2 SATA
57279     Signed-off-by: Dave Liu <daveliu@freescale.com>
57280     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57282 commit cc8e839abc80887ae832767b5930d40edd6d7eb7
57283 Author: Stefan Roese <sr@denx.de>
57284 Date:   Fri Mar 28 14:09:04 2008 +0100
57286     ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
57288     Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
57289     interface. This usage can be configured with the jumper J6. This patch
57290     displays the current configuration upon bootup and changes the PCIe
57291     init loop, to only initialize the availabel PCIe slots.
57293     Signed-off-by: Stefan Roese <sr@denx.de>
57295 commit 90447ecbbac8572457b6d8903073ac3f120995ba
57296 Author: Tor Krill <tor@excito.com>
57297 Date:   Fri Mar 28 11:29:10 2008 +0100
57299     MTD/CFI: Add support for 16bit legacy AMD flash
57301     Add entry for 512Kx16 AMD flash to jedec_table.
57302     Read out 16bit device id if chipwidth is 16bit.
57303     Fixed coding style after Stefans feedback
57305     Signed-off-by: Tor Krill <tor@excito.com>
57307 commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
57308 Author: Stefan Roese <sr@denx.de>
57309 Date:   Fri Mar 28 11:02:53 2008 +0100
57311     ppc: Small change to CFG_MEM_TOP_HIDE description
57313     Signed-off-by: Stefan Roese <sr@denx.de>
57315 commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
57316 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57317 Date:   Thu Mar 27 15:44:12 2008 +0900
57319     sh: Add support stat structure and stat.h
57321     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57323 commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
57324 Author: Mark Jonas <toertel@gmail.com>
57325 Date:   Sat Mar 22 19:27:52 2008 +0100
57327     sh: Removed warning when compiling drivers/serial/serial_sh.c.
57329     Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
57330     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57332 commit f309fa38929ffba71230c02330ffa42f4bba6333
57333 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57334 Date:   Wed Mar 12 18:02:57 2008 +0900
57336     sh: Remove disable_ctrlc function from R7780MP
57338     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57340 commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
57341 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57342 Date:   Wed Mar 12 17:55:15 2008 +0900
57344     sh: Add maintainer of R7780MP to MAINTAINER file
57346     Update MAINTAINER entry for R7780MP. And fix maintainer's name.
57348     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57350 commit f5e2466f7baa887a7df0c536333eea8231333497
57351 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57352 Date:   Tue Mar 25 17:11:24 2008 +0900
57354     sh: Add support Renesas Solutions R2D plus board
57356     R2D plus is SH reference board used with SH7751R.
57357     This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
57358     one PCI bus, VGA, and two Ethernet controller.
57360     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57362 commit e92c95180bb5bc5fd4051598a9d60beaba48988d
57363 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57364 Date:   Wed Mar 12 12:15:29 2008 +0900
57366     sh: Add support SH4 cache control
57368     Add support SH4 cache control and flash_cache function
57370     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57372 commit 28e5efde4d925fcb34901d0030d0648de2da7e89
57373 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57374 Date:   Mon Mar 24 01:53:01 2008 +0900
57376     sh: Add support PCI host driver for SH7751/SH7751R
57378     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57380 commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
57381 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57382 Date:   Mon Mar 24 02:11:26 2008 +0900
57384     sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
57386     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57388 commit 566933278101c144d75361ea682678a326c1290d
57389 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57390 Date:   Wed Mar 12 12:10:28 2008 +0900
57392     sh: Add support SuperH SH7751/SH7751R
57394     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57396 commit 3313e0e26224fc9a0c445124f3455058c696df84
57397 Author: Mark Jonas <toertel@gmail.com>
57398 Date:   Mon Mar 10 11:37:10 2008 +0100
57400     sh: Added support for SH7720 based board MPR2.
57402     Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
57403     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57405 commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
57406 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57407 Date:   Thu Mar 6 14:05:53 2008 +0900
57409     sh: Fix receive FIFO level register of SH4A
57411     Receive FIFO level register is different in SH4A.
57412     Because register is different, cannot occasionally receive data.
57414     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57416 commit c133c1fb0b590662206b0eba70f4478ee0300a9a
57417 Author: Yusuke Goda <goda.yusuke@renesas.com>
57418 Date:   Tue Mar 11 12:55:12 2008 +0900
57420     sh: Add support Renesas Solutions R7780MP
57422     Renesas Solutions R7780MP is a reference board on SH7780.
57423     This board has serial, 10/100 base Ethernet deivice, CF slot
57424     and VGA devices. This board can set extension board.
57425     Extension board has 10/100/1000 base Ethernet device, PCI slot,
57426     S-ATA, iDVR slot.
57428     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
57429     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57431 commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
57432 Author: Yusuke Goda <goda.yusuke@renesas.com>
57433 Date:   Wed Mar 5 14:30:02 2008 +0900
57435     sh: Add support PCI of SuperH and SH7780
57437     This patch add support PCI of SuperH base code and SH7780 specific code.
57439     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
57440     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57442 commit b55523efff2ae11f0b9ae3cc405893c32eb78156
57443 Author: Yusuke Goda <goda.yusuke@renesas.com>
57444 Date:   Wed Mar 5 14:23:26 2008 +0900
57446     sh: Add support SH7780
57448     SH7780 is CPU of Renesas Technology.
57449     This CPU has
57450      - CPU clock 400MHz
57451      - PCI support
57452      - DDR-SDRAM controller
57453      - etc ...
57455     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
57456     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57458 commit c2042f5952a686c414031309b8f244513bf578f0
57459 Author: goda.yusuke <goda.yusuke@renesas.com>
57460 Date:   Fri Jan 25 20:46:36 2008 +0900
57462     sh: Add support Renesas Solutions Migo-R board
57464     Migo-R is a board based on SH7722 and has may devices.
57465     In this patch, supported SCIF, NOR flash and Ethernet.
57467     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
57468     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57470 commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
57471 Author: Bartlomiej Sieka <tur@semihalf.com>
57472 Date:   Thu Mar 27 15:06:40 2008 +0100
57474     Fix host tool build breakage, take two
57476     Revert commit 87c8431f and fix build breakage so that the build continues
57477     to work on FC systems.
57479     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
57481 commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
57482 Author: Stefan Roese <sr@denx.de>
57483 Date:   Wed Mar 19 09:36:47 2008 +0100
57485     ppc4xx: Enable ECC on LWMON5
57487     Since all ECC related problems seem to be resolved on LWMON5, this patch
57488     now enables ECC support.
57490     We have to write the ECC bytes by zeroing and flushing in smaller
57491     steps, since the whole 256MByte takes too long for the external
57492     watchdog.
57494     Signed-off-by: Stefan Roese <sr@denx.de>
57496 commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
57497 Author: Larry Johnson <lrj@acm.org>
57498 Date:   Mon Mar 17 11:10:35 2008 -0500
57500     ppc4xx: Updates to Korat-specific code
57502     This patch contains updates for changes for the Korat PPC440EPx board.
57503     These changes include:
57505     (1) Support for "permanent" and "upgradable" copies of U-Boot, as
57506     described in the new "doc/README.korat" file;
57508     (2) a new memory map for the registers in the board's CPLD;
57510     (3) a revised format for manufacturer's data in serial EEPROM; and
57512     (4) changes to track updates to U-Boot for the Sequoia board.
57514     Signed-off-by: Larry Johnson <lrj@acm.org>
57516 commit f766cdf89b3a2a7634b8c5869f606150e332036c
57517 Author: Markus Brunner <super.firetwister@gmail.com>
57518 Date:   Thu Mar 27 10:46:25 2008 +0100
57520     ppc4xx: PPC405EP Set EMAC noise filter bits
57522     This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
57523     which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
57524     disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
57526     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
57527     Signed-off-by: Stefan Roese <sr@denx.de>
57529 commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
57530 Author: Mike Nuss <mike@terascala.com>
57531 Date:   Wed Feb 20 11:54:20 2008 -0500
57533     ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
57535     On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
57536     after startup to change the speed of the clocks. This patch adds the
57537     option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
57538     initialization code will reconfigure the PLL to run the system with a CPU
57539     frequency of 667MHz and PLB frequency of 166MHz, without the need for an
57540     external EEPROM.
57542     Signed-off-by: Mike Nuss <mike@terascala.com>
57543     Acked-by: Stefan Roese <sr@denx.de>
57545 commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
57546 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
57547 Date:   Thu Mar 27 09:12:40 2008 +0100
57549     new-image: Fix host tool build breakage
57551     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
57553 commit 6fb4b640562a10daff0dbe537638d511b5b48650
57554 Author: Stefan Roese <sr@denx.de>
57555 Date:   Thu Mar 27 10:24:03 2008 +0100
57557     ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
57559     Signed-off-by: Stefan Roese <sr@denx.de>
57561 commit 9462732a3ec551c11862450902cd8ee1bedea6d9
57562 Author: Stefan Roese <sr@denx.de>
57563 Date:   Wed Mar 19 10:23:43 2008 +0100
57565     ppc4xx: Add fdt support to Prodrive alpr
57567     Since this board will probably be ported to arch/powerpc in the
57568     near future, we add device tree support now. This way we are
57569     "ready" for arch/powerpc from now on.
57571     Signed-off-by: Stefan Roese <sr@denx.de>
57573 commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
57574 Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
57575 Date:   Mon Mar 17 09:27:56 2008 +0100
57577     ppc4xx: Enable cache support on the ALPR board
57579     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
57581 commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
57582 Author: Stefan Roese <sr@denx.de>
57583 Date:   Wed Mar 26 10:14:11 2008 +0100
57585     ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
57587     If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
57588     memory area will get subtracted from the top (end) of ram and won't get
57589     "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
57590     should gets passed the now "corrected" memory size and won't touch it
57591     either. This should work for arch/ppc and arch/powerpc. Only Linux board
57592     ports in arch/powerpc with bootwrapper support, which recalculate the
57593     memory size from the SDRAM controller setup, will have to get fixed
57594     in Linux additionally.
57596     This patch enables this config option on some PPC440EPx boards as a workaround
57597     for the CHIP 11 errata. Here the description from the AMCC documentation:
57599     CHIP_11: End of memory range area restricted access.
57600     Category: 3
57602     Overview:
57603     The 440EPx DDR controller does not acknowledge any
57604     transaction which is determined to be crossing over the
57605     end-of-memory-range boundary, even if the starting address is
57606     within valid memory space. Any such transaction from any PLB4
57607     master will result in a PLB time-out on PLB4 bus.
57609     Impact:
57610     In case of such misaligned bursts, PLB4 masters will not
57611     retrieve any data at all, just the available data up to the
57612     end of memory, especially the 440 CPU. For example, if a CPU
57613     instruction required an operand located in memory within the
57614     last 7 words of memory, the DCU master would burst read 8
57615     words to update the data cache and cross over the
57616     end-of-memory-range boundary. Such a DCU read would not be
57617     answered by the DDR controller, resulting in a PLB4 time-out
57618     and ultimately in a Machine Check interrupt. The data would
57619     be inaccessible to the CPU.
57621     Workaround:
57622     Forbid any application to access the last 256 bytes of DDR
57623     memory. For example, make your operating system believe that
57624     the last 256 bytes of DDR memory are absent. AMCC has a patch
57625     that does this, available for Linux.
57627     This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
57628     lwmon5, korat, sequoia
57630     The other remaining 440EPx board were intentionally not included
57631     since it is not clear to me, if they use the end of ram for some
57632     other purpose. This is unclear, since these boards have CONFIG_PRAM
57633     defined and even comments like this:
57635     PMC440.h:
57636     /* esd expects pram at end of physical memory.
57637      * So no logbuffer at the moment.
57638      */
57640     It is strongly recommended to not use the last 256 bytes on those
57641     boards too. Patches from the board maintainers are welcome.
57643     Signed-off-by: Stefan Roese <sr@denx.de>
57645 commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
57646 Author: Stefan Roese <sr@denx.de>
57647 Date:   Thu Mar 27 10:09:05 2008 +0100
57649     ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
57651     Signed-off-by: Stefan Roese <sr@denx.de>
57653 commit d56a3ce179688cde61073a3690e21703d68fafd7
57654 Author: Stefan Roese <sr@denx.de>
57655 Date:   Tue Mar 25 17:51:13 2008 +0100
57657     ppc4xx: Correctly pass phyiscal FLASH base address into dtb
57659     The routine ft_board_setup() configures the EBC NOR mappings for the
57660     Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
57661     0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
57662     problem, we need to pass the corrected address here too.
57664     Signed-off-by: Stefan Roese <sr@denx.de>
57666 commit 9ad31989de12ce5c67b07c4867ead47465655c4b
57667 Author: Stefan Roese <sr@denx.de>
57668 Date:   Wed Mar 19 16:35:12 2008 +0100
57670     ppc4xx: Fix compilation warning in 4xx_enet.c
57672     Signed-off-by: Stefan Roese <sr@denx.de>
57674 commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
57675 Author: Stefan Roese <sr@denx.de>
57676 Date:   Wed Mar 19 16:20:49 2008 +0100
57678     ppc4xx: Add AMCC Glacier 406GT eval board support
57680     This patch adds support for the AMCC Glacier 460GT eval board.
57681     The main difference to the Canyonlands board are listed here:
57683     - 4 ethernet ports instead of 2
57684     - no SATA port
57685     - no USB port
57687     Currently EMAC2+3 are not working. This will be fixed in a later
57688     release.
57690     Signed-off-by: Stefan Roese <sr@denx.de>
57692 commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
57693 Author: Stefan Roese <sr@denx.de>
57694 Date:   Thu Mar 27 08:47:26 2008 +0100
57696     ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
57698     Signed-off-by: Stefan Roese <sr@denx.de>
57700 commit b9670dd85be6e0496ef2e231043c23cad9b1d903
57701 Author: Anatolij Gustschin <agust@denx.de>
57702 Date:   Wed Mar 26 21:05:43 2008 +0100
57704     Fix out of tree building issue
57706     Currently U-Boot building in some external directory
57707     doesn't work. This patch tries to fix the problem.
57709     Signed-off-by: Anatolij Gustschin <agust@denx.de>
57711 commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
57712 Author: Anatolij Gustschin <agust@denx.de>
57713 Date:   Wed Mar 26 18:13:33 2008 +0100
57715     README: update documentation (availability, links, etc.)
57717     Fix typo in README
57719     Signed-off-by: Anatolij Gustschin <agust@denx.de>
57721 commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
57722 Author: Anatolij Gustschin <agust@denx.de>
57723 Date:   Wed Mar 26 17:47:44 2008 +0100
57725     Fix compilation error in cmd_usb.c
57727     This patch fixes compilation error
57728     cmd_usb.c: In function 'do_usb':
57729     cmd_usb.c:552: error: void value not ignored as it ought to be
57731     Signed-off-by: Anatolij Gustschin <agust@denx.de>
57733 commit d8c82db482d6b535d12b419d6440b88bf7091c9b
57734 Author: Timur Tabi <timur@freescale.com>
57735 Date:   Fri Mar 14 17:45:29 2008 -0500
57737     Add support for setting the I2C bus speed in fsl_i2c.c
57739     Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
57740     the I2C bus speed.  Current 8[356]xx boards define the CFG_I2C_SPEED macro,
57741     but fsl_i2c.c ignores it and uses conservative value when programming the
57742     I2C bus speed.
57744     Signed-off-by: Timur Tabi <timur@freescale.com>
57745     Acked-by: Andy Fleming <afleming@freescale.com>
57747 commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
57748 Author: Wolfgang Denk <wd@denx.de>
57749 Date:   Thu Mar 27 00:03:57 2008 +0100
57751     Coding style cleanup, update CHANGELOG
57753     Signed-off-by: Wolfgang Denk <wd@denx.de>
57755 commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
57756 Author: Dave Liu <r63238@freescale.com>
57757 Date:   Wed Mar 26 22:55:32 2008 +0800
57759     drivers: add the support for Freescale SATA controller
57761     Add the Freescale on-chip SATA controller driver to u-boot,
57762     The SATA controller is used on the 837x and 8315 targets,
57763     The driver can be used to load kernel, fs and dtb.
57765     The features list:
57766     - 1.5/3 Gbps link speed
57767     - LBA48, LBA28 support
57768     - DMA and FPDMA support
57769     - Two ports support
57771     Signed-off-by: Dave Liu <daveliu@freescale.com>
57773 commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
57774 Author: Dave Liu <r63238@freescale.com>
57775 Date:   Wed Mar 26 22:54:44 2008 +0800
57777     ata: add the readme for SATA command line
57779     Signed-off-by: Dave Liu <daveliu@freescale.com>
57781 commit cd54081cd479e542fc399b8a40651ff11a1ad849
57782 Author: Dave Liu <r63238@freescale.com>
57783 Date:   Wed Mar 26 22:53:24 2008 +0800
57785     ata: enable the sata initialize on boot up
57787     Signed-off-by: Dave Liu <daveliu@freescale.com>
57789 commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
57790 Author: Dave Liu <r63238@freescale.com>
57791 Date:   Wed Mar 26 22:52:36 2008 +0800
57793     ata: add the fis struct for SATA
57795     Signed-off-by: Dave Liu <daveliu@freescale.com>
57797 commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
57798 Author: Dave Liu <r63238@freescale.com>
57799 Date:   Wed Mar 26 22:51:44 2008 +0800
57801     ata: add the libata support
57803     add simple libata support in u-boot
57805     Signed-off-by: Dave Liu <daveliu@freescale.com>
57807 commit 8e9bb43429e50df55fa41932cbe65841ff579220
57808 Author: Dave Liu <r63238@freescale.com>
57809 Date:   Wed Mar 26 22:50:45 2008 +0800
57811     ata: make the ata_piix driver using new SATA framework
57813     original ata_piix driver is using IDE framework, not real
57814     SATA framework. For now, the ata_piix driver is only used
57815     by x86 sc520_cdp board. This patch makes the ata_piix driver
57816     use the new SATA framework, so
57818     - remove the duplicated command stuff
57819     - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
57820     - add the CONFIG_CMD_SATA define to sc520_cdp.h
57822     Signed-off-by: Dave Liu <daveliu@freescale.com>
57824 commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
57825 Author: Dave Liu <r63238@freescale.com>
57826 Date:   Wed Mar 26 22:49:44 2008 +0800
57828     ata: add the support for SATA framework
57830     - add the SATA framework
57831     - add the SATA command line
57833     Signed-off-by: Dave Liu <daveliu@freescale.com>
57835 commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
57836 Author: Dave Liu <r63238@freescale.com>
57837 Date:   Wed Mar 26 22:48:18 2008 +0800
57839     ata: merge the header of ata_piix driver
57841     move the sata.h from include/ to drivers/block/ata_piix.h
57843     Signed-off-by: Dave Liu <daveliu@freescale.com>
57845 commit 9eef62804d9695425b24c87b46a61a7fa74afee0
57846 Author: Dave Liu <r63238@freescale.com>
57847 Date:   Wed Mar 26 22:47:06 2008 +0800
57849     ata: merge the ata_piix driver
57851     move the cmd_sata.c from common/ to drivers/ata_piix.c,
57852     the cmd_sata.c have some part of ata_piix controller drivers.
57853     consolidate the driver to have better framework.
57855     Signed-off-by: Dave Liu <daveliu@freescale.com>
57857 commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
57858 Author: Markus Klotzbuecher <mk@denx.de>
57859 Date:   Wed Mar 26 18:26:43 2008 +0100
57861     USB, Storage: fix a bug introduced in commit
57862     f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
57863     to only print only information on one storage device, but not for
57864     multiple.
57866     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
57868 commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
57869 Author: Anatolij Gustschin <agust@denx.de>
57870 Date:   Wed Mar 26 17:47:44 2008 +0100
57872     Fix compilation error in cmd_usb.c
57874     This patch fixes compilation error
57875     cmd_usb.c: In function 'do_usb':
57876     cmd_usb.c:552: error: void value not ignored as it ought to be
57878     Signed-off-by: Anatolij Gustschin <agust@denx.de>
57879     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
57881 commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
57882 Author: Kumar Gala <galak@kernel.crashing.org>
57883 Date:   Wed Mar 26 08:53:53 2008 -0500
57885     85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
57887     Provide a board_lmb_reserve helper function to ensure we reserve
57888     the page of memory we are using for the boot page translation code.
57890     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57892 commit 79679d80021ab095e639e250ca472fe526da02e2
57893 Author: Kumar Gala <galak@kernel.crashing.org>
57894 Date:   Wed Mar 26 08:34:25 2008 -0500
57896     85xx: Update multicore boot mechanism to ePAPR v0.81 spec
57898     The following changes are needed to be inline with ePAPR v0.81:
57900     * r4, r5 and now always set to 0 on boot release
57901     * r7 is used to pass the size of the initial map area (IMA)
57902     * EPAPR_MAGIC value changed for book-e processors
57903     * changes in the spin table layout
57904     * spin table supports a 64-bit physical release address
57906     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57908 commit 25eedb2c1958a13110c7de1fc809b624053cc69c
57909 Author: Jon Loeliger <jdl@freescale.com>
57910 Date:   Wed Mar 19 15:02:07 2008 -0500
57912     FSL: Clean up board/freescale/common/Makefile
57914     Each file that can be built here now follows some
57915     CONFIG_ option so that they are appropriately built
57916     or not, as needed.  And CONFIG_ defines were added
57917     to various board config files to make sure that happens.
57919     The other board/freescale/*/Makefiles no longer need
57920     to reach up and over into ../common to build their
57921     individually needed files any more.
57923     Boards that are CDS specific were renamed with cds_ prefix.
57925     Signed-off-by: Jon Loeliger <jdl@freescale.com>
57927 commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
57928 Author: Kumar Gala <galak@kernel.crashing.org>
57929 Date:   Wed Feb 27 22:00:27 2008 -0600
57931     85xx: Fix merge duplication
57933     ft_fixup_cpu() got duplicated in some merge snafu.  Remove the duplicate.
57935     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57937 commit 5893b3d0a4084f87a06a5d3dc03db91206818941
57938 Author: James Yang <James.Yang@freescale.com>
57939 Date:   Tue Feb 12 16:35:07 2008 -0600
57941     85xx: Expand CCSR space with more DDR controller registers.
57943     Signed-off-by: James Yang <James.Yang@freescale.com>
57944     Signed-off-by: Jon Loeliger <jdl@freescale.com>
57945     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57947 commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
57948 Author: James Yang <James.Yang@freescale.com>
57949 Date:   Fri Feb 8 18:05:08 2008 -0600
57951     85xx: Speed up get_ddr_freq() and get_bus_freq()
57953     get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
57954     called.  However, get_sys_info() recalculates extraneous information when
57955     called each time.  Have get_ddr_freq() and get_bus_freq() return memoized
57956     values from global_data instead.
57958     Signed-off-by: James Yang <James.Yang@freescale.com>
57959     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57961 commit e9ea679918fbc9a53fa2f2a904aac874ea736036
57962 Author: James Yang <James.Yang@freescale.com>
57963 Date:   Fri Feb 8 16:46:27 2008 -0600
57965     85xx: Show DDR memory data rate in addition to the memory clock frequency.
57967     Show the DDR memory data rate in addition to the memory clock
57968     frequency.  For DDR/DDR2 memories the memory data rate is 2x the
57969     memory clock.
57971     Signed-off-by: James Yang <James.Yang@freescale.com>
57972     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57974 commit 591933ca6eabc440e6ed6967233aaf56fce464a3
57975 Author: James Yang <James.Yang@freescale.com>
57976 Date:   Fri Feb 8 16:44:53 2008 -0600
57978     85xx: get_tbclk() speed up and rounding fix
57980     Speed up get_tbclk() by referencing pre-computed bus clock
57981     frequency value from global data instead of sys_info_t.  Fix
57982     rounding of result to nearest; previously it was rounding
57983     upwards.
57985     Signed-off-by: James Yang <James.Yang@freescale.com>
57986     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57988 commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
57989 Author: Andy Fleming <afleming@freescale.com>
57990 Date:   Wed Feb 6 01:19:40 2008 -0600
57992     Update SVR numbers to expand support
57994     FSL has taken to using SVR[16:23] as an SOC sub-version field.  This
57995     is used to distinguish certain variants within an SOC family.  To
57996     account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
57997     constants to reflect the larger value.  We also add SVR numbers for all
57998     of the current variants.  Finally, to make things neater, rather than
57999     use an enormous switch statement to print out the CPU type, we create
58000     and array of SVR/name pairs (using a macro), and print out the CPU name
58001     that matches the SVR SOC version.
58003     Signed-off-by: Andy Fleming <afleming@freescale.com>
58005 commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
58006 Author: Andy Fleming <afleming@freescale.com>
58007 Date:   Wed Feb 6 01:12:57 2008 -0600
58009     Add the Freescale PCI device IDs
58011     Signed-off-by: Andy Fleming <afleming@freescale.com>
58013 commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
58014 Author: Kumar Gala <galak@kernel.crashing.org>
58015 Date:   Thu Feb 14 11:04:23 2008 -0600
58017     85xx: Added support for multicore boot mechanism
58019     Added the cpu command that provides a generic mechanism to get status,
58020     reset, and release secondary cores in multicore processors.
58022     Added support for using the ePAPR defined spin-table mechanism on 85xx.
58024     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58025     Signed-off-by: Andy Fleming <afleming@freescale.com>
58027 commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
58028 Author: Kumar Gala <galak@kernel.crashing.org>
58029 Date:   Thu Jan 17 16:48:33 2008 -0600
58031     85xx: Added support for multicore boot mechanism
58033     Added the cpu command that provides a generic mechanism to get status,
58034     reset, and release secondary cores in multicore processors.
58036     Added support for using the ePAPR defined spin-table mechanism on 85xx.
58038     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58040 commit f69766e4b5d47ecd3aa58677a8da875694f364f2
58041 Author: Kumar Gala <galak@kernel.crashing.org>
58042 Date:   Wed Jan 30 14:55:14 2008 -0600
58044     85xx: Add the concept of CFG_CCSRBAR_PHYS
58046     When we go to 36-bit physical addresses we need to keep the concept of
58047     the physical CCSRBAR address seperate from the virtual one.
58049     For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
58051     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58053 commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
58054 Author: Wolfgang Denk <wd@denx.de>
58055 Date:   Wed Mar 26 15:38:47 2008 +0100
58057     Coding style cleanup.
58059     Signed-off-by: Wolfgang Denk <wd@denx.de>
58061 commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
58062 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
58063 Date:   Wed Mar 26 13:02:13 2008 +0100
58065     Add CFG_RTC_DS1337_NOOSC to turn off OSC output
58067     The default settings for RTC DS1337 keeps the OSC
58068     output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
58069     turn it off.
58071     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
58073 commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
58074 Author: Wolfgang Denk <wd@denx.de>
58075 Date:   Wed Mar 26 11:48:46 2008 +0100
58077     Cleanup coding style, update CHANGELOG
58079     Signed-off-by: Wolfgang Denk <wd@denx.de>
58081 commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
58082 Author: Wolfgang Denk <wd@denx.de>
58083 Date:   Wed Mar 26 10:40:12 2008 +0100
58085     README: update documentation (availability, links, etc.)
58087     Signed-off-by: Wolfgang Denk <wd@denx.de>
58089 commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
58090 Author: Aras Vaichas <arasv@magtech.com.au>
58091 Date:   Tue Mar 25 12:09:07 2008 +1100
58093     USB Storage, add meaningful return value
58095     This patch changes the "usb storage" command to return success if it
58096     finds a USB storage device, otherwise it returns error.
58098     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
58100 commit 18e69a35efbb078403db0c0063986470dad7d082
58101 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58102 Date:   Fri Mar 14 23:20:18 2008 +0300
58104     83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
58106     Linux understands "host" (default), "peripheral" and "otg" (broken).
58107     Though, U-Boot doesn't restrict dr_mode variable to these values (think
58108     of renames in future).
58110     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58111     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58113 commit c7604783b236e368f225efb7b3efb418fe20b404
58114 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58115 Date:   Fri Mar 14 23:20:30 2008 +0300
58117     tsec: fix link detection for the RTL8211B PHY
58119     RTL8211B sets link state register after autonegotiation complete,
58120     so with bootdelay=0 RTL8211B will report lack of the link.
58122     To fix this, we should wait for aneg to complete, even if the
58123     link is currently down.
58125     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58126     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58128 commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
58129 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58130 Date:   Mon Mar 24 20:47:09 2008 +0300
58132     mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
58134     device_type = "soc" is being deprecated, newer device trees will use
58135     "fsl,soc" and/or "fsl,immr" for the soc nodes.
58137     This patch also adds clock-frequency property for soc nodes (the same
58138     value as bus-frequency).
58140     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58142 commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
58143 Author: Joe D'Abbraccio <ljd015@freescale.com>
58144 Date:   Mon Mar 24 13:00:59 2008 -0400
58146     Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
58148     With the original value of 1/2 clock cycle delay, the system ran relatively
58149     stable except when we run benchmarks that are intensive users of memory.
58150     When I run samba connected disk with a HDBENCH test, the system locks-up
58151     or reboots sporadically.
58153     Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
58155 commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
58156 Author: Scott Wood <scottwood@freescale.com>
58157 Date:   Mon Mar 24 12:44:13 2008 -0500
58159     mpc83xx: Set PCI I/O bus-address base to zero.
58161     The device trees for these boards describe PCI I/O as starting from
58162     address zero from the device's perspective.
58164     Placing I/O elsewhere may cause problems with certain PCI boards, and may
58165     cause problems with Linux.
58167     Signed-off-by: Scott Wood <scottwood@freescale.com>
58169 commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
58170 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58171 Date:   Mon Mar 24 20:47:05 2008 +0300
58173     mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
58175     At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
58176     This patch fixes "system time drifting" problem.
58178     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58180 commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
58181 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58182 Date:   Mon Mar 24 20:47:02 2008 +0300
58184     mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
58186     This is needed to update /choosen/linux,stdout-path properly.
58188     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58190 commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
58191 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58192 Date:   Mon Mar 24 20:47:00 2008 +0300
58194     mpc83xx: MPC8360E-RDK: add dhcp command
58196     Plus modify environment to use it and remove bootfile env variable,
58197     it is internal and CONFIG_BOOTFILE is used for these purposes.
58199     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58201 commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
58202 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58203 Date:   Mon Mar 24 20:46:57 2008 +0300
58205     mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
58207     Current DDR setup easily causes memory corruption, this patch fixes it.
58209     Also fix TIMING_CFG0_MRS_CYC definition.
58211     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58213 commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
58214 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58215 Date:   Mon Mar 24 20:46:53 2008 +0300
58217     mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
58219     This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
58220     controller and FHCI (QE USB).
58222     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58224 commit 7ad959490962e6842648d87d4bd795ea6cdcce67
58225 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58226 Date:   Mon Mar 24 20:46:51 2008 +0300
58228     mpc83xx: MPC8360E-RDK: add support for NAND
58230     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58232 commit 9a3e832aeb491861d029991241572ebdf4b5b61b
58233 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58234 Date:   Mon Mar 24 20:46:46 2008 +0300
58236     mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
58238     This is needed for BCM PHYs to work on this board.
58240     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58242 commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
58243 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58244 Date:   Mon Mar 24 20:46:34 2008 +0300
58246     uec: add support for Broadcom BCM5481 Gigabit PHY
58248     This patch adds basic support for Broadcom BCM5481 PHY.
58250     RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
58251     Peter Barada <peterb@logicpd.com>.
58253     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58255 commit 6a600c3a1876bc203445df4f0fd6b12648259666
58256 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58257 Date:   Mon Mar 24 20:46:28 2008 +0300
58259     uec: add support for RGMII_RXID interface mode
58261     PHY drivers will use it to setup software delay between RXD and RXC
58262     signals.
58264     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58266 commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
58267 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58268 Date:   Mon Mar 24 20:46:24 2008 +0300
58270     uec: add support for gbit mii status readings
58272     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58274 commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
58275 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58276 Date:   Mon Mar 24 17:40:47 2008 +0300
58278     83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
58280     This is primarily for the early console support.
58282     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58284 commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
58285 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58286 Date:   Mon Mar 24 17:40:43 2008 +0300
58288     83xx: initialize serdes for MPC837XRDB boards
58290     On the MPC8377ERDB: 2 SATA and 2 PCI-E.
58291     On the MPC8378ERDB: 2 PCI-E
58292     On the MPC8379ERDB: 4 SATA
58294     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58296 commit 453316a2a19642d8afcbca7452e40a6b44a197b1
58297 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58298 Date:   Mon Mar 24 17:40:32 2008 +0300
58300     83xx: serdes setup routines
58302     This patch adds few routines to configure serdes on 837x targets.
58304     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58306 commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
58307 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58308 Date:   Mon Mar 24 17:40:27 2008 +0300
58310     83xx: split COBJS onto separate lines
58312     ..plus get rid of some #ifdefs in the .c files.
58314     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58316 commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
58317 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58318 Date:   Mon Mar 24 17:40:23 2008 +0300
58320     83xx: nand support for MPC837XRDB boards
58322     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58324 commit 82e45a204190593e8613145a928f998fb8c909c4
58325 Author: Jerry Van Baren <gvb.uboot@gmail.com>
58326 Date:   Tue Mar 18 21:44:41 2008 -0400
58328     Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
58330     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
58331     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58333 commit 0fa7a1b4719e325fce332689fb8754ec166191ff
58334 Author: Michael Barkowski <michael.barkowski@freescale.com>
58335 Date:   Thu Mar 20 13:15:39 2008 -0400
58337     mpc8323erdb: remove RTC and add EEPROM
58339     There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
58341     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
58342     Acked-by: Kim Phillips <kim.phillips@freescale.com>
58344 commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
58345 Author: Michael Barkowski <michael.barkowski@freescale.com>
58346 Date:   Thu Mar 20 13:15:34 2008 -0400
58348     mpc8323erdb: Improve the system performance
58350     The following changes are based on kernel UCC ethernet performance:
58352     1.  Make the CSB bus pipeline depth as 4, and enable the repeat mode
58353     2.  Optimize transactions between QE and CSB.  Added CFG_SPCR_OPT
58354         switch to enable this setting.
58356     The following changes are based on the App Note AN3369 and
58357     verified to improve memory latency using LMbench:
58359     3.  CS0_CONFIG[AP_n_EN] is changed from 1 to 0
58360     4.  CS0_CONFIG[ODT_WR_CONFIG] set to 1.  Was a reserved setting
58361         previously.
58362     5.  TIMING_CFG_1[WRREC] is changed from 3clks to 2clks  (based on
58363         Twr=15ns, and this was already the setting in DDR_MODE)
58364     6.  TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
58365         Trp=15ns)
58366     7.  TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
58367         Tras=40ns)
58368     8.  TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
58369         Trcd=15ns)
58370     9.  TIMING_CFG_1[REFREC] changed from 21 clks to 11clks.  (based on
58371         Trfc=75ns)
58372     10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks.  (based
58373         on Tfaw=50ns)
58374     11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
58375         on CL=3 and WL=2).
58377     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
58378     Acked-by: Kim Phillips <kim.phillips@freescale.com>
58380 commit fc549c871f43933396a5b3e21d897023d4b31b8d
58381 Author: Michael Barkowski <michael.barkowski@freescale.com>
58382 Date:   Thu Mar 20 13:15:28 2008 -0400
58384     mpc8323erdb: use readable DDR config macros
58386     Use available shift/mask macros to define DDR configuration.
58388     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
58389     Acked-by: Kim Phillips <kim.phillips@freescale.com>
58391 commit 89c7784ed90ba50301eec521144f95111e472906
58392 Author: Timur Tabi <timur@freescale.com>
58393 Date:   Fri Feb 8 13:15:55 2008 -0600
58395     83xx: Add Vitesse VSC7385 firmware uploading
58397     Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
58398     the Vitesse VSC7385 firmware.  Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
58399     Cleaned up the board header files to make selecting the VSC7385 easier to
58400     control.
58402     Signed-off-by: Timur Tabi <timur@freescale.com>
58403     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58405 commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
58406 Author: Timur Tabi <timur@freescale.com>
58407 Date:   Fri Feb 8 13:15:54 2008 -0600
58409     NET: Add Vitesse VSC7385 firmware uploading
58411     The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
58412     and other boards.  A small firwmare must be uploaded to its on-board memory
58413     before it can be enabled.  This patch adds the code which uploads firmware
58414     (but not the firmware itself).
58416     Previously, this feature was provided by a U-Boot application that was
58417     made available only on Freescale BSPs.  The VSC7385 firmware must still
58418     be obtained separately, but at least there is no longer a need for a separate
58419     application.
58421     Signed-off-by: Timur Tabi <timur@freescale.com>
58422     Acked-by: Ben Warren <biggerbadderben@gmail.com>
58424 commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
58425 Author: Wolfgang Denk <wd@denx.de>
58426 Date:   Wed Mar 26 00:52:10 2008 +0100
58428     Coding Style cleanyp; update CHANGELOG
58430     Signed-off-by: Wolfgang Denk <wd@denx.de>
58432 commit 43ddd9c820fec44816188f53346b464e20b3142d
58433 Author: Jerry Van Baren <gvb.uboot@gmail.com>
58434 Date:   Sat Mar 22 14:23:49 2008 -0400
58436     Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
58438     These defines embedded the u-boot env variables and/or the bd_t structure
58439     in the fdt blob.  The conclusion of discussion on the u-boot email list
58440     was that embedding these in the fdt blob is not useful: there are better
58441     ways of passing the data (in fact, the fdt blob itself replaces the
58442     bd_t struct).
58444     The only board that enables these is the stxxtc and they don't appear
58445     to be used by linux.
58447     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
58448     Acked-by: Kim Phillips <kim.phillips@freescale.com>
58450 commit 22ed2285743359fd1fe73e411dff914b2256e68f
58451 Author: Stefan Roese <sr@denx.de>
58452 Date:   Mon Mar 17 10:49:25 2008 +0100
58454     rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
58456     Signed-off-by: Stefan Roese <sr@denx.de>
58458 commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
58459 Author: Kyungmin Park <kmpark@infradead.org>
58460 Date:   Mon Mar 17 08:54:06 2008 +0900
58462     Add Flex-OneNAND booting support
58464     Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
58465     using a NOR Flash interface. This on-chip integration enables system designers
58466     to reduce external system logic and use high-density NAND Flash
58467     in applications that would otherwise have to use more NOR components.
58469     Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
58470     in more flexible way. While MLC area of Flex-OneNAND can be used to store data
58471     that require low reliability and high density, SLC area of Flex-OneNAND
58472     to store data that need high reliability and high performance. Flex-OneNAND
58473     can let users take advantage of storing these two different types of data
58474     into one chip, which is making Flex-OneNAND more cost- and space-effective.
58476     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
58478 commit c512389cc4a10253249271ff6c887c6dab1f0db2
58479 Author: André Schwarz <andre.schwarz@matrix-vision.de>
58480 Date:   Thu Mar 13 13:50:52 2008 +0100
58482     MPC5200: support setup without FEC
58484     Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
58485     defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
58487     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
58488     Acked-by: Grant Likely <grant.likely@secretlab.ca>
58490 commit aa3511e422946041ef626f80a05ae5e8bfc700e6
58491 Author: Jon Loeliger <jdl@freescale.com>
58492 Date:   Wed Mar 5 18:05:46 2008 -0600
58494     FSL: Move board/mpc8266ads under board/freescale
58496     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58498 commit 7f1d846e5c5754449c286587d099d85246062772
58499 Author: Jon Loeliger <jdl@freescale.com>
58500 Date:   Wed Mar 5 18:05:47 2008 -0600
58502     FSL: Move board/mpc7448hpc2 under board/freescale
58504     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58506 commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
58507 Author: Jon Loeliger <jdl@freescale.com>
58508 Date:   Wed Mar 5 18:05:45 2008 -0600
58510     FSL: Move board/mpc8260ads under board/freescale
58512     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58514 commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
58515 Author: goda.yusuke <goda.yusuke@renesas.com>
58516 Date:   Wed Mar 5 17:08:33 2008 +0900
58518     net: Add support AX88796L ethernet device
58520     AX88796L is device of NE2000 compatible.
58521     This patch support AX88796L ethernet device.
58523     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
58524     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58526 commit e0a6140dd381e1eed1ada2291166ef2616d8822b
58527 Author: Wolfgang Denk <wd@denx.de>
58528 Date:   Tue Mar 25 22:50:41 2008 +0100
58530     ne2000 driver: change #ifdef to Makefile conditional compilation
58532     Signed-off-by: Wolfgang Denk <wd@denx.de>
58534 commit e710185aae90c64d39c2d453e40e58ceefe4f250
58535 Author: goda.yusuke <goda.yusuke@renesas.com>
58536 Date:   Wed Mar 5 17:08:20 2008 +0900
58538     net: Divided code of NE2000 ethernet driver
58540     There are more devices of the NE2000 base.
58541     A present code is difficult for us to support more devices.
58542     To support more NE2000 clone devices, separated the function.
58544     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
58545     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58547 commit 395bce4f59a507a60a475f7ee46bed47de9482df
58548 Author: Mike Frysinger <vapier@gentoo.org>
58549 Date:   Sun Feb 24 23:58:13 2008 -0500
58551     net/Blackfin: move on-chip MAC driver into drivers/net/
58553     The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
58554     directory, but it is not board specific, so relocate it to the drivers dir
58555     so that other Blackfin ports can utilize it.
58557     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
58559 commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
58560 Author: Mike Frysinger <vapier@gentoo.org>
58561 Date:   Sun Feb 24 23:52:35 2008 -0500
58563     smc91111: use SSYNC() rather than asm(ssync) for Blackfin
58565     Since the "ssync" instruction may have hardware anomalies associated with
58566     it, have the smc91111 driver use the SSYNC macro rather than invoking it
58567     directly.  We workaround all the anomalies via this macro.
58569     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
58571 commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
58572 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
58573 Date:   Sun Feb 17 22:57:47 2008 +0000
58575     8xx: Update OF support on 8xx
58577     This patch does some shifting around of OF support on 8xx.
58579     Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
58581 commit 9c666a7db0b2285a270c68810889ce7d5dba304b
58582 Author: Kumar Gala <galak@kernel.crashing.org>
58583 Date:   Fri Feb 15 15:16:18 2008 -0600
58585     ppc: Allow boards to specify how much memory they can map
58587     For historical reasons we limited the stack to 256M because some boards
58588     could only map that much via BATS.  However newer boards are capable of
58589     mapping more memory (for example 85xx is capble of doing up to 2G).
58591     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58593 commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
58594 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
58595 Date:   Fri Feb 15 01:05:58 2008 +0000
58597     8xx : Add OF support to Adder875 board port - resubmit
58599     Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
58601 commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
58602 Author: Kumar Gala <galak@kernel.crashing.org>
58603 Date:   Thu Feb 14 20:44:42 2008 -0600
58605     Add setexpr command
58607     Add a simple expr style command that will set an env variable as the result
58608     of the command.  This allows us to do simple math in shell.  The following
58609     operations are supported: &, |, ^, +, -, *, /.
58611     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58613 commit 3f105faa64b9826e088711fdfcaa70cb1230397a
58614 Author: Jon Loeliger <jdl@freescale.com>
58615 Date:   Wed Mar 5 17:27:48 2008 -0600
58617     FSL: Move board/mpc7448hpc2 under board/freescale
58619     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58621 commit 449c703374a8868453425e15da7e2f76221b72e4
58622 Author: Jon Loeliger <jdl@freescale.com>
58623 Date:   Wed Mar 5 17:21:43 2008 -0600
58625     FSL: Move board/mpc8266ads under board/freescale
58627     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58629 commit 5863577989ad689427bb750107e9a75f1c1645d2
58630 Author: Jon Loeliger <jdl@freescale.com>
58631 Date:   Wed Mar 5 16:41:41 2008 -0600
58633     FSL: Move board/mpc8260ads under board/freescale
58635     Signed-off-by: Jon Loeliger <jdl@freescale.com>
58637 commit 8a773983957ee6c4aa344469b742f29c7d26afbd
58638 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58639 Date:   Tue Mar 25 21:30:08 2008 +0900
58641     [MIPS] Move gth2_config from ARM section to MIPS
58643     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58645 commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
58646 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58647 Date:   Tue Mar 25 21:30:07 2008 +0900
58649     [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
58651     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58653 commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
58654 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58655 Date:   Tue Mar 25 21:30:07 2008 +0900
58657     [MIPS] Fix dcache_status()
58659     You can't judge UNCACHED by Config.K0 LSB.
58661     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58663 commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
58664 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58665 Date:   Tue Mar 25 21:30:07 2008 +0900
58667     [MIPS] Introduce _machine_restart
58669     Handles machine specific functions by using weak functions.
58671     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58673 commit decaba6f5cf386d569ac3997bebb871b966c6b18
58674 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58675 Date:   Tue Mar 25 21:30:07 2008 +0900
58677     [MIPS] Cleanup CP0 Status initialization
58679     Add setup_c0_status from Linux. For the moment we disable interrupts, set
58680     CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
58681     reset-time configuration and will work well across most processors.
58683     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58685 commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
58686 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58687 Date:   Tue Mar 25 21:30:07 2008 +0900
58689     [MIPS] Initialize CP0 Cause before setting up CP0 Status register
58691     Without this change, we'll be suffering from deffered WATCH exception
58692     once Status.EXL is cleared. Make sure Cause.WP is cleared.
58694     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58696 commit 26138623230ca2bad3c78e05a65527ea70c8b688
58697 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58698 Date:   Tue Mar 25 21:30:07 2008 +0900
58700     [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
58702     Move things to appropriate place.
58704     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58706 commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
58707 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58708 Date:   Tue Mar 25 21:30:06 2008 +0900
58710     [MIPS] Implement flush_cache()
58712     We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
58713     don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
58714     function is used not only in U-Boot specfic programs but also at loading
58715     target binaries.
58717     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58719 commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
58720 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58721 Date:   Tue Mar 25 21:30:06 2008 +0900
58723     [MIPS] Fix I-/D-cache initialization loops
58725     Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
58726     again per a loop for I-cache initialization. But according to 'See MIPS
58727     Run', we're encouraged to use three separate loops rather than combining
58728     them *for both I- and D-cache*. This patch tries to fix this.
58730     In accordance with fixing above, mips_init_[id]cache are separated from
58731     mips_cache_reset(), and rewrite cache loops are completely rewritten with
58732     useful macros.
58734     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58736 commit 1898840797c7f50799377bd5b285a8a93a82c419
58737 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58738 Date:   Tue Mar 25 21:30:06 2008 +0900
58740     [MIPS] Replace memory clearance code with f_fill64
58742     This routine fills memory with zero by 64 bytes, and is 64-bit capable.
58744     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58746 commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
58747 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58748 Date:   Tue Mar 25 21:30:06 2008 +0900
58750     [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
58752     This patch replaces the current function definitions with NESTED, LEAF
58753     and END macro. They specify some more additional information about the
58754     function; an alignment of symbol, type of symbol, stack frame usage, etc.
58755     These information explicitly tells the assembler and the debugger about
58756     the types of code we want to generate.
58758     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58760 commit 282223a607c611425fa33f5428f8eae6636972bb
58761 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58762 Date:   Tue Mar 25 11:43:17 2008 +0900
58764     [MIPS] asm headers' updates
58766     Make some asm headers adjusted to the latest Linux kernel.
58768     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58770 commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
58771 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58772 Date:   Tue Mar 25 11:39:29 2008 +0900
58774     [MIPS] Request for the 'mips_cache_lock()' removal
58776     The initial intension of having mips_cache_lock() was to use the cache
58777     as memory for temporary stack use so that a C environment can be set up
58778     as early as possible.
58780     But now mips_cache_lock() follow lowlevel_init(). We've already have the
58781     real memory initilaized at this point, therefore we could/should use it.
58782     No reason to lock at all.
58784     Other problems:
58786     Cache locking is not consistent across MIPS implementaions. Some imple-
58787     mentations don't support locking at all. The style of locking varies -
58788     some support per line locking, others per way, etc. Some parts use bits
58789     in status registers instead of cache ops. Current mips_cache_lock() is
58790     not necessarily general-purpose.
58792     And this is worthy of special mention; once U-Boot/MIPS locks the lines,
58793     they are never get unlocked, so the code relies on whatever gets loaded
58794     after U-Boot to re-initialize the cache and clear the locks. We're sup-
58795     posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
58796     but leave the situation as it is for a long time.
58798     For these reasons, I proposed the removal of mips_cache_lock() from the
58799     global start-up code.
58801     This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
58802     *things have changed*. If he wants the same behavior as before, he needs
58803     to have CFG_INIT_RAM_LOCK_MIPS in his config file.
58805     If we don't have any regression report through several releases, then
58806     we'll remove codes entirely.
58808     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
58809     Acked-by: Andrew Dyer <amdyer@gmail.com>
58811 commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
58812 Author: Yuri Tikhonov <yur@emcraft.com>
58813 Date:   Mon Mar 24 11:30:54 2008 +0100
58815     lwmon5 SYSMON POST: fix backlight control
58817     If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
58818     run on the board, then the SYSMON POST controls the display backlight
58819     (doesn't switch backlight ON if POST FAILED, and does switch the
58820     backlight ON if PASSED).
58822     If not, then the video driver controls the display backlight (just
58823     switch ON the backlight upon initialization).
58825     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58827 commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
58828 Author: Yuri Tikhonov <yur@emcraft.com>
58829 Date:   Mon Mar 24 11:29:14 2008 +0100
58831     lwmon5 SYSMON POST: fix handling of negative temperatures
58833     Fix errors in the LWMON5 Sysmon POST for negative temperatures.
58835     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58837 commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
58838 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58839 Date:   Fri Mar 7 16:04:25 2008 +0900
58841     pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
58843     In current source code, when the device number of PCI is 0, process PCI
58844     bridge without fail. However, when the device number is 0, it is not PCI
58845     always bridge. There are times when device of PCI allocates.
58847     When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
58848     use this patch.
58850     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58851     Acked-by: Stefan Roese <sr@denx.de>
58853 commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
58854 Author: Yuri Tikhonov <yur@emcraft.com>
58855 Date:   Fri Mar 21 09:18:40 2008 +0100
58857     LWMON5: fix dsPIC POST
58859     Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
58861     Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
58863 commit 388b82fddc7c05596f3f615f190da0448227dc82
58864 Author: Bartlomiej Sieka <tur@semihalf.com>
58865 Date:   Thu Mar 20 23:23:13 2008 +0100
58867     [new uImage] Enable new uImage support for the pcs440ep board.
58869     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58871 commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
58872 Author: Bartlomiej Sieka <tur@semihalf.com>
58873 Date:   Thu Mar 20 23:23:13 2008 +0100
58875     [new uImage] Do not compile new uImage format support by default
58877     Disable default building of new uImage format support in preparation
58878     for merge with the master. Support for new format can be enabled on
58879     a per-board basis, by defining the following in the board's config file:
58881     #define CONFIG_FIT             1
58882     #define CONFIG_OF_LIBFDT       1
58884     This can be optionally defined to give more verbose output:
58886     #define CONFIG_FIT_VERBOSE     1 /* enable fit_format_{error,warning}() */
58888     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58890 commit dafaede8a46c7159310239e036c93e31c6374487
58891 Author: Bartlomiej Sieka <tur@semihalf.com>
58892 Date:   Thu Mar 20 23:20:31 2008 +0100
58894     [new uImage] Disable debuging output in preparation for merge with master
58896     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58898 commit fbe7a155027beacebaee9b32e1ada781fe924bca
58899 Author: Bartlomiej Sieka <tur@semihalf.com>
58900 Date:   Thu Mar 20 19:38:45 2008 +0100
58902     [new uImage] Compilation and new uImage handling fixes for imxtract
58904     Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
58905     include/config_cmd_default.h. Fix few warnings and handling of new format
58906     images.
58908     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58910 commit 36cc8cbb3379d5166f882641123521735c469f92
58911 Author: Bartlomiej Sieka <tur@semihalf.com>
58912 Date:   Thu Mar 20 23:10:19 2008 +0100
58914     [new uImage] Fix autoscr command used with new uImage format
58916     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58918 commit 43142e817f0597be412e7cbe19413f5532eafa5d
58919 Author: Bartlomiej Sieka <tur@semihalf.com>
58920 Date:   Thu Mar 20 23:10:19 2008 +0100
58922     [new uImage] Fix *.its files location in documentation
58924     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58926 commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
58927 Author: Wolfgang Denk <wd@denx.de>
58928 Date:   Thu Mar 20 22:01:38 2008 +0100
58930     lwmon5 POST: remove unreachable code
58932     plus some coding style cleanup
58934     Signed-off-by: Wolfgang Denk <wd@denx.de>
58936 commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
58937 Author: Yuri Tikhonov <yur@emcraft.com>
58938 Date:   Thu Mar 20 17:56:04 2008 +0300
58940     LWMON5: POST RTC fix
58942     Modify the RTC API to provide one a status for the time reported by
58943     the rtc_get() function:
58944       0 - a reliable time is guaranteed,
58945     < 0 - a reliable time isn't guaranteed (power fault, clock issues,
58946           and so on).
58948     The RTC chip drivers are responsible for providing this info if the
58949     corresponding chip supports such functionality. If not - always
58950     report that the time is reliable.
58952     The POST RTC test was modified to detect the RTC faults utilizing
58953     this new rtc_get() feature.
58955     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
58957 commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
58958 Author: Martin Krause <martin.krause@tqs.de>
58959 Date:   Wed Mar 19 14:25:14 2008 +0100
58961     TQM5200B: update MTD partition layout
58963     - insert partition for dtb blob to TQM5200B MTD layout
58964     - set env variables dependent on the configured board
58965       (TQM5200 or TQM5200B)
58967     Signed-off-by: Martin Krause <martin.krause@tqs.de>
58969 commit f0105727d132f56a21fa3ed8b162309cca6cac44
58970 Author: Stefan Roese <sr@denx.de>
58971 Date:   Wed Mar 19 07:09:26 2008 +0100
58973     CFI: Small cleanup for FLASH_SHOW_PROGRESS
58975     With this patch we don't need that many #ifdef's in the code. It moves
58976     the subtraction into the macro and defines a NOP-macro when
58977     CONFIG_FLASH_SHOW_PROGRESS is not defined.
58979     Signed-off-by: Stefan Roese <sr@denx.de>
58980     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
58982 commit 9a042e9ca512beaaa2cb450274313fc477141241
58983 Author: Jerry Van Baren <gvb.uboot@gmail.com>
58984 Date:   Sat Mar 8 13:48:01 2008 -0500
58986     Flash programming progress countdown.
58988     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
58990 commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
58991 Author: Bartlomiej Sieka <tur@semihalf.com>
58992 Date:   Wed Mar 19 10:00:06 2008 +0100
58994     [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
58996     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
58998 commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
58999 Author: David Gibson <david@gibson.dropbear.id.au>
59000 Date:   Mon Feb 18 18:09:04 2008 +1100
59002     libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
59004     Since fdt_node_offset_by_compatible() was converted to the new
59005     fdt_next_node() iterator, a chunk of initialization code became
59006     redundant, but was not removed by oversight.  This patch cleans it up.
59008     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
59010 commit d0ccb9b140b472039732de102fc14597eedb14df
59011 Author: David Gibson <david@gibson.dropbear.id.au>
59012 Date:   Mon Feb 18 18:06:31 2008 +1100
59014     libfdt: Trivial cleanup for CHECK_HEADER)
59016     Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
59017     However, there are a handful of functions (fdt_move, rw_check_header,
59018     fdt_open_into) from other files which could also use it (currently
59019     they open-code something more-or-less identical).  Therefore, this
59020     patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
59021     places.
59023     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
59025 commit fe30a354cdbb808b5f15366a935b151a4ccee74f
59026 Author: Kumar Gala <galak@kernel.crashing.org>
59027 Date:   Wed Feb 20 14:32:36 2008 -0600
59029     Fix fdt boardsetup command parsing
59031     The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
59033     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
59035 commit 804887e6001e2f00bea11431bf34d6d472512cda
59036 Author: Kumar Gala <galak@kernel.crashing.org>
59037 Date:   Fri Feb 15 03:34:36 2008 -0600
59039     Add sub-commands to fdt
59041     fdt header                          - Display header info
59042     fdt bootcpu <id>                    - Set boot cpuid
59043     fdt memory <addr> <size>            - Add/Update memory node
59044     fdt rsvmem print                    - Show current mem reserves
59045     fdt rsvmem add <addr> <size>        - Add a mem reserve
59046     fdt rsvmem delete <index>           - Delete a mem reserves
59048     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
59050 commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
59051 Author: David Gibson <david@gibson.dropbear.id.au>
59052 Date:   Thu Feb 14 16:50:34 2008 +1100
59054     libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
59056     fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
59057     node which has NOP tags interspersed with its properties.  In this
59058     case fdt_add_subnode_namelen() will put the new subnode before the
59059     first NOP tag, even if there are properties after it, which will
59060     result in an invalid blob.
59062     This patch fixes the bug, and adds a testcase for it.
59064     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
59066 commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
59067 Author: David Gibson <david@gibson.dropbear.id.au>
59068 Date:   Tue Feb 12 11:58:31 2008 +1100
59070     libfdt: Add and use a node iteration helper function.
59072     This patch adds an fdt_next_node() function which can be used to
59073     iterate through nodes of the tree while keeping track of depth.  This
59074     function is used to simplify the iteration code in a lot of other
59075     functions, and is also exported for use by library users.
59077     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
59079 commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
59080 Author: David Gibson <david@gibson.dropbear.id.au>
59081 Date:   Fri Jan 11 14:55:05 2008 +1100
59083     libfdt: Add fdt_set_name() function
59085     This patch adds an fdt_set_name() function to libfdt, mirroring
59086     fdt_get_name().  This is a r/w function which alters the name of a
59087     given device tree node.
59089     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
59091 commit 23e20aa6488e6c0622496549861bfdc74108debe
59092 Author: Yuri Tikhonov <yur@pollux.denx.de>
59093 Date:   Tue Mar 18 13:33:30 2008 +0100
59095     lwmon5: Fix register test logic to match the specific GDC h/w.
59097     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59098     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59100 commit 46bc0a938779aa1d664b847d36b08aa00f22e539
59101 Author: Yuri Tikhonov <yur@pollux.denx.de>
59102 Date:   Tue Mar 18 13:27:57 2008 +0100
59104     Fix backlight in the lwmon5 POST.
59106     Backlight was switched on even when temperature was too low.
59108     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59109     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59111 commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
59112 Author: Yuri Tikhonov <yur@pollux.denx.de>
59113 Date:   Wed Feb 6 18:48:36 2008 +0100
59115     The patch introduces the alternative configuration of the log buffer for the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory), the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ..., PPC440EPX_GPT0_COMP5).
59117      To enable this, alternative, configuration the U-Boot board configuration
59118     file for lwmon5 includes the definitions of alternative addresses for header
59119     (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
59121      The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
59122     and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
59123     lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
59125     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59127 commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
59128 Author: Yuri Tikhonov <yur@pollux.denx.de>
59129 Date:   Mon Feb 4 17:11:53 2008 +0100
59131     Add support for the lwmon5 board reset via GPIO58.
59133     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59134     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59136 commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
59137 Author: Yuri Tikhonov <yur@pollux.denx.de>
59138 Date:   Mon Feb 4 17:09:55 2008 +0100
59140     Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
59142     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59143     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59145 commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
59146 Author: Yuri Tikhonov <yur@pollux.denx.de>
59147 Date:   Mon Feb 4 14:11:03 2008 +0100
59149     The patch introduces the CRITICAL feature of POST tests. If the test marked as POST_CRITICAL fails then the alternative, post_critical, boot-command is used. If this command is not defined then U-Boot enters into interactive mode.
59151     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59152     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59154 commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
59155 Author: Yuri Tikhonov <yur@pollux.denx.de>
59156 Date:   Mon Feb 4 14:10:42 2008 +0100
59158     The patch adds new POST tests for the Lwmon5 board. These are:
59160     * External Watchdog test;
59161     * dsPIC tests;
59162     * FPGA test;
59163     * GDC test;
59164     * Sysmon tests.
59166     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59167     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59169 commit c2ed33efbfff5767bca236828e021c55fd547b6c
59170 Author: Yuri Tikhonov <yur@pollux.denx.de>
59171 Date:   Mon Feb 4 14:10:01 2008 +0100
59173     Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
59175     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59177 commit 3a5d1e7f1309998791702b2a559e3126781746b9
59178 Author: Yuri Tikhonov <yur@pollux.denx.de>
59179 Date:   Tue Mar 18 13:33:30 2008 +0100
59181     lwmon5: Fix register test logic to match the specific GDC h/w.
59183     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59184     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59186 commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
59187 Author: Yuri Tikhonov <yur@pollux.denx.de>
59188 Date:   Tue Mar 18 13:27:57 2008 +0100
59190     Fix backlight in the lwmon5 POST.
59192     Backlight was switcehd on even when temperature was too low.
59194     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59195     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59197 commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
59198 Author: Yuri Tikhonov <yur@pollux.denx.de>
59199 Date:   Wed Feb 6 18:48:36 2008 +0100
59201      The patch introduces the alternative configuration of the log buffer for
59202     the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
59203     the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
59204     PPC440EPX_GPT0_COMP5).
59206      To enable this, alternative, configuration the U-Boot board configuration
59207     file for lwmon5 includes the definitions of alternative addresses for header
59208     (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
59210      The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
59211     and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
59212     lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
59214     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59216 commit ff818b21b069f4bc9cb73373cc5a16014be101b7
59217 Author: Yuri Tikhonov <yur@pollux.denx.de>
59218 Date:   Mon Feb 4 17:11:53 2008 +0100
59220     Add support for the lwmon5 board reset via GPIO58.
59222     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59223     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59225 commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
59226 Author: Yuri Tikhonov <yur@pollux.denx.de>
59227 Date:   Mon Feb 4 17:09:55 2008 +0100
59229     Some fixes to dspic, fpga, and gdc post tests for lwmon5.
59230     Disable external watch-dog for now.
59232     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59233     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59235 commit e262efe35742c1ad4b0966ff501efc26f34a0aec
59236 Author: Yuri Tikhonov <yur@pollux.denx.de>
59237 Date:   Mon Feb 4 14:11:03 2008 +0100
59239     The patch introduces the CRITICAL feature of POST tests. If the test
59240     marked as POST_CRITICAL fails then the alternative, post_critical,
59241     boot-command is used. If this command is not defined then U-Boot
59242     enters into interactive mode.
59244     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59245     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59247 commit 65b20dcefc89618193fa51947968dada91e4c778
59248 Author: Yuri Tikhonov <yur@pollux.denx.de>
59249 Date:   Mon Feb 4 14:10:42 2008 +0100
59251     The patch adds new POST tests for the Lwmon5 board.
59252     These are:
59254     * External Watchdog test;
59255     * dsPIC tests;
59256     * FPGA test;
59257     * GDC test;
59258     * Sysmon tests.
59260     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59261     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
59263 commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
59264 Author: Yuri Tikhonov <yur@pollux.denx.de>
59265 Date:   Mon Feb 4 14:10:01 2008 +0100
59267     Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
59269     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
59271 commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
59272 Author: Wolfgang Denk <wd@denx.de>
59273 Date:   Tue Mar 18 17:35:51 2008 +0100
59275     HMI1001: fix compile problem.
59277     Signed-off-by: Wolfgang Denk <wd@denx.de>
59279 commit 1f2a9970109cebf7446e0503b10b71f8673045ee
59280 Author: Mike Frysinger <vapier@gentoo.org>
59281 Date:   Mon Feb 18 05:32:30 2008 -0500
59283     Blackfin: BF537-stamp: drop board-specific flash driver for CFI
59285     The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
59286     for the board specific driver at all.  Just use the common CFI driver.
59288     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
59290 commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
59291 Author: Mike Frysinger <vapier@gentoo.org>
59292 Date:   Tue Feb 19 00:36:14 2008 -0500
59294     Blackfin: add proper ELF markings to some assembly functions
59296     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
59298 commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
59299 Author: Mike Frysinger <vapier@gentoo.org>
59300 Date:   Tue Feb 19 00:35:17 2008 -0500
59302     Blackfin: new cplbinfo command for viewing cplb tables
59304     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
59306 commit aadb72503cd1602349a5fe53356d5f55ecc1b900
59307 Author: Mike Frysinger <vapier@gentoo.org>
59308 Date:   Mon Feb 18 05:37:51 2008 -0500
59310     Blackfin: update MAINTAINERS list
59312     Add maintainer information for the Blackfin boards.
59314     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
59316 commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
59317 Author: Mike Frysinger <vapier@gentoo.org>
59318 Date:   Mon Feb 18 05:26:48 2008 -0500
59320     Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
59322     Stop tying things to the processor that should be tied to other defines and
59323     change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
59324     system to select the -mcpu option.
59326     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
59328 commit 86a20fb920bd198105acf7b1191117f566d637ed
59329 Author: Mike Frysinger <vapier@gentoo.org>
59330 Date:   Sat Feb 16 07:40:36 2008 -0500
59332     Blackfin: move bootldr command to common code
59334     This moves the Blackfin-common bootldr command out of the BF537-STAMP
59335     specific board directory and into the common directory so that all Blackfin
59336     boards may utilize it.
59338     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
59340 commit decbe029b2a9d3333d02c433389b1c821eea96d7
59341 Author: Heiko Schocher <hs@denx.de>
59342 Date:   Fri Mar 14 11:05:20 2008 +0100
59344     mgcoge: update configuration
59346     Fix configuration for mgcoge board
59348     Signed-off-by: Heiko Schocher <hs@denx.de>
59350 commit c136724cda0219c49f1d4b346f00da29b14fdf14
59351 Author: Wolfgang Denk <wd@denx.de>
59352 Date:   Sun Mar 16 01:22:59 2008 +0100
59354     drivers/rtc/Makefile: keep list sorted
59356     Signed-off-by: Wolfgang Denk <wd@denx.de>
59358 commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
59359 Author: Tor Krill <tor@excito.com>
59360 Date:   Sat Mar 15 15:40:26 2008 +0100
59362     Add support for Intersil isl1208 RTC
59364     Signed-off-by: Tor Krill <tor@excito.com>
59366 commit 0210cff3d079d97b2156b13685ee8de368e68a1a
59367 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59368 Date:   Sat Mar 15 17:36:41 2008 +0100
59370     cramfs: Fix ifdef
59372     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59374 commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
59375 Author: Wolfgang Denk <wd@denx.de>
59376 Date:   Sun Mar 16 01:12:58 2008 +0100
59378     Conding style cleanup
59380     Signed-off-by: Wolfgang Denk <wd@denx.de>
59382 commit 41712b4e8c95dff23354bcd620e1f9477160c190
59383 Author: Stefan Roese <sr@denx.de>
59384 Date:   Wed Mar 5 12:31:53 2008 +0100
59386     ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
59388     This patch adds USB OHCI support to the Canyonlands board port. It also
59389     enables EXT2 support.
59391     Signed-off-by: Stefan Roese <sr@denx.de>
59393 commit 2596f5b9d353ff3e4387a3325d05740f16958038
59394 Author: Stefan Roese <sr@denx.de>
59395 Date:   Wed Mar 5 12:29:32 2008 +0100
59397     usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
59399     This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
59400     way a board just needs to define this new option to enable the "force
59401     NoPowerSwitching mode" instead of adding new CPU/architecture defines
59402     to the USB source itself.
59404     This new option will be used first with the new AMCC 460EX Canyonlands
59405     board port, which will be posted in a few days.
59407     This patch also fixes a small compilation problem when DEBUG is enabled.
59409     Signed-off-by: Stefan Roese <sr@denx.de>
59411 commit 71665ebf88408ff2acb762af47989fd4365b321a
59412 Author: Stefan Roese <sr@denx.de>
59413 Date:   Mon Mar 3 17:27:02 2008 +0100
59415     ppc4xx: Add Canyonlands NAND booting support
59417     460EX doesn't support a fixed bootstrap option to boot from 512 byte page
59418     NAND devices. The only bootstrap option for NAND booting is option F for
59419     2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
59420     EEPROM needs to be programmed accordingly.
59422     This patch adds basic NAND booting support for the AMCC Canyonlands aval
59423     board and also adds support to the "bootstrap" command, to enable NAND
59424     booting I2C setting.
59426     Tested with 512 byte page NAND device (32MByte) on Canyonlands.
59428     Signed-off-by: Stefan Roese <sr@denx.de>
59430 commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
59431 Author: Stefan Roese <sr@denx.de>
59432 Date:   Tue Mar 11 16:53:00 2008 +0100
59434     ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
59436     This patch adds support for the AMCC Canyonlands 460EX evaluation
59437     board.
59439     Signed-off-by: Stefan Roese <sr@denx.de>
59441 commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
59442 Author: Stefan Roese <sr@denx.de>
59443 Date:   Tue Mar 11 16:52:24 2008 +0100
59445     ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
59447     This patch adds support for the AMCC Canyonlands 460EX evaluation
59448     board.
59450     Signed-off-by: Stefan Roese <sr@denx.de>
59452 commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
59453 Author: Stefan Roese <sr@denx.de>
59454 Date:   Tue Mar 11 16:51:17 2008 +0100
59456     ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
59458     This patch adds support for the AMCC Canyonlands 460EX evaluation
59459     board.
59461     Signed-off-by: Stefan Roese <sr@denx.de>
59463 commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
59464 Author: Stefan Roese <sr@denx.de>
59465 Date:   Tue Mar 11 15:11:43 2008 +0100
59467     ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
59469     This patch adds basic support for the AMCC 460EX/460GT PPC's.
59471     Signed-off-by: Stefan Roese <sr@denx.de>
59473 commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
59474 Author: Stefan Roese <sr@denx.de>
59475 Date:   Tue Mar 11 15:11:18 2008 +0100
59477     ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
59479     This patch adds basic support for the AMCC 460EX/460GT PPC's.
59481     Signed-off-by: Stefan Roese <sr@denx.de>
59483 commit 999ecd5aca381984d8ebbeb207ece82a1c275577
59484 Author: Stefan Roese <sr@denx.de>
59485 Date:   Tue Mar 11 15:07:10 2008 +0100
59487     ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
59489     This patch adds basic support for the AMCC 460EX/460GT PPC's.
59491     Signed-off-by: Stefan Roese <sr@denx.de>
59493 commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
59494 Author: Stefan Roese <sr@denx.de>
59495 Date:   Tue Mar 11 15:05:50 2008 +0100
59497     ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
59499     This patch adds basic support for the AMCC 460EX/460GT PPC's.
59501     Signed-off-by: Stefan Roese <sr@denx.de>
59503 commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
59504 Author: Stefan Roese <sr@denx.de>
59505 Date:   Tue Mar 11 15:05:26 2008 +0100
59507     ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
59509     This patch adds basic support for the AMCC 460EX/460GT PPC's.
59511     Signed-off-by: Stefan Roese <sr@denx.de>
59513 commit 56e410178375d9f20be25fb24e180974f0ae120b
59514 Author: Stefan Roese <sr@denx.de>
59515 Date:   Tue Feb 19 22:07:57 2008 +0100
59517     ppc4xx: interrupt.c reworked
59519     This patch is a rework of the 4xx interrupt handling done while
59520     adding the 460EX/GT support. Interrupts are needed on 4xx for the
59521     EMAC driver.
59523     Signed-off-by: Stefan Roese <sr@denx.de>
59525 commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
59526 Author: Stefan Roese <sr@denx.de>
59527 Date:   Tue Feb 19 22:01:57 2008 +0100
59529     ppc4xx: program_tlb now uses 64bit physical addess
59531     This patch changes the physical addess parameter from 32bit to 64bit.
59532     This is needed for 36bit 4xx platforms to access areas located
59533     beyond the 4GB border, like SoC peripherals (EBC etc.).
59535     Signed-off-by: Stefan Roese <sr@denx.de>
59537 commit c3307fa186af85771924c434997089b8104c0a46
59538 Author: Stefan Roese <sr@denx.de>
59539 Date:   Tue Feb 19 21:58:25 2008 +0100
59541     ppc4xx: miiphy.c reworked
59543     While adding the 460EX/GT support I reworked the 4xx miiphy code. It
59544     badly neede some cleanup.
59546     Signed-off-by: Stefan Roese <sr@denx.de>
59548 commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
59549 Author: Stefan Roese <sr@denx.de>
59550 Date:   Tue Feb 19 16:21:49 2008 +0100
59552     rtc: Add M41T62 support
59554     This patch add support for the STM M41T62 RTC. It is used and tested
59555     on the AMCC Canyonlands 406EX platform.
59557     Signed-off-by: Stefan Roese <sr@denx.de>
59559 commit 217d383e201adc7f2271145ae345ea5eae2b7170
59560 Author: Niklaus Giger <niklaus.giger@netstal.com>
59561 Date:   Mon Feb 25 18:46:43 2008 +0100
59563     ppc4xx: Add 405GPr based MCU25 board specific files
59565     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59567 commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
59568 Author: Niklaus Giger <niklaus.giger@netstal.com>
59569 Date:   Mon Feb 25 18:46:42 2008 +0100
59571     ppc4xx: Add 405GPr based MCU25 board config file
59573     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59575 commit b05f35436b733a240559e77e46bed8439665ecc5
59576 Author: Niklaus Giger <niklaus.giger@netstal.com>
59577 Date:   Mon Feb 25 18:46:41 2008 +0100
59579     ppc4xx: Add 405GPr based MCU25 board. Global files
59581     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59583 commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
59584 Author: Niklaus Giger <niklaus.giger@netstal.com>
59585 Date:   Mon Feb 25 18:37:02 2008 +0100
59587     ppc4xx: HCU4/5. remove obsolete hcu_flash.c
59589     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59591 commit a079494853cc2bfeddb26673219db0b4b2b31566
59592 Author: Niklaus Giger <niklaus.giger@netstal.com>
59593 Date:   Mon Feb 25 18:37:01 2008 +0100
59595     ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
59597     Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
59598     the FLASH_CFI_LEGACY et al. config options.
59600     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
59602 commit e4170e5a50c8110f792bc37472833ae669d69951
59603 Author: Stefan Roese <sr@denx.de>
59604 Date:   Tue Mar 11 13:52:25 2008 +0100
59606     ppc4xx: Fix comment in 405EX DDR2 init code
59608     Signed-off-by: Stefan Roese <sr@denx.de>
59610 commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
59611 Author: Bartlomiej Sieka <tur@semihalf.com>
59612 Date:   Fri Mar 14 16:22:34 2008 +0100
59614     Add MD5 support to the new uImage format
59616     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
59618 commit 0ede0c383530a418cf98be9122371a86573cd0db
59619 Author: Bartlomiej Sieka <tur@semihalf.com>
59620 Date:   Fri Mar 14 16:22:34 2008 +0100
59622     Add the MD5 algorithm
59624     MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
59625     calculated using the md5() function -- see include/md5.h for details.
59627     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
59629 commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
59630 Author: Wolfgang Denk <wd@denx.de>
59631 Date:   Fri Mar 14 16:04:54 2008 +0100
59633     tools/setlocalversion: use a git-describe-ish format
59635     Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
59636     where 'nnnnn' is the number of commits since the last tag (i.e.,
59637     1.3.2-rc3).  This makes it much easier to recognize "newer" versions
59638     and to see how much has been changed since the referenced tag.
59640     Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
59642     Signed-off-by: Wolfgang Denk <wd@denx.de>
59644 commit c6dc21c84de0f159a1752c5ebd33cff843f63609
59645 Author: Wolfgang Denk <wd@denx.de>
59646 Date:   Thu Mar 13 14:32:03 2008 +0100
59648     HMI1001: add support for MPC5200 Rev. B processors.
59650     Signed-off-by: Wolfgang Denk <wd@denx.de>
59652 commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
59653 Author: Wolfgang Denk <wd@denx.de>
59654 Date:   Thu Mar 13 14:29:49 2008 +0100
59656     TQM5200: remove dead code
59658     This board never used a MGT5100 processor.
59660     Signed-off-by: Wolfgang Denk <wd@denx.de>
59662 commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
59663 Author: Marian Balakowicz <m8@semihalf.com>
59664 Date:   Wed Mar 12 12:14:15 2008 +0100
59666     [new uImage] Fix build issue on ARM
59668     ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
59670     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
59672 commit 3310c549a73a949430bfda90876df7552a1dab0c
59673 Author: Marian Balakowicz <m8@semihalf.com>
59674 Date:   Wed Mar 12 12:13:13 2008 +0100
59676     [new uImage] Add new uImage format documentation and examples
59678     Create doc/uImage.FIT documentation directory with the following files:
59679     - command_syntax_extensions.txt : extended command syntax description
59680     - howto.txt                     : short usage howto
59681     - source_file_format.txt        : internal new uImage format description
59683     Add example image source files:
59684     - kernel.its
59685     - kernel_fdt.its
59686     - multi.its
59688     Update README appropriately.
59690     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59691     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
59693 commit 1ec73761d2e247078f4520a265d463e8b73391a2
59694 Author: Marian Balakowicz <m8@semihalf.com>
59695 Date:   Wed Mar 12 10:35:52 2008 +0100
59697     [new uImage] Fix definition of common bootm_headers_t fields
59699     verify, autostart and lmb fields are used regardless of CONFIG_FIT
59700     setting, move their definitions to common section.
59702     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59704 commit 1d1cb4270edc6a99276834064069717f9782c491
59705 Author: Marian Balakowicz <m8@semihalf.com>
59706 Date:   Wed Mar 12 10:35:51 2008 +0100
59708     [new uImage] Fix build problems on trab board
59710     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59712 commit f773bea8e11f4a11c388dcee956b2444203e6b65
59713 Author: Marian Balakowicz <m8@semihalf.com>
59714 Date:   Wed Mar 12 10:35:46 2008 +0100
59716     [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
59718     Save FIT configuration provied in the first bootm argument and use it
59719     when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
59720     arguments are not specified.
59722     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59724 commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
59725 Author: Marian Balakowicz <m8@semihalf.com>
59726 Date:   Wed Mar 12 10:33:01 2008 +0100
59728     [new uImage] More verbose kernel image uncompress error message
59730     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59732 commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
59733 Author: Marian Balakowicz <m8@semihalf.com>
59734 Date:   Wed Mar 12 10:33:01 2008 +0100
59736     [new uImage] Use show_boot_progress() for new uImage format
59738     This patch allocates a set of show_boot_progress() IDs for new uImage format
59739     and adds show_boot_progress() calls in new uImage format handling code.
59741     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59743 commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
59744 Author: Marian Balakowicz <m8@semihalf.com>
59745 Date:   Wed Mar 12 10:33:01 2008 +0100
59747     [new uImage] Add new uImage fromat support to fpga command
59749     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59751 commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
59752 Author: Marian Balakowicz <m8@semihalf.com>
59753 Date:   Wed Mar 12 10:33:01 2008 +0100
59755     [new uImage] Add new uImage format handling to other bootm related commands
59757     Updated commands:
59759     docboot  - cmd_doc.c
59760     fdcboot  - cmd_fdc.c
59761     diskboot - cmd_ide.c
59762     nboot    - cmd_nand.c
59763     scsiboot - cmd_scsi.c
59764     usbboot  - cmd_usb.c
59766     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59768 commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
59769 Author: Marian Balakowicz <m8@semihalf.com>
59770 Date:   Wed Mar 12 10:33:00 2008 +0100
59772     [new uImage] Add new uImage format support to imgextract command
59774     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59776 commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
59777 Author: Marian Balakowicz <m8@semihalf.com>
59778 Date:   Wed Mar 12 10:33:00 2008 +0100
59780     [new uImage] Add new uImage format support to autoscript routine
59782     autoscript() routine is updated to accept second argument, which
59783     is only used for FIT images and provides a FIT subimage unit name.
59785     autoscript() routine callers must now pass two arguments. For
59786     non-interactive use (like in cmd_load.c, cmd_net.c), new environment
59787     variable 'autoscript_uname' is introduced and used as a FIT
59788     subimage unit name source.
59790     autoscript command accepts extended syntax of the addr argument:
59791     addr:<subimg_uname>
59793     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59795 commit cd7c596e9f561dbbc17b717277438aee78cde14f
59796 Author: Marian Balakowicz <m8@semihalf.com>
59797 Date:   Wed Mar 12 10:33:00 2008 +0100
59799     [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
59801     This patch updates architecture specific implementations of
59802     do_bootm_linux() adding new uImage format handling for
59803     operations like get kernel entry point address, get kernel
59804     image data start address.
59806     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59808 commit 3dfe110149311425919e6d6a14b561b4207498f1
59809 Author: Marian Balakowicz <m8@semihalf.com>
59810 Date:   Wed Mar 12 10:32:59 2008 +0100
59812     [new uImage] Add node offsets for FIT images listed in struct bootm_headers
59814     This patch adds new node offset fields to struct bootm_headers
59815     and updates bootm_headers processing code to make use of them.
59816     Saved node offsets allow to avoid repeating fit_image_get_node() calls.
59818     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59820 commit bc8ed486b125452ba3bd8344f052f437329150c5
59821 Author: Marian Balakowicz <m8@semihalf.com>
59822 Date:   Wed Mar 12 10:32:53 2008 +0100
59824     [new uImage] ppc: Add new uImage format support to FDT handling routines
59826     Support for new (FIT) format uImages is added to powerpc specific
59827     boot_get_fdt() routine which now recognizes, sanity checks FIT image
59828     and is able to access data sections of the requested component image.
59830     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59832 commit a44a269a905f924b420020506a4d7d7eedcc0eaf
59833 Author: Marian Balakowicz <m8@semihalf.com>
59834 Date:   Wed Mar 12 10:14:57 2008 +0100
59836     [new uImage] Re-enable interrupts for non automatic booting
59838     Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
59839     environment variable is not set to 'yes'.
59841     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59843 commit d985c8498c4e47095820da97aa722381d39172c5
59844 Author: Marian Balakowicz <m8@semihalf.com>
59845 Date:   Wed Mar 12 10:14:38 2008 +0100
59847     [new uImage] Remove unnecessary arguments passed to ramdisk routines
59849     boot_get_ramdisk() and image_get_ramdisk() do not need all
59850     cmdtp, flag, argc and argv arguments. Simplify routines definition.
59852     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59854 commit c87796483bc7c2900470dc747c367f602577608d
59855 Author: Marian Balakowicz <m8@semihalf.com>
59856 Date:   Wed Mar 12 10:12:37 2008 +0100
59858     [new uImage] Add new uImage format support for ramdisk handling
59860     This patch updates boot_get_ramdisk() routine adding format
59861     verification and handling for new (FIT) uImages.
59863     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59865 commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
59866 Author: Marian Balakowicz <m8@semihalf.com>
59867 Date:   Wed Mar 12 10:01:05 2008 +0100
59869     [new uImage] Add new uImage format support for kernel booting
59871     New format uImages are recognized by the bootm command,
59872     validity of specified kernel component image is checked and
59873     its data section located and used for further processing
59874     (uncompress, load, etc.)
59876     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59878 commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
59879 Author: Marian Balakowicz <m8@semihalf.com>
59880 Date:   Tue Mar 11 12:35:20 2008 +0100
59882     [new uImage] Add new uImage format support for imls and iminfo commands
59884     imls and iminfo can now recognize nad print out contents of the new (FIT)
59885     format uImages.
59887     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59889 commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
59890 Author: Bartlomiej Sieka <tur@semihalf.com>
59891 Date:   Tue Mar 11 12:34:47 2008 +0100
59893     [new uImage] Add support for new uImage format to mkimage tool
59895     Support for the new uImage format (FIT) is added to mkimage tool.
59896     Commandline syntax is appropriately extended:
59898     mkimage [-D dtc_options] -f fit-image.its fit-image
59900     mkimage (together with dtc) takes fit-image.its and referenced therein
59901     binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
59902     final image that can be transferred to the target (e.g., via tftp) and then
59903     booted using the bootm command in U-Boot.
59905     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
59907 commit eb6175edd6c120d8b89678243e5a2be362ee8e40
59908 Author: Marian Balakowicz <m8@semihalf.com>
59909 Date:   Mon Mar 10 17:53:49 2008 +0100
59911     [new uImage] Make node unit names const in struct bootm_headers
59913     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59915 commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
59916 Author: Marian Balakowicz <m8@semihalf.com>
59917 Date:   Fri Feb 29 21:24:06 2008 +0100
59919     [new uImage] New uImage low-level API
59921     Add FDT-based functions for handling new format component images,
59922     configurations, node operations, property get/set, etc.
59924     fit_        - routines handling global new format uImage operations
59925                   like get/set top level property, process all nodes, etc.
59926     fit_image_  - routines handling component images subnodes
59927     fit_conf_   - routines handling configurations node
59929     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
59930     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
59932 commit 30f1806f60978d707b0cff2d7bf89d141fc24290
59933 Author: Wolfgang Denk <wd@denx.de>
59934 Date:   Sun Mar 9 16:20:02 2008 +0100
59936     Release v1.3.2
59938     Update CHANGELOG for release.
59940     Signed-off-by: Wolfgang Denk <wd@denx.de>
59942 commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
59943 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59944 Date:   Sun Mar 9 14:52:11 2008 +0100
59946     SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
59948     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59949     Signed-off-by: Wolfgang Denk <wd@denx.de>
59951 commit db695b78515ddb88a2d4f3357c120345efbf59ec
59952 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59953 Date:   Sun Mar 9 10:44:01 2008 +0100
59955     scb9328: Fix flash warning: type qualifiers ignored on function return type
59957     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59959 commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
59960 Author: Wolfgang Denk <wd@denx.de>
59961 Date:   Sun Mar 9 10:50:41 2008 +0100
59963     esd/common/fpga.c: fix indentation.
59965     Signed-off-by: Wolfgang Denk <wd@denx.de>
59967 commit cc3843e36453e2b8db65d7e56de938ba045016a0
59968 Author: Wolfgang Denk <wd@denx.de>
59969 Date:   Sun Mar 9 10:33:31 2008 +0100
59971     common/kgdb.c: fix 'dereferencing type-punned pointer' warning
59973     and get rid of a couple of unneeded casts.
59975     Signed-off-by: Wolfgang Denk <wd@denx.de>
59977 commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
59978 Author: Wolfgang Denk <wd@denx.de>
59979 Date:   Sun Mar 9 10:09:53 2008 +0100
59981     esd/common/fpga.c: fix 'assignment of read-only location' error
59983     Signed-off-by: Wolfgang Denk <wd@denx.de>
59985 commit c6fe4dabac066e8758345d249032768496983a3e
59986 Author: Wolfgang Denk <wd@denx.de>
59987 Date:   Sun Mar 9 02:13:19 2008 +0100
59989     Makefile: make build silently again.
59991     Signed-off-by: Wolfgang Denk <wd@denx.de>
59993 commit 76babc86576f092573599334c85ec543fdbc6015
59994 Author: Wolfgang Denk <wd@denx.de>
59995 Date:   Sun Mar 9 02:07:49 2008 +0100
59997     m501sk: Fix out of tree building
59999     Signed-off-by: Wolfgang Denk <wd@denx.de>
60001 commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
60002 Author: Wolfgang Denk <wd@denx.de>
60003 Date:   Sun Mar 9 00:06:09 2008 +0100
60005     ADS5121: fix out of tree build
60007     and simplify Makefile a bit.
60009     Signed-off-by: Wolfgang Denk <wd@denx.de>
60011 commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
60012 Author: Wolfgang Denk <wd@denx.de>
60013 Date:   Sat Mar 8 22:35:31 2008 +0100
60015     Release v1.3.2
60017     Signed-off-by: Wolfgang Denk <wd@denx.de>
60019 commit 78a90f827df74520e939c794fc7413dace21c4db
60020 Author: Wolfgang Denk <wd@denx.de>
60021 Date:   Sat Mar 8 22:35:04 2008 +0100
60023     Update CHANGELOG
60025     Signed-off-by: Wolfgang Denk <wd@denx.de>
60027 commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
60028 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60029 Date:   Sat Mar 8 21:30:04 2008 +0100
60031     esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
60033     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60035 commit d75469d48c05795144f4b8ba76addbb4920a7bba
60036 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
60037 Date:   Sat Mar 8 09:25:49 2008 +0900
60039     net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
60041     When rtl_recv() of rtl8169 is called, OWNbit of status register
60042     is not enable occasionally.
60043     rtl_recv() doesn't work normally when the driver doesn't do
60044     appropriate processing.
60045     This patch fix this problem.
60047     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
60049 commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
60050 Author: Heiko Schocher <hs@denx.de>
60051 Date:   Fri Mar 7 08:15:28 2008 +0100
60053     mgsuvd: update board configuration
60055     initialize the UPIOx controller.
60057     Signed-off-by: Heiko Schocher <hs@denx.de>
60059 commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
60060 Author: Heiko Schocher <hs@denx.de>
60061 Date:   Fri Mar 7 08:13:41 2008 +0100
60063     mgcoge: update board configuration
60065     add support for the config Flash.
60066     initialize the UPIOx controller.
60068     Signed-off-by: Heiko Schocher <hs@denx.de>
60070 commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
60071 Author: Kim Phillips <kim.phillips@freescale.com>
60072 Date:   Fri Mar 7 12:27:31 2008 -0600
60074     mpc83xx: make dtb basename file references equal those of linux
60076     the dts file basenames were updated in linux - this helps avoid
60077     inadvertently loading any old dtbs laying around.
60079     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60081 commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
60082 Author: Kim Phillips <kim.phillips@freescale.com>
60083 Date:   Wed Feb 27 16:08:22 2008 -0600
60085     net: uec_phy: actually increment the timeout counter
60087     allow u-boot to recover (and, e.g., switch to another interface) in the
60088     case where a PHY does not report autonegotiation is complete within its
60089     two second timeout value.
60091     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60093 commit 772003e43957ee0c895abed7cd82cbe72820cbb8
60094 Author: Markus Brunner <super.firetwister@googlemail.com>
60095 Date:   Wed Mar 5 21:38:12 2008 +0100
60097     fix taihu soft spi_read
60099     The taihu board used gpio_read_out_bit which reads the output register and not
60100     the pin state.
60102     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
60104 commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
60105 Author: Stefan Roese <sr@denx.de>
60106 Date:   Fri Mar 7 08:01:43 2008 +0100
60108     ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
60110     Signed-off-by: Stefan Roese <sr@denx.de>
60112 commit bd4458cb47abecabd406b1210457be96c69fc49d
60113 Author: Dave Liu <r63238@freescale.com>
60114 Date:   Tue Mar 4 16:59:22 2008 +0800
60116     837xEMDS: Improve the system performance
60118     1. Make the CSB bus pipeline depth as 4, and enable
60119        the repeat mode;
60120     2. Raise the eTSEC emergency priority;
60121     3. Use the highest IP blocks clock.
60123     Signed-off-by: Dave Liu <daveliu@freescale.com>
60125 commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
60126 Author: Detlev Zundel <dzu@denx.de>
60127 Date:   Thu Mar 6 16:45:53 2008 +0100
60129     Replace "run load; run update" with conditionalized "run load update".
60131     The latter version stops when "run load" fails for whatever reasons
60132     rendering the combination *a lot* more secure.
60134     Signed-off-by: Detlev Zundel <dzu@denx.de>
60136 commit 6bc113886d7d316df1a4e459bec8baf027518551
60137 Author: Stefan Roese <sr@denx.de>
60138 Date:   Tue Mar 4 17:40:41 2008 +0100
60140     net: Print error message upon net usage when no ethernet-interface is found
60142     This patch fixes a problem seen on PPC4xx boards, when no MAC address is
60143     defined. Then no ethernet interface is available but a simple "tftp"
60144     command will return without any error message which is quite confusing.
60146     Signed-off-by: Stefan Roese <sr@denx.de>
60148 commit a30a549a3553032d809e0356306b62de0b125901
60149 Author: Jon Loeliger <jdl@freescale.com>
60150 Date:   Tue Mar 4 10:03:03 2008 -0600
60152     Remove erroneous or extra spd.h #includers.
60154     Many of the spd.h #includers don't need it,
60155     and wanted to have spd_sdram() declared instead.
60156     Since they didn't get that, some also had open
60157     coded extern declarations of it instead or as well.
60158     Fix it all up by using spd_sdram.h where needed.
60160     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60162 commit a4475386cef14af3fd88f0518b688e755669486d
60163 Author: Wolfgang Denk <wd@denx.de>
60164 Date:   Tue Mar 4 17:41:28 2008 +0100
60166     PCS440EP: fix build problems (redundant #define)
60168     Signed-off-by: Wolfgang Denk <wd@denx.de>
60170 commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
60171 Author: Stefan Roese <sr@denx.de>
60172 Date:   Tue Mar 4 17:39:25 2008 +0100
60174     net: Print error message upon net usage when no ethernet-interface is found
60176     This patch fixes a problem seen on PPC4xx boards, when no MAC address is
60177     defined. Then no ethernet interface is available but a simple "tftp"
60178     command will return without any error message which is quite confusing.
60180     Signed-off-by: Stefan Roese <sr@denx.de>
60182 commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
60183 Author: Wolfgang Denk <wd@denx.de>
60184 Date:   Tue Mar 4 17:38:50 2008 +0100
60186     W7OLMC/W7OLMG: fix build problems (redundant #define)
60188     Signed-off-by: Wolfgang Denk <wd@denx.de>
60190 commit f9301e1cda296245ba052d7b08321199c3d0af9d
60191 Author: Wolfgang Denk <wd@denx.de>
60192 Date:   Tue Mar 4 14:58:31 2008 +0100
60194     Makefile: fix problem with out-of-tree builds introduced by 5013c09f
60196     Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
60197     problem for out-of-tree builds which caused "make clean" to fail.
60199     Signed-off-by: Wolfgang Denk <wd@denx.de>
60201 commit dfece9500556bed5d8244b1c15d973cec7c25bfe
60202 Author: Wolfgang Denk <wd@denx.de>
60203 Date:   Tue Mar 4 11:58:26 2008 +0100
60205     examples/Makefile: build "hello_world" on 8xx, too.
60207     Signed-off-by: Wolfgang Denk <wd@denx.de>
60209 commit 74eb0222594fd23aafdf168e60e872814eea8b62
60210 Author: Mike Nuss <mike@terascala.com>
60211 Date:   Mon Mar 3 15:27:05 2008 -0500
60213     PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
60215     Every now and then a Sequoia board (or equivalent hardware) had
60216     problems connecting to a Gigabit capable network interface.
60218     There were differences in the PHY setup between Linux and U-Boot.
60220     This patch fixes the problem. Apparently "remote fault" is being set,
60221     which signals to some devices (on the other end of the cable) that a
60222     fault has occurred, while other devices ignore it. I believe the RF bit
60223     was causing the issue, but I removed T4 also, to match up with Linux.
60225     Signed-off-by: Mike Nuss <mike@terascala.com>
60227 commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
60228 Author: Timur Tabi <timur@freescale.com>
60229 Date:   Mon Mar 3 09:58:52 2008 -0600
60231     fix QE firmware uploading limit
60233     Fix a typo in qe_upload_firmware() that prevented uploading firmware on
60234     systems with more than one RISC core.
60236     Signed-off-by: Timur Tabi <timur@freescale.com>
60238 commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
60239 Author: Bernhard Nemec <bnemec@ganssloser.com>
60240 Date:   Mon Mar 3 11:57:23 2008 +0000
60242     Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
60244     Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
60245     see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
60247     Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
60249 commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
60250 Author: Kim B. Heino <Kim.Heino@bluegiga.com>
60251 Date:   Mon Mar 3 10:39:13 2008 +0200
60253     fix copy from ram to dataflash
60255     If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
60256     routines instead of dataflash. This is because it checks "if source
60257     address is not dataflash" instead of target address.
60259     Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
60261 commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
60262 Author: Wolfgang Denk <wd@denx.de>
60263 Date:   Mon Mar 3 12:16:44 2008 +0100
60265     Fix quoting problem (preboot setting) in many board config files.
60267     Signed-off-by: Wolfgang Denk <wd@denx.de>
60269 commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
60270 Author: Wolfgang Denk <wd@denx.de>
60271 Date:   Mon Mar 3 12:36:49 2008 +0100
60273     ADS5121: Fix default environment.
60275     Signed-off-by: Wolfgang Denk <wd@denx.de>
60277 commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
60278 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60279 Date:   Sun Mar 2 16:12:31 2008 +0100
60281     Makefile: Fix missing unconfig and mkconfig use
60283     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60285 commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
60286 Author: michael <trimarchi@gandalf.sssup.it>
60287 Date:   Sun Mar 2 23:33:46 2008 +0100
60289     Fix checking fat32 cluster size.
60291     This fixes the cluster size tests in the FAT32 file system.
60292     The current implementation of VFAT support doesn't work if the
60293     referred cluster has an offset > 16bit representation, causing
60294     "fatload" and "fatls" commands etc. to fail.
60296     Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
60298 commit 661bad63a076a96c39c64f136915f146725af92b
60299 Author: Wolfgang Denk <wd@denx.de>
60300 Date:   Sun Mar 2 22:57:23 2008 +0100
60302     Prepare v1.3.2-rc2 release candidate
60304     Signed-off-by: Wolfgang Denk <wd@denx.de>
60306 commit 76957cb3d621bf664311908e5962e151c633c285
60307 Author: Stefan Roese <sr@denx.de>
60308 Date:   Sat Mar 1 12:11:40 2008 +0100
60310     ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
60312     The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
60313     currently 4k/2k is configured. This patch fixes this issue.
60315     Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
60317     Signed-off-by: Stefan Roese <sr@denx.de>
60319 commit 118978c8eb43803e2794233922df4249fa278b83
60320 Author: Woodruff, Richard <r-woodruff2@ti.com>
60321 Date:   Fri Feb 29 17:34:35 2008 -0600
60323     Fix alignment error on ARM for modules
60325     Fix alignment fault on ARM when running modules.  With out an explicit
60326     linker file gcc4.2.1 will half word align __bss_start's value.  The word
60327     dereference will crash hello_world.
60329     signed-off-by Richard Woodruff <r-woodruff2@ti.com>
60331 commit ce1120dd703e6f12c59e4eba9962356a0300b832
60332 Author: Dave Liu <r63238@freescale.com>
60333 Date:   Fri Feb 29 17:45:31 2008 +0800
60335     fs: Fix ext2 read issue
60337     The ext2 aligned process will corrupt the key
60338     data struct, the patch fix this.
60340     Signed-off-by: Dave Liu <daveliu@freescale.com>
60342 commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
60343 Author: Wolfgang Denk <wd@denx.de>
60344 Date:   Sun Mar 2 22:45:33 2008 +0100
60346     Makefile: cleanup "clean" target
60348     Make sure CDPATH settings cannot interfere.
60349     Update CHANGELOG.
60351     Signed-off-by: Wolfgang Denk <wd@denx.de>
60353 commit ffda586fc1373243c9794babde69500f6293a8d8
60354 Author: Li Yang <leoli@freescale.com>
60355 Date:   Fri Feb 29 11:46:05 2008 +0800
60357     add cscope build target
60359     Add cscope build target to generate cscope database for code browsing.
60361     Signed-off-by: Li Yang <leoli@freescale.com>
60363 commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
60364 Author: Kim Phillips <kim.phillips@freescale.com>
60365 Date:   Wed Feb 27 15:06:39 2008 -0600
60367     net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
60369     erratum 5.6 states the autoneg completion bit is functional only if the
60370     autoneg bit is asserted.
60372     This fixes any secondarily-issued networking commands on non-gigabit
60373     links on the mpc8360 mds board.
60375     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60377 commit 5f91db7f582ca17b1f19f10189c025696f333d2e
60378 Author: John Rigby <jrigby@freescale.com>
60379 Date:   Tue Feb 26 09:38:14 2008 -0700
60381     MPC5121e ADS PCI support take 3
60383     Adds PCI support for MPC5121
60385     Tested with drivers/net/rtl8139.c
60387     Support is conditional since PCI on old silicon does not work.
60389     ads5121_PCI_config turns on PCI
60391     In this version, condition compilation of PCI code has been moved
60392     from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
60393     suggested by Jean-Christophe PLAGNIOL-VILLARD
60395     Signed-off-by: John Rigby <jrigby@freescale.com>
60397 commit 44b4dbed4133f657705b7c5193209da9978243a7
60398 Author: Anatolij Gustschin <agust@denx.de>
60399 Date:   Mon Feb 25 23:53:07 2008 +0100
60401     Fix warnings while compilation of post/drivers/memory.c
60403     Fix warnings while compilation with new gcc in eldk-4.2
60405     Signed-off-by: Anatolij Gustschin <agust@denx.de>
60407 commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
60408 Author: Anatolij Gustschin <agust@denx.de>
60409 Date:   Mon Feb 25 20:54:04 2008 +0100
60411     ppc4xx: Fix problem in 4xx_enet.c driver
60413     U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
60414     enabled. To reproduce the problem ensure that 'ethrotate'
60415     environment variable isn't set to "no" and then run
60416     "tftp 200000 not_existent_file".
60417     This patch tries to fix the issue.
60419     Signed-off-by: Anatolij Gustschin <agust@denx.de>
60421 commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
60422 Author: Anatolij Gustschin <agust@denx.de>
60423 Date:   Mon Feb 25 20:04:20 2008 +0100
60425     POST: Disable cache while SPR POST
60427     Currently (since commit b2e2142c) u-boot crashes on
60428     sequoia board while SPR test if CONFIG_4xx_DCACHE is
60429     enabled. This patch disables the cache while SPR test.
60431     Signed-off-by: Anatolij Gustschin <agust@denx.de>
60433 commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
60434 Author: Martin Krause <martin.krause@tqs.de>
60435 Date:   Mon Feb 25 17:52:40 2008 +0100
60437     TQM5200: use automatic fdt memory fixup (part 2)
60439     Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
60440     TB5200 and TB5200_B to fixup the /memory node with the memory values
60441     detected by U-Boot.
60443     Signed-off-by: Martin Krause <martin.krause@tqs.de>
60445 commit 44ceec253ea941b301abf4b079d52324def69d92
60446 Author: Martin Krause <martin.krause@tqs.de>
60447 Date:   Mon Feb 25 15:17:05 2008 +0100
60449     TQM5200: use automatic fdt memory fixup
60451     Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
60452     TB5200 and TB5200_B to fixup the /memory node with the memory values
60453     detected by U-Boot.
60455     Signed-off-by: Martin Krause <martin.krause@tqs.de>
60457 commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
60458 Author: Martin Krause <martin.krause@tqs.de>
60459 Date:   Mon Feb 25 13:27:52 2008 +0100
60461     TQM5200: fix bug in SDRAM initialization code
60463     This patch fixes a bug in the SDRAM initialization code for the
60464     TQM5200. The hi_addr bit is now set correctly. Without this patch
60465     the hi_addr bit is always set to 1, if the second SDRAM bank is
60466     not populated.
60468     For other MPC5200 boards a correspondig patch has already been applied
60469     some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
60471     Signed-off-by: Martin Krause <martin.krause@tqs.de>
60472     --
60473     Forget the first patch please. I confused flash with SDRAM in
60474     the comment ...
60476 commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
60477 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60478 Date:   Mon Feb 25 00:03:12 2008 +0100
60480     mx1fs2/flash: Fix multiple compiler warnings
60482     "pointer targets in assignment differ in signedness"
60484     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60486 commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
60487 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60488 Date:   Mon Feb 25 00:03:11 2008 +0100
60490     arm-imx: Fix register definitions
60492     Sync register definitions with linux
60494     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60496 commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
60497 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60498 Date:   Mon Feb 25 00:03:10 2008 +0100
60500     actua1/actua2/actua3: Fix multiple unused variable warnings
60502     - actua1:
60503         actux1.c: In function 'checkboard':
60504         actux1.c:92: warning: unused variable 'revision'
60506     - actua2:
60507         actux2.c: In function 'checkboard':
60508         actux2.c:100: warning: unused variable 's'
60509         actux2.c:99: warning: unused variable 'revision'
60510         actux2.c: In function 'reset_phy':
60511         actux2.c:130: warning: unused variable 'i'
60513     - actua3:
60514         actux3.c: In function 'checkboard':
60515         actux3.c:114: warning: unused variable 'revision'
60517     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60519 commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
60520 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
60521 Date:   Sun Feb 24 11:44:29 2008 +0900
60523     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
60525     The previous patch was lacking of i386, microblaze, nios and nios2. This
60526     patch tries to fix them.
60528     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
60530 commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
60531 Author: Marian Balakowicz <m8@semihalf.com>
60532 Date:   Fri Feb 29 22:22:46 2008 +0100
60534     [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
60536     Do not use global fdt blob pointer, calculate blob size from routine
60537     argument blob pointer.
60539     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60541 commit d1cc52879c8966507dad9fb575481e6d3985e64e
60542 Author: David Gibson <david@gibson.dropbear.id.au>
60543 Date:   Tue Feb 12 00:58:31 2008 +1100
60545     libfdt: Add and use a node iteration helper function.
60547     This patch adds an fdt_next_node() function which can be used to
60548     iterate through nodes of the tree while keeping track of depth.  This
60549     function is used to simplify the iteration code in a lot of other
60550     functions, and is also exported for use by library users.
60552     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
60554 commit 8cf30809a82902a471866d2f07725ce3b8a22291
60555 Author: Bartlomiej Sieka <tur@semihalf.com>
60556 Date:   Fri Feb 29 16:00:24 2008 +0100
60558     [new uImage] Add libfdt support to mkimage
60560     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
60562 commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
60563 Author: Bartlomiej Sieka <tur@semihalf.com>
60564 Date:   Fri Feb 29 16:00:23 2008 +0100
60566     [new uImage] Add sha1.o object to mkimage binary build
60568     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
60570 commit df6f1b895c997978f03afe04502ee76b7ba34ab9
60571 Author: Marian Balakowicz <m8@semihalf.com>
60572 Date:   Fri Feb 29 16:00:06 2008 +0100
60574     [new uImage] Fix component handling for legacy multi component images
60576     Use uint32_t when accessing size table in image_multi_count() and
60577     image_multi_getimg() for multi component images.
60579     Add missing uimage_to_cpu() endianness conversion.
60581     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60583 commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
60584 Author: Marian Balakowicz <m8@semihalf.com>
60585 Date:   Fri Feb 29 15:59:59 2008 +0100
60587     [new uImage] Share common uImage code between mkimage and U-boot
60589     This patch adds the following common routines:
60591     1) Dedicated mkimage print_header() is replaced with common
60592     image_print_contents()
60593     image_print_contents_noindent()
60595     2) Common os/arch/type/comp fields name <--> id translation routines
60596     genimg_get_os_name()
60597     genimg_get_arch_name()
60598     genimg_get_type_name()
60599     genimg_get_comp_name()
60600     genimg_get_os_id()
60601     genimg_get_arch_id()
60602     genimg_get_type_id()
60603     genimg_get_comp_id()
60605     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60607 commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
60608 Author: Marian Balakowicz <m8@semihalf.com>
60609 Date:   Fri Feb 29 14:58:34 2008 +0100
60611     [new uImage] Update naming convention for bootm/uImage related code
60613     This patch introduces the following prefix convention for the
60614     image format handling and bootm related code:
60616     genimg_             - dual format shared code
60617     image_              - legacy uImage format specific code
60618     fit_                - new uImage format specific code
60619     boot_               - booting process related code
60621     Related routines are renamed and a few pieces of code are moved around and
60622     re-grouped.
60624     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60626 commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
60627 Author: Kumar Gala <galak@kernel.crashing.org>
60628 Date:   Wed Feb 27 21:51:51 2008 -0600
60630     [new uImage] Respect autostart setting in linux bootm
60632     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60633     Acked-by: Marian Balakowicz <m8@semihalf.com>
60635 commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
60636 Author: Kumar Gala <galak@kernel.crashing.org>
60637 Date:   Wed Feb 27 21:51:50 2008 -0600
60639     [new uImage] Provide ability to restrict region used for boot images
60641     Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
60642     to restrict what memory range is used for bootm.
60644     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60645     Acked-by: Marian Balakowicz <m8@semihalf.com>
60647 commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
60648 Author: Kumar Gala <galak@kernel.crashing.org>
60649 Date:   Wed Feb 27 21:51:49 2008 -0600
60651     [new uImage] Use lmb for bootm allocations
60653     Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
60654     functions over to using lmb for allocation of the ramdisk, command line
60655     and kernel bd info.
60657     Convert PPC specific fdt_relocate() to use lmb for allocation of the device
60658     tree.
60660     Provided a weak function that board code can call to do additional
60661     lmb reserves if needed.
60663     Also introduce the concept of bootmap_base to specify the offset in
60664     physical memory that the bootmap is located at.  This is used for
60665     allocations of the cmdline, kernel bd, and device tree as they should
60666     be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
60668     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60670 commit f5614e7926863bf0225ec860d9b319741a9c4004
60671 Author: Kumar Gala <galak@kernel.crashing.org>
60672 Date:   Wed Feb 27 21:51:48 2008 -0600
60674     [new uImage] Add autostart flag to bootm_headers structure
60676     The autostart env variable was dropped as part of the initial new uImage
60677     cleanup.  Add it back here so the arch specific code can decide if it
60678     wants to really boot or not.
60680     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60681     Acked-by: Marian Balakowicz <m8@semihalf.com>
60683 commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
60684 Author: Kumar Gala <galak@kernel.crashing.org>
60685 Date:   Wed Feb 27 21:51:47 2008 -0600
60687     [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
60689     Introduce the LMB lib used on PPC in the kernel as a clean way to manage
60690     the memory spaces used by various boot images and structures.  This code
60691     will allow us to simplify the code in bootm and its support functions.
60693     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60695 commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
60696 Author: Kumar Gala <galak@kernel.crashing.org>
60697 Date:   Tue Feb 19 22:03:47 2008 -0600
60699     [new uImage] ppc: Allow boards to specify effective amount of memory
60701     For historical reasons we limited the stack to 256M because some boards
60702     could only map that much via BATS.  However newer boards are capable of
60703     mapping more memory (for example 85xx is capable of doing up to 2G).
60705     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60706     Acked-by: Marian Balakowicz <m8@semihalf.com>
60708 commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
60709 Author: Kumar Gala <galak@kernel.crashing.org>
60710 Date:   Wed Feb 27 21:51:46 2008 -0600
60712     [new uImage] rework error handling so common functions don't reset
60714     Changed image_get_ramdisk() to just return NULL on error and have
60715     get_ramdisk() propogate that error to the caller.  It's left to the
60716     caller to call do_reset() if it wants to.
60718     Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
60719     to a common location.  In the future we will change get_fdt() and
60720     fdt_relocate() to return success/failure and not call do_reset() at all.
60722     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60723     Acked-by: Marian Balakowicz <m8@semihalf.com>
60725 commit d2bc095a639672def11d5d043b5688d0dbd692ec
60726 Author: Kumar Gala <galak@kernel.crashing.org>
60727 Date:   Wed Feb 27 21:51:45 2008 -0600
60729     [new uImage] ppc: Re-order ramdisk/fdt handling sequence
60731     Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
60732     however it does mean we have to go in and fixup the initrd info since
60733     we don't know where it will be.
60735     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60737 commit 27953493ef025fb698d68c5dee39b36f01f4d530
60738 Author: Kumar Gala <galak@kernel.crashing.org>
60739 Date:   Wed Feb 27 21:51:44 2008 -0600
60741     [new uImage] ppc: Determine if we are booting an OF style
60743     If we are bootin OF style than we can skip setting up some things
60744     that are used for the old boot method.
60746     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60747     Acked-by: Marian Balakowicz <m8@semihalf.com>
60749 commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
60750 Author: Kumar Gala <galak@kernel.crashing.org>
60751 Date:   Wed Feb 27 21:51:43 2008 -0600
60753     [new uImage] Don't pass kdb to ramdisk_high since we may not have one
60755     We don't actually need the kdb param as we are just using it to get
60756     bd->bi_memsize which we can get from gd->bd->bi_memsize.  Also, if we
60757     boot via OF we might not actually fill out a kdb.
60759     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60760     Acked-by: Marian Balakowicz <m8@semihalf.com>
60762 commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
60763 Author: Kumar Gala <galak@kernel.crashing.org>
60764 Date:   Wed Feb 27 16:30:47 2008 -0600
60766     85xx: Don't icbi when unlocking the cache
60768     There is no reason to icbi when invalidating the temporary stack in
60769     the d-cache.  Its impossible on e500 to have the i-cache contain
60770     any addresses in the temp stack and it can be problematic in generating
60771     transactions on the bus to non-valid addresses.
60773     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
60775 commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
60776 Author: Andy Fleming <afleming@freescale.com>
60777 Date:   Wed Feb 27 15:50:50 2008 -0600
60779     Fix source for ECM error IVPR
60781     The source vector for the ECM was being set to 2,
60782     but that's what the source vector for DDR was being
60783     set to.  Change it to 1.
60785     Signed-off-by: Andy Fleming <afleming@freescale.com>
60787 commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
60788 Author: Andy Fleming <afleming@freescale.com>
60789 Date:   Wed Feb 27 14:29:58 2008 -0600
60791     Invalidate INIT_RAM TLB mappings
60793     Commit 0db37dc...  (and some others) changed the INIT_RAM TLB
60794     mappings to be unguarded.  This collided with an existing "bug"
60795     where the mappings for the INIT_RAM were being kept around.
60796     This meant that speculative loads to those addresses were
60797     succeeding in the TLB, and going out to the bus, where they
60798     were causing an exception (there's nothing at that address). The
60799     Flash code was coincidentally causing such a speculative load.
60800     Rather than go back to mapping the INIT RAM as guarded, we fix
60801     it so that the entries for the INIT_RAM are invalidated.  Thus
60802     the speculative loads will fail in the TLB, and have no effect.
60804     Signed-off-by: Andy Fleming <afleming@freescale.com>
60806 commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
60807 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60808 Date:   Sun Feb 17 22:56:17 2008 +0100
60810     sbc8548: Fix Revision reading and unused variable 'path'
60812     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60814 commit 495d162374c472f46454453553382ad0735dc725
60815 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60816 Date:   Sun Feb 17 22:56:16 2008 +0100
60818     sbc8548: Fix cfi flash bank declaration
60820     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60822 commit 4efbe9dbb129f857f27856936112c8c02f016be6
60823 Author: Marian Balakowicz <m8@semihalf.com>
60824 Date:   Wed Feb 27 11:02:26 2008 +0100
60826     [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
60828     Dual format image code must properly handle all three FDT passing methods:
60829     - raw FDT blob passed
60830     - FDT blob embedded in the legacy uImage
60831     - FDT blob embedded in the new uImage
60833     This patch enables proper raw FDT handling when no FIT imaeg support
60834     is compiled in. This is a bit tricky as we must dected FIT format even
60835     when FIT uImage handling is not enabled as both FIT uImages and raw FDT
60836     blobs use tha same low level format (libfdt).
60838     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60840 commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
60841 Author: Marian Balakowicz <m8@semihalf.com>
60842 Date:   Wed Feb 27 11:02:26 2008 +0100
60844     [new uImage] POWERPC: Add image_get_fdt() routine
60846     FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
60847     (3) or embedded in the new uImage. For the (2) case embedding image must be
60848     verified before we get FDT from it. This patch factors out legacy image
60849     specific verification routine to the separate helper routine.
60851     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60852     Acked-by: Kumar Gala <galak@kernel.crashing.org>
60854 commit 1efd43601f90de21ec6c0ebb9880823e822927b1
60855 Author: Marian Balakowicz <m8@semihalf.com>
60856 Date:   Wed Feb 27 11:02:07 2008 +0100
60858     [new uImage] Add image_get_kernel() routine
60860     Legacy image specific verification is factored out to a separate helper
60861     routine to keep get_kernel() generic and simple.
60863     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60864     Acked-by: Kumar Gala <galak@kernel.crashing.org>
60866 commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
60867 Author: Marian Balakowicz <m8@semihalf.com>
60868 Date:   Wed Feb 27 11:01:04 2008 +0100
60870     [new uImage] Move image verify flag to bootm_headers structure
60872     Do not pass image verification flag directly to related routines.
60873     Simplify argument passing and move it to the bootm_header structure which
60874     contains curently processed image specific data and is already being passed
60875     on the argument list.
60877     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60878     Acked-by: Kumar Gala <galak@kernel.crashing.org>
60880 commit 823afe7cefe00dafefc6696c1cc7aa828c394234
60881 Author: Marian Balakowicz <m8@semihalf.com>
60882 Date:   Wed Feb 27 11:00:47 2008 +0100
60884     [Makefile] Sort COBJS in lib_<arch> Makefiles
60886     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60888 commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
60889 Author: Marian Balakowicz <m8@semihalf.com>
60890 Date:   Wed Feb 27 11:00:47 2008 +0100
60892     [new uImage] Optimize gen_get_image() flow control
60894     When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
60895     to do, update its control flow to better reflect that simple case.
60897     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60898     Acked-by: Kumar Gala <galak@kernel.crashing.org>
60900 commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
60901 Author: Marian Balakowicz <m8@semihalf.com>
60902 Date:   Mon Feb 4 08:28:17 2008 +0100
60904     [new uImage] POWERPC: Split get_fdt() into get and relocate routines
60906     PPC specific FDT blob handling code is divided into two separate routines:
60908     get_fdt()   - find and verify a FDT blob (either raw or image embedded)
60909     fdt_relocate()      - move FDT blob to within BOOTMAP if needed
60911     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60912     Acked-by: Kumar Gala <galak@kernel.crashing.org>
60914 commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
60915 Author: Jon Loeliger <jdl@freescale.com>
60916 Date:   Mon Feb 25 13:13:37 2008 -0600
60918     86xx: Fix renamed GUR symbols in sbc8641d board.
60920     Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
60921     (86xx: Fix GUR PCI config registers properly), we should have
60922     changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
60923     symbols in the sbc8641d board as well.  Fix this oversight.
60925     Signed-off-by: Jon Loeliger <jdl@freescale.com>
60927 commit 64cd594e623c39f73964d18787763e4533f791f7
60928 Author: Stefan Roese <sr@denx.de>
60929 Date:   Mon Feb 25 16:50:48 2008 +0100
60931     ppc4xx: Fix acadia_nand build problem
60933     Don't include testdram() on NAND-booting target acadia_nand. This saves
60934     a few bytes and makes the target build clean again.
60936     Signed-off-by: Stefan Roese <sr@denx.de>
60938 commit 14e099e698d41e8179d05c2b2dbcf704a236f748
60939 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60940 Date:   Sun Feb 24 23:03:12 2008 +0000
60942     mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
60944     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60946 commit 724902c8464e610642b3a170278b99710325888e
60947 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60948 Date:   Sun Feb 24 23:03:11 2008 +0000
60950     arm-imx: Fix registers definition
60952     Sync registers definition with linux
60954     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60956 commit 4cd288b589ea1178947c6e364453c32b3dede6b7
60957 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60958 Date:   Sun Feb 24 23:03:10 2008 +0000
60960     actua1/actua2/actua3: Fix multipleunused variable
60962     - actua1:
60963         actux1.c: In function 'checkboard':
60964         actux1.c:92: warning: unused variable 'revision'
60966     - actua2:
60967         actux2.c: In function 'checkboard':
60968         actux2.c:100: warning: unused variable 's'
60969         actux2.c:99: warning: unused variable 'revision'
60970         actux2.c: In function 'reset_phy':
60971         actux2.c:130: warning: unused variable 'i'
60973     - actua3:
60974         actux3.c: In function 'checkboard':
60975         actux3.c:114: warning: unused variable 'revision'
60977     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
60979 commit d5934ad7756f038a393a9cfab76a4fe306d9d930
60980 Author: Marian Balakowicz <m8@semihalf.com>
60981 Date:   Mon Feb 4 08:28:09 2008 +0100
60983     [new uImage] Add dual format uImage support framework
60985     This patch adds framework for dual format images. Format detection is added
60986     and the bootm controll flow is updated to include cases for new FIT format
60987     uImages.
60989     When the legacy (image_header based) format is detected appropriate
60990     legacy specific handling is invoked. For the new (FIT based) format uImages
60991     dual boot framework has a minial support, that will only print out a
60992     corresponding debug messages. Implementation of the FIT specific handling will
60993     be added in following patches.
60995     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
60997 commit b29661fc1151077776454288051bc9a488351ce8
60998 Author: Wolfgang Denk <wd@denx.de>
60999 Date:   Sun Feb 24 15:21:36 2008 +0100
61001     Coding style cleanup. Prepare v1.3.2-rc2 release candidate
61003     Signed-off-by: Wolfgang Denk <wd@denx.de>
61005 commit 00b48a48424894daa589d166d73277830b1c6ac4
61006 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61007 Date:   Sat Feb 23 12:15:56 2008 +0100
61009     ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
61011     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61013 commit b075d74efb70ff68c49a2532f26b56d6703b69c1
61014 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
61015 Date:   Sat Feb 23 17:24:16 2008 +0900
61017     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
61019     ----------------------------------------------------------------
61020     Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
61022     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
61023     32bit targets.
61025     GCC can be made to warn about usage of long long types with ISO C90
61026     (-ansi), but only with -pedantic.  You can write this in a way that even
61027     then it doesn't cause warnings, namely by:
61029     #ifdef __GNUC__
61030     __extension__ typedef __signed__ long long __s64;
61031     __extension__ typedef unsigned long long __u64;
61032     #endif
61034     The __extension__ keyword in front of this switches off any pedantic
61035     warnings for this expression.
61037     Signed-off-by: Olaf Hering <olh@suse.de>
61038     Cc: <linux-arch@vger.kernel.org>
61039     Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
61040     Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
61041     ----------------------------------------------------------------
61043     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
61045 commit 208acd112e6517b21fc30c420396902b103563ac
61046 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
61047 Date:   Sat Feb 23 17:07:57 2008 +0900
61049     cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
61051     This will reduce the build time.
61053     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
61055 commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
61056 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
61057 Date:   Sat Feb 23 17:05:00 2008 +0900
61059     cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
61061     This will reduce the build time.
61063     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
61065 commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
61066 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
61067 Date:   Sat Feb 23 16:58:41 2008 +0900
61069     cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
61071     This reduces the build time by ~10%. Here's the gth2_config example.
61073             BEFORE       AFTER
61074     real    0m31.441s    0m27.833s
61075     user    0m24.766s    0m23.045s
61076     sys     0m10.425s    0m7.468s
61078     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
61080 commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
61081 Author: Marcel Moolenaar <marcelm@juniper.net>
61082 Date:   Fri Feb 22 10:48:07 2008 -0800
61084     make define2mk.sed work on FreeBSD
61086     In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
61087     the define2mk.sed script was identified as the source of the link
61088     failure on FreeBSD. The problem is that sed(1) does not always support
61089     the '+' operator. It isn't on FreeBSD. The attach patch implements the
61090     equivalent, using the '*' operator instead and should work everywhere.
61092     Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
61094 commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
61095 Author: Detlev Zundel <dzu@denx.de>
61096 Date:   Fri Feb 22 17:21:32 2008 +0100
61098     Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
61100     The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
61101     final traces of long-deprecated "ramdisk" kernel parm") makes these
61102     changes neccessary.
61104     Signed-off-by: Detlev Zundel <dzu@denx.de>
61106 commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
61107 Author: Larry Johnson <lrj@acm.org>
61108 Date:   Thu Feb 21 13:58:16 2008 -0500
61110     LM75 bug fix for negative temperatures
61112     When the LM75 temperature sensor measures a temperature below 0 C, the
61113     current driver does not perform sign extension, so the result returned is
61114     256 C too high.  This patch fixes the problem.
61116     Signed-off-by: Larry Johnson <lrj@acm.org>
61118 commit 5a910c224b13e413bda41922379add6d75c32da3
61119 Author: Heiko Schocher <hs@denx.de>
61120 Date:   Thu Feb 21 18:33:45 2008 +0100
61122     IDS8247: update MAINTAINER entry.
61124     Signed-off-by: Heiko Schocher <hs@denx.de>
61126 commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
61127 Author: Heiko Schocher <hs@denx.de>
61128 Date:   Thu Feb 21 18:31:15 2008 +0100
61130     Fix device tree for mgsuvd board.
61132     Rename the "scc" node in "ethernet" for the mgsuvd board.
61134     Signed-off-by: Heiko Schocher <hs@denx.de>
61136 commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
61137 Author: Yuri Tikhonov <yur@emcraft.com>
61138 Date:   Thu Feb 21 14:23:42 2008 +0100
61140     lwmon5: enable hardware watchdog
61142     Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
61143     causing it to reboot the board if U-Boot does a long busy-wait with
61144     udelay(). Thus, for these boards we have to restart WD more
61145     frequently.
61147     This patch splits the busy-wait udelay() into smaller, predefined,
61148     intervals, so that the watchdog timer may be resetted with the
61149     configurable (CONFIG_WD_PERIOD) interval.
61151     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
61153 commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
61154 Author: Anatolij Gustschin <agust@denx.de>
61155 Date:   Thu Feb 21 12:52:29 2008 +0100
61157     ppc4xx: Support for ATI Radeon 9200 card on sequoia
61159     Adds configuration option for ATI Radeon 9200 card
61160     support to sequoia config file. If CONFIG_VIDEO
61161     is enabled, TEXT_BASE should be changed to 0xFFF80000.
61163     Signed-off-by: Anatolij Gustschin <agust@denx.de>
61165 commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
61166 Author: Kumar Gala <galak@kernel.crashing.org>
61167 Date:   Mon Feb 18 08:18:07 2008 -0600
61169     Remove duplicate defines for ARRAY_SIZE
61171     A few duplicate of the ARRAY_SIZE macro sneaked in since we put
61172     the define in common.h.
61174     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61176 commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
61177 Author: Kumar Gala <galak@kernel.crashing.org>
61178 Date:   Mon Feb 18 08:09:37 2008 -0600
61180     ppc: Allow boards to specify effective amount of memory
61182     For historical reasons we limited the stack to 256M because some boards
61183     could only map that much via BATS.  However newer boards are capable of
61184     mapping more memory (for example 85xx is capable of doing up to 2G).
61186     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61188 commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
61189 Author: Mike Frysinger <vapier@gentoo.org>
61190 Date:   Mon Feb 18 05:24:13 2008 -0500
61192     include autoconf.mk before any other .mk files
61194     This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
61195     those .mk files can have make if statements based on the current config.
61197     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
61199 commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
61200 Author: Mike Frysinger <vapier@gentoo.org>
61201 Date:   Mon Feb 18 05:10:07 2008 -0500
61203     error check autoconf.mk generation
61205     If any of the steps for generating autoconf.mk fail currently, they go
61206     unnoticed.  To fix, we can simply add 'set -e' to the long list of commands.
61207     This is simpler and more robust than placing '|| exit $$?' after every line.
61209     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
61211 commit 019895a8dee71a9f00da05c03e379f45d581b0fe
61212 Author: Stefano Babic <sbabic@denx.de>
61213 Date:   Mon Feb 18 08:03:51 2008 +0100
61215     Fix bug in dependency checking
61217     By adding VERSION_FILE to the PHONY targets the script
61218     /tools/setlocalversion is always called and version_autogenerated.h
61219     is replaced only if the script find a modified source file.
61221     Signed-off-by: Stefano Babic <sbabic@denx.de>
61223 commit 98ba144ccc912eee90dd42699f023c497ce774c6
61224 Author: Kyungmin Park <kmpark@infradead.org>
61225 Date:   Mon Feb 18 14:35:43 2008 +0900
61227     Fix GPMC CS2 memory setup at apollon
61229     It disables the current map first
61231     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
61233 commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
61234 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61235 Date:   Sun Feb 17 23:52:46 2008 +0100
61237     uli526x: Fix multiple differ in signedness and parentheses around comparison
61239     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61241 commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
61242 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61243 Date:   Sun Feb 17 16:58:04 2008 +0100
61245     MIPS: Fix CFG_NO_FLASH support
61247     - Fix flash_init call when CFG_NO_FLASH is used
61248     - Remove no more needed flash.c for qemu-mips
61250     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61252 commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
61253 Author: Mike Frysinger <vapier@gentoo.org>
61254 Date:   Sat Feb 16 02:40:18 2008 -0500
61256     easylogo: clean up some more and add -r (rgb) support
61258     Michael Hennerich added support for outputting an image in RGB format rather
61259     than forcing YUYV all the time.  This makes obvious sense if the display you
61260     have takes RGB input rather than YUYV.
61262     Rather than hack in support for options, I've converted it to use getopt and
61263     cleaned up the argument parsing in the process.
61265     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
61266     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
61268 commit f65c98129ccada3f7caf97d80395a95b84e911de
61269 Author: Mike Frysinger <vapier@gentoo.org>
61270 Date:   Sat Feb 16 02:12:37 2008 -0500
61272     Makefile: add target for $(LDSCRIPT)
61274     If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
61275     then change into the board directory and try and create it.  This allows you
61276     to generate the linker script on the fly based upon board defines (like the
61277     Blackfin boards do).
61279     There should be no regressions due to this change as the normal case is to
61280     already have a u-boot.lds file.  If that's the case, then there's nothing to
61281     generate, and so make will always exit.  The fix here is that if the linker
61282     script does not exist, the implicit rules take over and attempt to guess how
61283     to generate the file.
61285     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
61287 commit 5583cbf736474ef754e128a54fb78632f57b48fd
61288 Author: Marian Balakowicz <m8@semihalf.com>
61289 Date:   Thu Feb 21 17:27:49 2008 +0100
61291     [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
61293     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61295 commit 2242f5369822bc7780db95c47985bb408ea9157b
61296 Author: Marian Balakowicz <m8@semihalf.com>
61297 Date:   Thu Feb 21 17:27:41 2008 +0100
61299     [new uImage] Rename and move print_image_hdr() routine
61301     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61303 commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
61304 Author: Marian Balakowicz <m8@semihalf.com>
61305 Date:   Thu Feb 21 17:20:20 2008 +0100
61307     [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
61309     Introducing routines for parsing new uImage format bootm arguments:
61310     [<addr>]#<conf>             - configuration specification
61311     [<addr>]:<subimg>   - subimage specification
61313     New format images can contain multiple subimages of the same type. For example
61314     a single new format image file can contain three kernels, two ramdisks and a
61315     couple of FDT blobs. Subimage and configuration specifications are extensions
61316     to bootm (and other image-related commands) arguments' syntax that allow to
61317     specify which particular subimage should be operated on.
61319     Subimage specification is used to denote a particular subimage. Configurations
61320     are a bit more complex -- they are used to define a particualr booting setup,
61321     for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
61322     etc.
61324     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61326 commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
61327 Author: Marian Balakowicz <m8@semihalf.com>
61328 Date:   Thu Feb 21 17:20:19 2008 +0100
61330     [new uImage] Add gen_get_image() routine
61332     This routine assures that image (whether legacy or FIT) is not
61333     in a special dataflash storage.
61335     If image address is a dataflash address image is moved to system RAM.
61337     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61339 commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
61340 Author: Marian Balakowicz <m8@semihalf.com>
61341 Date:   Thu Feb 21 17:20:18 2008 +0100
61343     [new uImage] Pull in libfdt if CONFIG_FIT is enabled
61345     New uImage format (Flattened Image Tree) requires libfdt
61346     functionality, print out error message if CONFIG_OF_LIBFDT
61347     is not defined.
61349     New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
61350     This commit turns it on by default.
61352     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
61354 commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
61355 Author: Michael Schwingen <michael@schwingen.org>
61356 Date:   Mon Feb 18 23:16:35 2008 +0100
61358     CFI: Do not use uninitialized cmd_reset
61360     Do not use uninitialized cmd_reset; issue both AMD and Intel reset
61361     commands instead
61363     From a short test, it looks like AMD-style flash roms treat *any* unknown
61364     command write as a reset, at least when in CFI Query mode, so issuing the
61365     Intel reset command to AMD-style flashs seems safe (from the small sample I
61366     have), plus the 3-cycle magic sequence should kick the state machine into
61367     the right state even without a reset command. Since the AMD-style flashs
61368     require the unlock sequence for real operation, I chose to try the AMD reset
61369     command first, so that Intel flashs do no see an invalid command prior to
61370     the CFI query.
61372     I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
61373     plus Intel StrataFlash.
61375     Signed-off-by: Michael Schwingen <michael@schwingen.org>
61376     Signed-off-by: Stefan Roese <sr@denx.de>
61378 commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
61379 Author: Rafal Jaworowski <raj@semihalf.com>
61380 Date:   Thu Feb 21 11:56:44 2008 +0100
61382     API: Add (c) and licensing notice to the public API header.
61384     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
61386 commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
61387 Author: Yuri Tikhonov <yur@emcraft.com>
61388 Date:   Thu Feb 21 11:06:07 2008 +0100
61390     Fix CPU POST test failure
61392     The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
61393     ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
61394     by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
61395     This patch just saves the CR value before running the test code, so allowing
61396     it to do anything it wants with CR.
61398     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
61399     Acked-by: Yuri Tikhonov <yur@emcraft.com>
61400     --
61402 commit d5908b093955415f3d340706378b991f911af671
61403 Author: Jon Loeliger <jdl@freescale.com>
61404 Date:   Wed Feb 20 15:26:51 2008 -0600
61406     8610HPCD: Document the flashbank selection switches.
61408     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61410 commit a551cee99ad1d1da20fd23ad265de47448852f56
61411 Author: Jon Loeliger <jdl@freescale.com>
61412 Date:   Wed Feb 20 14:22:26 2008 -0600
61414     86xx: Fix GUR PCI config registers properly.
61416     Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
61417     I tried to "8610HPCD: Fix typos in two PCI setup registers", I
61418     botched it due to not realizing that 8610 and 8641 had different
61419     Global Utility Register defintions, one of which was like 85xx,
61420     and the other wasn't.  Correct this problem by introducing two
61421     symbols, one for each 86xx SoC, but neither of which is named
61422     anything like 85xx.
61424     My bad.  Lovely Wednesday with git bisect.  You know.
61426     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61428 commit cb06eb961bdffc8728b38c242473d802e83ab2b4
61429 Author: Jon Loeliger <jdl@freescale.com>
61430 Date:   Wed Feb 20 12:24:11 2008 -0600
61432     8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
61434     Without an actual supported video card hooked up, enabling
61435     the CONFIG_VIDEO by default just makes it look broken by
61436     routing all console output to the video card.   Don't.
61438     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61440 commit 4d264eff4312f230776b913edade7ceb75f1b1e0
61441 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61442 Date:   Wed Jan 30 15:08:15 2008 -0600
61444     ColdFire: Fix missing code flash size for M5485EVB
61446     Signed-off-by: James Mahan <kmahan@freescale.com>
61447     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
61449 commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
61450 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
61451 Date:   Wed Jan 30 15:04:42 2008 -0600
61453     ColdFire: Fix 5282 and 5271 interrupt mask bit
61455     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
61457 commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
61458 Author: Jon Loeliger <jdl@freescale.com>
61459 Date:   Tue Feb 19 12:31:08 2008 -0600
61461     8610HPCD: Fix typos in two PCI setup registers.
61463     The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
61464     were erroneously present as 85xx names and values, leftover from
61465     the clone wars.  Fix this by removing the 85xx cruft from the
61466     86xx codebase.
61468     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61470 commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
61471 Author: Jon Loeliger <jdl@freescale.com>
61472 Date:   Mon Feb 18 14:01:56 2008 -0600
61474     86xx: Convert sbc8641d to use libfdt.
61476     This is the proper fix for a missing closing brace in the function
61477     ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
61478     The ft_cpu_setup() function in mpc8641hpcn.c should have been
61479     removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
61480     but was missed.  Only, the sbc8641d was nominally still using it.
61481     It all got ripped out, and the funcality that was in ft_board_setup()
61482     was refactored to remove the CPU portions into the new file
61483     cpu/mpc86xx/fdt.c instead.  Make sbc8641d use this now.
61485     Based loosely on an original patch from joe.hamman@embeddedspecialties.com
61487     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61489 commit 04efddc87c50c84f85dad5c331c634a6ce830a83
61490 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61491 Date:   Sun Feb 17 23:35:31 2008 +0100
61493     mpc86xx: Fix unused variable 'config' and 'immap'
61495     and remove useless CONFIG_DDR_INTERLEAVE
61497     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61499 commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
61500 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61501 Date:   Sun Feb 17 23:03:36 2008 +0100
61503     mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
61505     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61507 commit b6f29c84c208a091f95a10cbc9852d729659ba20
61508 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61509 Date:   Sun Feb 17 14:15:31 2008 +0100
61511     s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
61513     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61515 commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
61516 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61517 Date:   Sun Feb 17 14:15:32 2008 +0100
61519     pxa: fix assignment from incompatible pointer type
61521     fix mmc_bread function prototype
61523     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61525 commit 64d792063fff90b8118179b092feee09fe5cae13
61526 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61527 Date:   Sun Feb 17 14:15:30 2008 +0100
61529     at91cap9adk: fix implicit declaration of function 'eth_init'
61531     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61533 commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
61534 Author: Wolfgang Denk <wd@denx.de>
61535 Date:   Sun Feb 17 15:43:44 2008 +0100
61537     Remove files added by mistake, update CHANGELOG.
61539     Signed-off-by: Wolfgang Denk <wd@denx.de>
61541 commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
61542 Author: Mike Nuss <mike@terascala.com>
61543 Date:   Wed Feb 6 11:10:11 2008 -0500
61545     PPC440EPx: Optionally enable second I2C bus
61547     The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
61548     PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
61549     code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
61551     Signed-off-by: Mike Nuss <mike@terascala.com>
61552     Cc: Stefan Roese <sr@denx.de>
61554 commit ef5b4f221c22d05770878513951745f236b5b43f
61555 Author: Niklaus Giger <niklaus.giger@netstal.com>
61556 Date:   Tue Feb 5 10:26:44 2008 +0100
61558     ppc4xx: HCU4/5. Cleanup configs
61560     - hcu4.h: Removed define of CONFIG_PPC405GPr
61561     - Corrected phy addresses
61562     - Fix boot variables
61563     - Respect line length of 80 chars
61565     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
61567 commit 74973126d1be63ac75bdc192f46234dca3a7c421
61568 Author: Niklaus Giger <niklaus.giger@netstal.com>
61569 Date:   Tue Feb 5 11:31:28 2008 +0100
61571     ppc4xx: HCU4/5. Cleanups
61573     - Fix some coding style violations.
61574     - Use in/out_u16/32 where appropriate.
61575     - Use register names from ppc405.h.
61576     - Fix trace useage for Lauterbach.
61577     - Remove obsolete generation HCU2.
61578     - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
61580     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
61582 commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
61583 Author: Niklaus Giger <niklaus.giger@netstal.com>
61584 Date:   Tue Feb 5 10:26:41 2008 +0100
61586     ppc4xx: PPC405GPr fix missing register definitions
61588     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
61590 commit 214398d9cb22268d9d4f7563359edca0f78297a2
61591 Author: Larry Johnson <lrj@acm.org>
61592 Date:   Fri Jan 18 21:49:05 2008 -0500
61594     ppc4xx: Beautify configuration files for Sequoia and Korat boards
61596     Signed-off-by: Larry Johnson <lrj@acm.org>
61598 commit 30c6a241e88499f536e86d325759e29ba00ff67f
61599 Author: Anatolij Gustschin <agust@denx.de>
61600 Date:   Fri Feb 15 20:09:01 2008 +0100
61602     Wipe out assembler warnings while compiling x86 biosemu
61604     This patch tries to get rid of some assembler warnings about
61605     changed .got2 section type while compiling x86 bios emulator
61606     code.
61608     Signed-off-by: Anatolij Gustschin <agust@denx.de>
61610 commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
61611 Author: Wolfgang Denk <wd@denx.de>
61612 Date:   Fri Feb 15 00:57:09 2008 +0100
61614     Prepare v1.3.2-rc1 release candidate
61616 commit f33e9653c9c09868995d788511d573771c209fe5
61617 Author: Anatolij Gustschin <agust@denx.de>
61618 Date:   Fri Feb 15 00:13:20 2008 +0100
61620     Fix compile warning on lib_ppc/board.c
61622     Signed-off-by: Anatolij Gustschin <agust@denx.de>
61624 commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
61625 Author: Anatolij Gustschin <agust@denx.de>
61626 Date:   Thu Feb 14 18:22:04 2008 +0100
61628     Add Radeon Mobility 9200 pci device id to the radeon driver
61630     This patch extends PCI device id table of the
61631     radeon driver so that the driver will also support
61632     Radeon Mobility 9200 (M9+) based boards.
61634     Signed-off-by: Anatolij Gustschin <agust@denx.de>
61636 commit 1b8607e1f7143548c6062c28371449ec69588c00
61637 Author: Anatolij Gustschin <agust@denx.de>
61638 Date:   Thu Feb 14 18:19:50 2008 +0100
61640     Extend ATI Radeon driver to support more video modes
61642     Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
61643     800x600, 640x480 at 24, 16 and 8 bpp.
61645     Signed-off-by: Anatolij Gustschin <agust@denx.de>
61647 commit 4124382de029d361162a4b8cecc773eb8f26e2a8
61648 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61649 Date:   Sun Feb 10 17:05:20 2008 +0100
61651     xsengine: fix typo and few coding style
61653     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61655 commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
61656 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
61657 Date:   Fri Feb 8 21:25:58 2008 +0100
61659     Fix wrong memory limit calculation in memory-test
61661     If the length of the memory address range passed to the "mtest" command is
61662     not of the form 2^x - 1, not all address lines are tested. This bug is
61663     inherited from the original software at
61664     http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
61665     this.
61667     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
61669 commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
61670 Author: Wolfgang Denk <wd@denx.de>
61671 Date:   Fri Feb 15 00:11:39 2008 +0100
61673     Coding STyle cleanup.
61675     Signed-off-by: Wolfgang Denk <wd@denx.de>
61677 commit f6921e3dc331293c873ec4d109fd5517a42a90b3
61678 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61679 Date:   Tue Feb 5 13:30:43 2008 +0900
61681     sh: Fix register address of SH7722
61683     The address of SH7722 is wrong by old document.
61684     This patch fixes this problem.
61686     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61688 commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
61689 Author: Mike Frysinger <vapier@gentoo.org>
61690 Date:   Mon Feb 4 17:44:23 2008 -0500
61692     only update version header as needed
61694     Constantly rebuilding the version header will force useless relinking, so we
61695     simply need to compare the new header with the existing one before updating
61696     it.
61698     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
61700 commit 208447f8e953f347425eb92c8e28d59e6d911363
61701 Author: Mike Frysinger <vapier@gentoo.org>
61702 Date:   Mon Jan 28 05:56:19 2008 -0500
61704     Do not specify a CROSS_COMPILE default when executing size
61706     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
61708 commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
61709 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
61710 Date:   Wed Feb 13 11:19:19 2008 +0100
61712     Fix return value of mtest when CFG_ALT_MEMTEST set
61714     Fix a missing return statement from a non-void function.
61716     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
61718 commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
61719 Author: Timur Tabi <timur@freescale.com>
61720 Date:   Wed Jan 9 14:35:26 2008 -0600
61722     85xx, 86xx: Determine I2C clock frequencies and store in global_data
61724     Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
61726     Update the get_clocks() function in 85xx and 86xx to determine the I2C
61727     clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
61729     Signed-off-by: Timur Tabi <timur@freescale.com>
61731 commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
61732 Author: Wolfgang Denk <wd@denx.de>
61733 Date:   Thu Feb 14 23:18:01 2008 +0100
61735     TQM834x: clean up configuration
61737     Get board name consistent with Linux and elsewhere;
61738     get rid of local network definitions etc.
61740     Signed-off-by: Wolfgang Denk <wd@denx.de>
61742 commit 38cc09c55b1d7f233789052c6fc462e5377669a9
61743 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61744 Date:   Thu Feb 14 08:02:12 2008 +0100
61746     TFTP: fix search of ':' in BootFile
61748     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61750 commit 0bc9efada170096c6b273f19165e32936d330d80
61751 Author: Wolfgang Denk <wd@denx.de>
61752 Date:   Thu Feb 14 22:46:55 2008 +0100
61754     Coding style cleanup; update CHANGELOG.
61756     Signed-off-by: Wolfgang Denk <wd@denx.de>
61758 commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
61759 Author: Wolfgang Denk <wd@denx.de>
61760 Date:   Thu Feb 14 22:43:22 2008 +0100
61762     PPC: Use r2 instead of r29 as global data pointer
61764     R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
61765     will refuse to use load/store multiple insns; instead, it issues a
61766     list of simple load/store instructions upon function entry and exit,
61767     resulting in bigger code size, which in turn makes the build for a
61768     few boards fail.
61770     Use r2 instead.
61772     Signed-off-by: Wolfgang Denk <wd@denx.de>
61774 commit 3c234efa693bc59906c2be55c7918ecbb55392ea
61775 Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
61776 Date:   Wed Jan 30 09:08:49 2008 +0100
61778     ARM: make the machid configurable via the environment
61780     If the variable "machid" exists, let do_bootm_linux use that instead
61781     of bd->bi_arch_number.
61783     Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
61785 commit dd24058407c5add45cc60aec6c757ddc1a17e1b0
61786 Author: Vlad Lungu <vlad@comsys.ro>
61787 Date:   Wed Jan 23 16:34:46 2008 +0200
61789     Use #ifdef CONFIG_FSLDMAFEC
61791     MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
61792     fails
61794     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
61796 commit 26c7bab81e08dc7bd696c48f753428a829629bd8
61797 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
61798 Date:   Sat Jan 19 10:25:59 2008 +0900
61800     common/miiphyutil.c: Cleanup MII_DEBUG and debug()
61802     Current MII_DEBUG is confusing in two ways. One is useless define-then-
61803     undef at the top of the file. The other is there is only one debug() in
61804     this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
61805     While there are many useful printf()/puts() debug codes, but they are for
61806     DEBUG, not for MII_DEBUG.
61808     This patch tries to put them all together into MII_DEBUG and debug().
61810     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
61812 commit 751b9b5189f3274b03c809172631316d6b002c82
61813 Author: Kyungmin Park <kmpark@infradead.org>
61814 Date:   Thu Jan 17 16:43:25 2008 +0900
61816     OneNAND Initial Program Loader (IPL) support
61818     This patch enables the OneNAND boot within U-Boot.
61819     Before this work, we used another OneNAND IPL called X-Loader based
61820     on open source. With this work, we can build the oneboot.bin image
61821     without other program.
61823     The build sequence is simple.
61824     First, it compiles the u-boot.bin
61825     Second, it compiles OneNAND IPL
61826     Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
61827     The mechanism is similar with NAND boot except it boots from itself.
61829     Another thing is that you can only use the OneNAND IPL only to work
61830     other bootloader such as RedBoot and so on.
61832     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
61834 commit 21f6f9636f0e978397548751347425fbf8d42bb3
61835 Author: Andy Fleming <afleming@freescale.com>
61836 Date:   Wed Jan 16 13:06:59 2008 -0600
61838     Fix CONFIG_MMC usage in fat code
61840     A #if statement in fat.c depended on CONFIG_MMC, instead of
61841     defined(CONFIG_MMC).  This meant CONFIG_MMC needed to be defined
61842     as "1" rather than just defined.  Now it's better.
61844     Signed-off-by: Andy Fleming <afleming@freescale.com>
61846 commit f57d7d364ce189e39b0a64338d2f8012c074a2bd
61847 Author: Rafal Jaworowski <raj@semihalf.com>
61848 Date:   Tue Jan 15 12:52:31 2008 +0100
61850     ppc: Refactor cache routines, so there is only one common set.
61852     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
61854 commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba
61855 Author: Jon Loeliger <jdl@jdl.com>
61856 Date:   Wed Jan 23 15:55:02 2008 -0600
61858     86xx: Fix compilation warning in sys_eprom.c
61860     sys_eeprom.c:82:9: warning: unknown escape sequence '\/'
61862     Signed-off-by: Jon Loeliger <jdl@freescale.com>
61864 commit 65230107025733e89e28fd5e5cfd916d4953c28a
61865 Author: Haavard Skinnemoen <hskinnemoen at>
61866 Date:   Fri Feb 22 11:40:50 2008 +0000
61868     Move AT91RM9200DK board support under board/atmel
61870     We already have a vendor subdir for Atmel, so we should use it.
61872     Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
61874 commit 6d0943a6be99977d6d853d51749e9963d68eb192
61875 Author: Andreas Engel <andreas.engel@ericsson.com>
61876 Date:   Mon Jan 14 09:06:52 2008 +0000
61878     ARM: cleanup duplicated exception handlingcode
61880     Move duplicated exception handling code into lib_arm.
61882     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
61884 commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29
61885 Author: Timo Tuunainen <timo.tuunainen@sysart.fi>
61886 Date:   Fri Feb 1 10:09:03 2008 +0000
61888     Support for Artila M-501 starter kit
61890     Kimmo Leppala / Sysart and
61891     Timo Tuunainen / Sysart
61893 commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc
61894 Author: Stelian Pop <stelian@popies.net>
61895 Date:   Mon Feb 11 10:50:19 2008 +0000
61897     AT91CAP9 support
61899     ---------------------------------
61901     read_dataflash() takes a signed char pointer as a parameter. Silence a
61902     few warnings dues to incorrect parameter types in env_dataflash.c.
61904     Signed-off-by: Stelian Pop <stelian@popies.net>
61906 commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7
61907 Author: Stelian Pop <stelian@popies.net>
61908 Date:   Thu Feb 7 09:42:57 2008 +0000
61910     AT91CAP9 support : move board files to Atmel vendor directory.
61912     AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.
61914     Signed-off-by: Stelian Pop <stelian@popies.net>
61916 commit 7263ef191b87da94768f762c7093bedeb70db98f
61917 Author: Stelian Pop <stelian at>
61918 Date:   Thu Jan 3 21:15:56 2008 +0000
61920     AT91CAP9 support : MACB changes
61922     Signed-off-by: Stelian Pop <stelian <at> popies.net>
61923     Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
61925 commit 6afcabf11d7321850f4feaadfee841488ace54c5
61926 Author: Stelian Pop <stelian@popies.net>
61927 Date:   Thu Feb 7 16:37:54 2008 +0000
61929     AT91CAP9 support : board/ files
61931     Signed-off-by: Stelian Pop <stelian@popies.net>
61933 commit fefb6c10928caa9e71335cad64dcb65c83fce8ab
61934 Author: Stelian Pop <stelian at>
61935 Date:   Wed Jan 30 21:15:54 2008 +0000
61937     AT91CAP9 support : cpu/ files
61939     Signed-off-by: Stelian Pop <stelian <at> popies.net>
61941 commit fa506a926cec348805143576c941f8e61b333cc0
61942 Author: Stelian Pop <stelian@popies.net>
61943 Date:   Thu Jan 31 21:15:53 2008 +0000
61945     AT91CAP9 support : include/ files
61947     Signed-off-by: Stelian Pop <stelian@popies.net>
61949 commit 20b197c6f2799af399a68f96a1aff543a75621b8
61950 Author: Stelian Pop <stelian@popies.net>
61951 Date:   Sun Jan 20 19:49:21 2008 +0000
61953     AT91CAP9 support : build integration
61955     Signed-off-by: Stelian Pop <stelian@popies.net>
61957 commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd
61958 Author: Stelian Pop <stelian@popies.net>
61959 Date:   Sun Jan 20 21:07:00 2008 +0000
61961     Improve DataFlash CS definition.
61963     Use a structure instead of the error prone unnamed array to
61964     define the possible dataflash banks.
61966     Signed-off-by: Stelian Pop <stelian@popies.net>
61968 commit a6cdd21b56014208706238712a853a9e9a0a2290
61969 Author: Stelian Pop <stelian@popies.net>
61970 Date:   Sat Jan 19 21:09:35 2008 +0000
61972     Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
61974     Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.
61976     cpu/arm926ejs/start.o: In function `cpu_init_crit':
61977     .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'
61979     Signed-off-by: Stelian Pop <stelian@popies.net>
61981 commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b
61982 Author: Peter Pearse <peter.pearse@arm.com>
61983 Date:   Fri Feb 1 16:50:24 2008 +0000
61985     Fix timer overflow in DaVinci
61986     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
61988 commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846
61989 Author: Peter Pearse <peter.pearse@arm.com>
61990 Date:   Fri Feb 1 16:49:08 2008 +0000
61992     Update board NetStar
61993     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
61995 commit b7f6193e76651e1fd606e46eb11915b53cb6618b
61996 Author: Niklaus Giger <niklaus.giger@netstal.com>
61997 Date:   Tue Feb 5 10:26:42 2008 +0100
61999     ppc4xx: HCU4/5. Fix make O=../xx
62001     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
62003 commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3
62004 Author: Larry Johnson <lrj@acm.org>
62005 Date:   Tue Jan 22 08:51:59 2008 -0500
62007     ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
62009     Signed-off-by: Larry Johnson <lrj@acm.org>
62011 commit fe891ecf4d187e9d11dde869ed4623af52b54451
62012 Author: Hiroshi Ito <ito@mlb.co.jp>
62013 Date:   Thu Jan 31 18:35:04 2008 +0900
62015     NFS Timeout with large files.
62017     Retry to send NFS packet before reaching timeout.
62019     Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
62021 commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0
62022 Author: Johannes Stezenbach <js@sig21.net>
62023 Date:   Tue Jan 29 00:11:25 2008 +0100
62025     Add dependencies to avoid race conditions with parallel make.
62027     Signed-off-by: Johannes Stezenbach <js@sig21.net>
62029 commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6
62030 Author: Mike Frysinger <vapier@gentoo.org>
62031 Date:   Mon Jan 28 05:46:01 2008 -0500
62033     Mark board_init_[fr] as noreturn
62035     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62037 commit 161b2af4d7b48fd602ce333c355a4df0337892bb
62038 Author: Mike Frysinger <vapier@gentoo.org>
62039 Date:   Mon Jan 28 05:28:50 2008 -0500
62041     Only use TEXT_BASE if defined by the board
62043     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62045 commit 1b769881750030f10743808b9d6013e11f559350
62046 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62047 Date:   Fri Jan 25 07:54:47 2008 +0100
62049     Fix remaining CONFIG_COMMANDS
62051     update comments
62052     Fix coding style
62054     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62056 commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9
62057 Author: Niklaus Giger <niklaus.giger@netstal.com>
62058 Date:   Mon Jan 21 16:46:00 2008 +0100
62060     Add *~ to .gitignore
62062     One should never add a backup file ending in with ~ to the git repository.
62064     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
62066 commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0
62067 Author: Kumar Gala <galak@kernel.crashing.org>
62068 Date:   Thu Jan 17 00:02:10 2008 -0600
62070     Remove duplicate defines for ARRAY_SIZE
62072     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
62074 commit c77ce474b1c57b13e9d36d9830f147966c143694
62075 Author: Stelian Pop <stelian@popies.net>
62076 Date:   Mon Jan 14 22:08:14 2008 +0100
62078     Fix incorrect address test in AT91F_DataflashSelect().
62080     Signed-off-by: Stelian Pop <stelian@popies.net>
62082 commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d
62083 Author: Kumar Gala <galak@kernel.crashing.org>
62084 Date:   Wed Feb 13 15:09:58 2008 -0600
62086     Fix building of fdt_support.c if DEBUG set
62088     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
62090 commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03
62091 Author: Jon Loeliger <jdl@freescale.com>
62092 Date:   Tue Feb 12 14:53:28 2008 -0600
62094     Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols
62096     These replace direct structure references for IMMR sections.
62098     Signed-off-by: Jon Loeliger <jdl@freescale.com>
62100 commit c62776be8dca4097ca03d4f9415f08d4887b45d0
62101 Author: Wolfgang Denk <wd@denx.de>
62102 Date:   Tue Feb 12 00:45:06 2008 +0100
62104     Get rid of "#undef DEBUG" from board config files.
62106     Signed-off-by: Wolfgang Denk <wd@denx.de>
62108 commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8
62109 Author: Timur Tabi <timur@freescale.com>
62110 Date:   Tue Jan 15 17:09:41 2008 -0600
62112     Remove #undef DEBUG from MPC83xx board header files
62114     Remove the "#undef DEBUG" line from all Freescale 83xx board header files.
62115     The inclusion of this line makes it impossible to enable debug code in
62116     other source files, because "#define DEBUG" typically needs to be defined
62117     before any header files are included.
62119     Signed-off-by: Timur Tabi <timur@freescale.com>
62121 commit 69018ce2e086e9caf35b914d675b82bc4888f077
62122 Author: Kumar Gala <galak@kernel.crashing.org>
62123 Date:   Thu Jan 17 08:25:45 2008 -0600
62125     QE: Move FDT support into a common file
62127     Move the flat device tree setup for QE related devices into
62128     a common file shared between 83xx & 85xx platforms that have QE's.
62130     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
62132 commit 5cf746c303710329f8040d9c62ee354313e3e91f
62133 Author: Marian Balakowicz <m8@semihalf.com>
62134 Date:   Thu Jan 31 13:59:09 2008 +0100
62136     [new uImage] Move kernel data find code to get_kernel() routine
62138     Verification of the kernel image (in old format) and finding kernel
62139     data is moved to a dedicated routine. The routine will also hold
62140     support for, to be added, new image format.
62142     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62144 commit 7b325454fd231d4273de3fe373850f777fb086bf
62145 Author: Marian Balakowicz <m8@semihalf.com>
62146 Date:   Thu Jan 31 13:58:20 2008 +0100
62148     [new uImage] Cleanup FDT handling in PPC do_boot_linux()
62150     Move FDT blob finding and relocation to a dedicated
62151     get_fdt() routine. It increases code readability and
62152     will make adding support for new uImage format easier.
62154     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62156 commit b6b0fe6460b7063ac60b9a3531ef210aedb31451
62157 Author: Marian Balakowicz <m8@semihalf.com>
62158 Date:   Thu Jan 31 13:58:13 2008 +0100
62160     [new uImage] Cleanup do_botm_linux() boot allocations
62162     This patch moves common pre-boot allocation steps shared between PPC
62163     and M68K to a helper routines:
62165     common:
62166     - get_boot_sp_limit()
62167     - get_boot_cmline()
62168     - get_boot_kbd()
62170     platform:
62171     - set_clocks_in_mhz()
62173     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62175 commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40
62176 Author: Marian Balakowicz <m8@semihalf.com>
62177 Date:   Thu Jan 31 13:57:17 2008 +0100
62179     [new uImage] Move ramdisk loading to a common routine
62181     Ramdisk loading code, including initrd_high variable handling,
62182     was duplicated for PPC and M68K platforms. This patch creates
62183     common helper routine that is being called from both platform
62184     do_bootm_linux() routines.
62186     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62188 commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68
62189 Author: Marian Balakowicz <m8@semihalf.com>
62190 Date:   Thu Jan 31 13:55:53 2008 +0100
62192     [new uImage] Removed dead ramdisk code on microblaze architectures
62194     Microblaze do_bootm_linux() includes ramdisk processing code but
62195     the ramdisk does not get used anywhere later on.
62197     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62199 commit 5ad03eb3854c162684222a718b44c0716ea0db03
62200 Author: Marian Balakowicz <m8@semihalf.com>
62201 Date:   Thu Jan 31 13:55:39 2008 +0100
62203     [new uImage] Factor out common image_get_ramdisk() routine
62205     Architecture specific do_bootm_linux() routines share common
62206     ramdisk image processing code. Move this code to a common
62207     helper routine.
62209     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62211 commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b
62212 Author: Marian Balakowicz <m8@semihalf.com>
62213 Date:   Thu Jan 31 13:20:08 2008 +0100
62215     [new uImage] Move FDT error printing to common fdt_error() routine
62217     FDT error handling in PPC do_bootm_linux() shares the same message format.
62218     This patch moves error message printing to a helper fdt_error() routine.
62220     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62221     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
62223 commit 42b73e8ee00d48004791dea64b8093fb974c57e1
62224 Author: Marian Balakowicz <m8@semihalf.com>
62225 Date:   Thu Jan 31 13:20:07 2008 +0100
62227     [new uImage] Factor out common routines for getting os/arch/type/comp names
62229     Move numeric-id to name translation for image os/arch/type/comp header
62230     fields to a helper routines: image_get_os_name(), image_get_arch_name(),
62231     image_get_type_name(), image_get_comp_name().
62233     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62235 commit e99c26694a384221d336f6448c06a57479c0baa4
62236 Author: Marian Balakowicz <m8@semihalf.com>
62237 Date:   Thu Jan 31 13:20:07 2008 +0100
62239     [new uImage] Remove standalone applications handling from boootm
62241     Standalone applications are supposed to be run using the "go" command.
62242     This patch removes standalone images handling from the do_bootm().
62244     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62246 commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff
62247 Author: Marian Balakowicz <m8@semihalf.com>
62248 Date:   Thu Jan 31 13:20:07 2008 +0100
62250     [new uImage] Remove OF_FLAT_TREE support from PPC bootm code
62252     Support for OF_FLAT_TREE is to be obsoleted in the near future,
62253     remove related code from the bootm routines.
62255     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62257 commit 82850f3d32a2661868ec6876bed7a22c55cef718
62258 Author: Marian Balakowicz <m8@semihalf.com>
62259 Date:   Thu Jan 31 13:20:06 2008 +0100
62261     [new uImage] Use image API in SH do_bootm_linux() routine
62263     Introduce image handling API for lately added Hitachi SH architecture.
62265     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62267 commit 4a995edec1ac163d9326d143ffe2b47e7543407f
62268 Author: Marian Balakowicz <m8@semihalf.com>
62269 Date:   Thu Jan 31 13:20:06 2008 +0100
62271     [new uImage] Rename architecture specific bootm code files
62273     Implementation of the do_bootm_linux() and other bootm helper routines is
62274     architecture specific code. As such it resides in lib_<arch> directories
62275     in files named <arch>_linux.c
62277     This patch renames those files to a more clear and accurate
62278     lib_<arch>/bootm.c form.
62280     List of the renamed files:
62281        lib_arm/armlinux.c -> lib_arm/bootm.c
62282        lib_avr32/avr32_linux.c -> lib_avr32/bootm.c
62283        lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c
62284        lib_i386/i386_linux.c -> lib_i386/bootm.c
62285        lib_m68k/m68k_linux.c -> lib_m68k/bootm.c
62286        lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c
62287        lib_mips/mips_linux.c -> lib_mips/bootm.c
62288        lib_nios/nios_linux.c -> lib_nios/bootm.c
62289        lib_nios2/nios_linux.c -> lib_nios2/bootm.c
62290        lib_ppc/ppc_linux.c -> lib_ppc/bootm.c
62291        lib_sh/sh_linux.c -> lib_sh/bootm.c
62293     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62295 commit 7582438c285bf0cef82909d0f232de64ec567a8a
62296 Author: Marian Balakowicz <m8@semihalf.com>
62297 Date:   Thu Jan 31 13:20:06 2008 +0100
62299     [new uImage] Return error on image move/uncompress overwrites
62301     Check for overwrites during image move/uncompress, return with error
62302     when the original image gets corrupted. Report clear message to the user
62303     and prevent further troubles when pointer to the corrupted images is passed
62304     to do_bootm_linux routine.
62306     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62308 commit f13e7b2e993c61fed1f607962501e051940d6e80
62309 Author: Marian Balakowicz <m8@semihalf.com>
62310 Date:   Tue Jan 8 18:12:17 2008 +0100
62312     [new uImage] Cleanup image header pointer use in bootm code
62314     - use single image header pointer instead of a set of auxilliary variables.
62315     - add multi component image helper routines: get component size/data address
62317     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62319 commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20
62320 Author: Marian Balakowicz <m8@semihalf.com>
62321 Date:   Tue Jan 8 18:17:10 2008 +0100
62323     [new uImage] Cleanup cmd_bootm.c
62325     - sort and cleanup headers, declarations, etc.
62326     - group related routines
62327     - cleanup indentation, white spaces
62329     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62331 commit af13cdbc01eaf88880978bfb4f603e012818ba24
62332 Author: Marian Balakowicz <m8@semihalf.com>
62333 Date:   Tue Jan 8 18:11:45 2008 +0100
62335     [new uImage] Add memmove_wd() common routine
62337     Move common, watchdog sensible memmove code to a helper memmmove_wd() routine.
62339     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62341 commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1
62342 Author: Marian Balakowicz <m8@semihalf.com>
62343 Date:   Tue Jan 8 18:11:44 2008 +0100
62345     [new uImage] Fix FDT header verification in PPC do_boot_linux() routine
62347     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62349 commit 15158971f49255ccef54f0979a942cfd3de2ae52
62350 Author: Marian Balakowicz <m8@semihalf.com>
62351 Date:   Tue Jan 8 18:11:44 2008 +0100
62353     [new uImage] Fix uImage header pointer use in i386 do_bootm_linux()
62355     Use image header copy instead of a (possibly corrupted) pointer to
62356     a initial image location.
62358     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62360 commit 261dcf4624b25f3c551efcf8634e9194fabba9c3
62361 Author: Marian Balakowicz <m8@semihalf.com>
62362 Date:   Tue Jan 8 18:11:44 2008 +0100
62364     [new uImage] Remove I386 uImage fake_header() routine
62366     I386 targets are not using a uImage format, instead fake header
62367     is added to ram image before it is further processed by bootm.
62369     Remove this fixup and force proper uImage use for I386.
62371     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62373 commit 559316faf7eae0614c91d77f509b57d6c4c091ba
62374 Author: Marian Balakowicz <m8@semihalf.com>
62375 Date:   Tue Jan 8 18:11:44 2008 +0100
62377     [new uImage] Move CHUNKSZ definition to image.h
62379     CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
62380     move this definition to a common header.
62382     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62384 commit 321359f20823e0b8c5ad38b64d007a6c48cda16e
62385 Author: Marian Balakowicz <m8@semihalf.com>
62386 Date:   Tue Jan 8 18:11:43 2008 +0100
62388     [new uImage] Move gunzip() common code to common/gunzip.c
62390     Move gunzip(), zalloc() and zfree() to a separate file.
62391     Share zalloc() and zfree() with cramfs uncompress routine.
62393     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62395 commit d45d5a18b6b36688f2365623f9d550566c664b5b
62396 Author: Marian Balakowicz <m8@semihalf.com>
62397 Date:   Tue Jan 8 18:11:43 2008 +0100
62399     [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux()
62401     Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more
62402     readable in PPC variant of do_bootm_linux() routine.
62404     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62406 commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36
62407 Author: Marian Balakowicz <m8@semihalf.com>
62408 Date:   Tue Jan 8 18:11:43 2008 +0100
62410     [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
62412     PPC implementation of do_bootm_linux() routine is moved to
62413     a dedicated file lib_ppc/ppc_linux.c
62415     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62417 commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c
62418 Author: Marian Balakowicz <m8@semihalf.com>
62419 Date:   Tue Jan 8 18:14:09 2008 +0100
62421     [new uImage] Define a API for image handling operations
62423     - Add inline helper macros for basic header processing
62424     - Move common non inline code common/image.c
62425     - Replace direct header access with the API routines
62426     - Rename IH_CPU_* to IH_ARCH_*
62428     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62430 commit ed29bc4e8142b46b626f67524207b36e43d9aad6
62431 Author: Marian Balakowicz <m8@semihalf.com>
62432 Date:   Thu Jan 31 13:19:58 2008 +0100
62434     Add missing cmd_ximg.o to common/Makefile
62436     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62438 commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3
62439 Author: Grzegorz Bernacki <gjb@semihalf.com>
62440 Date:   Mon Jan 28 10:15:02 2008 +0100
62442     ADS5121e: DDR2 init/timing update.
62444     Signed-off-by: John Rigby <jrigby@freescale.com>
62445     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
62447 commit ac9152830d7fdebace8a260b7737ef2870c21ca0
62448 Author: John Rigby <jrigby@freescale.com>
62449 Date:   Wed Jan 30 13:36:57 2008 -0700
62451     Device tree updates
62453     Changes to match 5121 device tree going mainline in 2.6.25.
62455     Change OF_SOC from "soc5121" to plain "soc".
62456     Remove unneeded "ref-frequency" fixups.
62457     Remove "address" enetaddr fixup.
62459     Add bus-frequency fixup for old OF_SOC so old
62460     kernels with old device trees will work with new
62461     u-boot with 66MHz IPS clock
62463     Signed-off-by: John Rigby <jrigby@freescale.com>
62465 commit de55d18df3ff2ea614624e74793de7c43520e0e7
62466 Author: John Rigby <jrigby@freescale.com>
62467 Date:   Wed Jan 30 13:36:56 2008 -0700
62469     Change IPS freq to 66MHz
62471     Recommended frequency is 66MHz
62472     Change divider from 4 to 3.
62474     Signed-off-by: John Rigby <jrigby@freescale.com>
62476 commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974
62477 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62478 Date:   Mon Jan 14 22:38:55 2008 +0100
62480     xsengine: rename board_post_init to board_late_init
62482     missing migration from "Cleanup of some init functions"
62483     in c837dcb1a316745092567bfe4fb266d0941884ff
62485     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62487 commit 8dafa87476b0d7170e219c2f5e3842c833a91807
62488 Author: Larry Johnson <lrj@acm.org>
62489 Date:   Sat Jan 12 23:35:33 2008 -0500
62491     Add attribute POST_PREREL to ECC memory POST
62493     Signed-off-by: Larry Johnson <lrj@acm.org>
62495 commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938
62496 Author: Kumar Gala <galak@kernel.crashing.org>
62497 Date:   Thu Jan 17 08:25:45 2008 -0600
62499     QE: Move FDT support into a common file
62501     Move the flat device tree setup for QE related devices into
62502     a common file shared between 83xx & 85xx platforms that have QE's.
62504     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
62506 commit d38da537943cd36356b9d3d9d9b60533554b81d8
62507 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62508 Date:   Wed Jan 23 17:20:14 2008 +0100
62510     AVR32: Make SDRAM refresh rate configurable
62512     The existing code assumes the SDRAM row refresh period should always
62513     be 15.6 us. This is not always true, and indeed on the ATNGW100, the
62514     refresh rate should really be 7.81 us.
62516     Add a refresh_period member to struct sdram_info and initialize it
62517     properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will
62518     panic() until the refresh_period member is updated properly.
62520     Big thanks to Gerhard Berghofer for pointing out this issue.
62522     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62524 commit 61151cccb660cdb06a07fb283de6089913d7bde0
62525 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62526 Date:   Thu Apr 19 10:10:11 2007 +0200
62528     ATSTK1000: Fix potential flash programming bug
62530     The (now obsolete) atngw100 flash programming code was having problems
62531     programming the onboard at49bv642 chip. The atstk1000 flash
62532     programming code may have the same bug, so import fix for this problem
62533     from the AVR32 Linux BSP.
62535     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62537 commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11
62538 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62539 Date:   Thu Nov 22 17:04:13 2007 +0100
62541     ATSTK1004: Fix comment about default load address
62543     The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter
62544     wouldn't have worked anyway since the board can only access 4MB of
62545     SDRAM.
62547     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62549 commit 8269ab53608d8db2aa06969c337ab0b0518211e5
62550 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62551 Date:   Thu Nov 22 17:01:24 2007 +0100
62553     ATSTK1002: Use SDRAM + 4MB as default load address
62555     Many people run into problems when they compile a big kernel and load
62556     the uImage at the default SDRAM + 2MB address as the kernel will
62557     overwrite the uImage as it is being unpacked. Increase the default
62558     load address so that we can load a 4MB kernel image without any
62559     problems.
62561     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62563 commit 2bcacc2d841b77f3d2d3910db722003742727e9f
62564 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62565 Date:   Thu Nov 22 16:51:39 2007 +0100
62567     ATNGW100: Fix default mtest range
62569     Let mtest cover the whole SDRAM except the last megabyte, which is
62570     where u-boot lives.
62572     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62574 commit 9856a6b3104e0bc210b0868dfe691c52bf03c227
62575 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
62576 Date:   Tue Jan 22 15:31:56 2008 +0900
62578     sh: Fix register address of SH7722.
62580     The address of SH7722 is wrong by old document.
62581     This patch fixes this problem.
62583     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
62585 commit 30942b18b66f35f2ceedab39af10e9eccaa943cc
62586 Author: Mike Frysinger <vapier@gentoo.org>
62587 Date:   Mon Feb 4 19:26:57 2008 -0500
62589     new command for displaying strings at specified memory locations
62591     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62593 commit b58d8b48e25b0c866d167cc577f118f528cd9e0a
62594 Author: Mike Frysinger <vapier@gentoo.org>
62595 Date:   Mon Feb 4 19:26:57 2008 -0500
62597     rewrite/cleanup Blackfin RTC driver
62599     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62601 commit 94a91e248b71c3ff951fc27cff6909e82ca37d15
62602 Author: Mike Frysinger <vapier@gentoo.org>
62603 Date:   Mon Feb 4 19:26:57 2008 -0500
62605     generate u-boot.ldr for Blackfin targets
62607     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62609 commit b779f7a59530436040f157f7841db7ab796542df
62610 Author: Mike Frysinger <vapier@gentoo.org>
62611 Date:   Mon Feb 4 19:26:57 2008 -0500
62613     scrub unused symbols
62615     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62617 commit cc2977acc3bbbb7850f16645dd1081f95335868d
62618 Author: Mike Frysinger <vapier@gentoo.org>
62619 Date:   Mon Feb 4 19:26:57 2008 -0500
62621     move Blackfin cpu object list to respective cpu directories
62623     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62625 commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505
62626 Author: Mike Frysinger <vapier@gentoo.org>
62627 Date:   Mon Feb 4 19:26:57 2008 -0500
62629     interface to Blackfin on-chip One-Time-Programmable memory
62631     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62633 commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788
62634 Author: Mike Frysinger <vapier@gentoo.org>
62635 Date:   Mon Feb 4 19:26:56 2008 -0500
62637     add support for memory commands with Blackfin L1 instruction memory
62639     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62641 commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464
62642 Author: Mike Frysinger <vapier@gentoo.org>
62643 Date:   Mon Feb 4 19:26:56 2008 -0500
62645     use C code rather than inline assembly
62647     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62649 commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9
62650 Author: Mike Frysinger <vapier@gentoo.org>
62651 Date:   Mon Feb 4 19:26:56 2008 -0500
62653     add Blackfin-specific reginfo command
62655     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62657 commit 0858b835e7ea501ea084d34cef75932f098342bb
62658 Author: Mike Frysinger <vapier@gentoo.org>
62659 Date:   Mon Feb 4 19:26:55 2008 -0500
62661     add support for Blackfin symbol prefixes to examples
62663     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62665 commit 8dc48d71a4be753ea9f84956cd33600de35fad04
62666 Author: Mike Frysinger <vapier@gentoo.org>
62667 Date:   Mon Feb 4 19:26:55 2008 -0500
62669     add Blackfin-specific bdinfo command
62671     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62673 commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a
62674 Author: Mike Frysinger <vapier@gentoo.org>
62675 Date:   Mon Feb 4 19:26:55 2008 -0500
62677     move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__
62679     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62681 commit 60fa72d65610c7ef33e1d6db858979d05ff0df58
62682 Author: Mike Frysinger <vapier@gentoo.org>
62683 Date:   Mon Feb 4 19:26:55 2008 -0500
62685     unify the Blackfin board targets
62687     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62689 commit d4d7730853e5d675f76ec666807da3028c91d592
62690 Author: Mike Frysinger <vapier@gentoo.org>
62691 Date:   Mon Feb 4 19:26:55 2008 -0500
62693     punt Blackfin VDSP headers and import sanitized/auto-generated ones
62695     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62697 commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd
62698 Author: Mike Frysinger <vapier@gentoo.org>
62699 Date:   Mon Feb 4 19:26:54 2008 -0500
62701     always pull in asm/blackfin.h for Blackfin ports
62703     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62705 commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc
62706 Author: Mike Frysinger <vapier@gentoo.org>
62707 Date:   Mon Feb 4 19:26:54 2008 -0500
62709     add missing __raw versions of Blackfin read/write io functions
62711     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62713 commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d
62714 Author: Mike Frysinger <vapier@gentoo.org>
62715 Date:   Mon Feb 4 19:26:54 2008 -0500
62717     add the default Blackfin logo used by Blackfin boards with splash screens
62719     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62721 commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1
62722 Author: Mike Frysinger <vapier@gentoo.org>
62723 Date:   Mon Feb 4 19:26:54 2008 -0500
62725     add some more Blackfin docs
62727     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62729 commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf
62730 Author: Mike Frysinger <vapier@gentoo.org>
62731 Date:   Mon Feb 4 19:26:54 2008 -0500
62733     make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
62735     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62737 commit 4087bc88cebec75c432a7fe9f6afb545b0919831
62738 Author: Mike Frysinger <vapier@gentoo.org>
62739 Date:   Mon Feb 4 19:26:54 2008 -0500
62741     fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols
62743     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62745 commit b45264ee85cbd92020640a32e02fb434fd557108
62746 Author: Mike Frysinger <vapier@gentoo.org>
62747 Date:   Mon Feb 4 19:26:53 2008 -0500
62749     add gitignores for Blackfin pieces
62751     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62753 commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29
62754 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62755 Date:   Fri Jan 18 01:14:03 2008 +0100
62757     TFTP: add host ip addr support
62759     allow to use a different server as set in serverip
62760     add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
62761     if not defined the max length will be at 128
62763     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62765 commit e56b4b494cd92def577969f9678395aa22d34c9f
62766 Author: Timur Tabi <timur@freescale.com>
62767 Date:   Wed Jan 9 14:35:26 2008 -0600
62769     85xx,86xx: Determine I2C clock frequencies and store in global_data
62771     Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
62773     Update the get_clocks() function in 85xx and 86xx to determine the I2C
62774     clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
62776     Signed-off-by: Timur Tabi <timur@freescale.com>
62778 commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2
62779 Author: Wolfgang Denk <wd@denx.de>
62780 Date:   Thu Dec 27 10:56:54 2007 +0100
62782     OMAP5912: fix FIFO handling in UART driver
62784     According to the OMAP5912 Serial Interfaces Reference Guide (see
62785     http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the
62786     FIFO_EN enable bit in the FIFO Control Register (FCR) can only be
62787     changed when the baud clock is not running, i. e. when both DLL and
62788     DLH are set to 0.
62790     Thus make sure that DLL and DLH are 0 when writing the FCR.
62792     Signed-off-by: Wolfgang Denk <wd@denx.de>
62794 commit 16158778b5f52f201e95ded2d2d9084b0ed5670d
62795 Author: Harald Welte <laforge@openmoko.org>
62796 Date:   Wed Dec 19 15:10:52 2007 +0100
62798     ARM: S3C24x0 SoC NAND controller support
62800     This patch adds NAND support to the S3C24x0 SoC code in u-boot
62802     Signed-off-by: Harald Welte <laforge@openmoko.org>
62804 commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163
62805 Author: Harald Welte <laforge@openmoko.org>
62806 Date:   Wed Dec 19 14:24:40 2007 +0100
62808     ARM: s3c24xx: Multiple serial port support
62810     This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
62812     Signed-off-by: Harald Welte <laforge@openmoko.org>
62814 commit a25f72f1f73a11de68251fb88c89991e202e68fa
62815 Author: Harald Welte <laforge@openmoko.org>
62816 Date:   Wed Dec 19 14:16:57 2007 +0100
62818     ARM: arm920t: Allow use of 'gd' pointer from IRQ
62820     This patch allows us to use the 'gd' pointer (and thus environment
62821     and everything else associated with it) from interrupt context on
62822     arm920t.
62824     Signed-off-by: Harald Welte <laforge@openmoko.org>
62826 commit be19bd5cd0f454b63298844a0b5377e029b2caad
62827 Author: Harald Welte <laforge@openmoko.org>
62828 Date:   Wed Dec 19 14:19:38 2007 +0100
62830     ARM: arm920/s3c24xx: IRQ demulitplexer callback
62832     This patch adds a IRQ demultiplexer callback to the arm920 cpu core code,
62833     plus a stub implementation of it for the S3C2410.
62835     The purpose is to allow arm920t implementations such as the s3c24x0 to
62836     implement interrupt handlers in u-boot without having to touch core
62837     arm920t code.
62839     Signed-off-by: Harald Welte <laforge@openmoko.org>
62841 commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda
62842 Author: Hebbar <gururajakr@sanyo.co.in>
62843 Date:   Tue Dec 18 16:03:07 2007 -0800
62845     ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined
62847     Add ifdef to bdinfo command to display ethernet information
62848     only if CONFIG_CMD_NET is defined for arm modules.
62850     Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
62852 commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884
62853 Author: Hebbar <gururajakr@sanyo.co.in>
62854 Date:   Tue Dec 18 16:00:54 2007 -0800
62856     ARM: add I2C init function call in lib_arm/board.c
62858     Adds I2C init func call to init sequence for ARM boards. This is
62859     present in ppc,blackfin and other processor init sequence.
62861     Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
62863 commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae
62864 Author: Stefan Roese <sr@denx.de>
62865 Date:   Fri Feb 1 09:38:29 2008 +0100
62867     ppc4xx: Fix ndfc HW ECC byte order
62869     The current ndfc HW ECC implementation swaps the first two ECC bytes.
62870     But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering,
62871     so this swapping in the HW ECC driver is bogus. This patch fixes this
62872     problem and now really uses the SMC ECC byte order.
62874     Thanks to Sean MacLennan for pointing this out.
62876     Signed-off-by: Stefan Roese <sr@denx.de>
62878 commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1
62879 Author: Stefan Roese <sr@denx.de>
62880 Date:   Wed Jan 30 15:35:50 2008 +0100
62882     ppc4xx: Fix GPIO configuration for pcs440ep
62884     The SRD0_PFC0 register was not configured correctly to enable the GPIO's
62885     49-63 for GPIO. They have been configured as trace signals. This patch
62886     fixes this by clearing the corresponding bit.
62888     Signed-off-by: Stefan Roese <sr@denx.de>
62890 commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821
62891 Author: Stefan Roese <sr@denx.de>
62892 Date:   Wed Jan 30 14:48:28 2008 +0100
62894     ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
62896     Signed-off-by: Stefan Roese <sr@denx.de>
62898 commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368
62899 Author: Ladislav Michl <ladis@linux-mips.org>
62900 Date:   Fri Dec 7 00:42:32 2007 +0100
62902     ARM: Board voiceblue update
62904     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
62906 commit 2c5260f711168d5ee91c70ddbb7d897013eefc46
62907 Author: Ladislav Michl <ladis@linux-mips.org>
62908 Date:   Thu Dec 6 23:24:57 2007 +0100
62910     ARM: AT91RM9200 based boards config cleanup
62912     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
62914     Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix
62915     indentation.
62917 commit 481f28b1db5cd21deb55f69399ba240e107af4c7
62918 Author: Ladislav Michl <ladis@linux-mips.org>
62919 Date:   Thu Dec 6 22:59:16 2007 +0100
62921     ARM: Fix at91rm9200dk base address
62923     Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was
62924     renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced
62925     with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT.
62926     However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to
62927     CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact.
62928     I'm sending this patch 4th (!) time in hope it produces at least some
62929     reaction.
62931     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
62933     Fix at91rm9200dk base and environment address.
62935 commit c95219fae2a7add7daa2f91aedca65b1698465c7
62936 Author: stefano babic <sbabic@denx.de>
62937 Date:   Tue Nov 20 10:40:24 2007 +0100
62939     MMC for PXA 27X (resubmit)
62941     MMC support for X_Scale PXA is broken and does not work.
62942     Mainly, the mmc_init() function cannot recognize current SD/MMC cards.
62943     There were already some patches around the world but none of them was
62944     merged into the official u-boot tree.
62946     This patch makes order fixing this issue. Resubmit after code cleanup.
62948     Applied and tested on PXA 270 (TrizepsIV module).
62950     Signed-off-by: Stefano Babic <sbabic@denx.de>
62952 commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33
62953 Author: stefano babic <sbabic@denx.de>
62954 Date:   Tue Nov 20 10:37:04 2007 +0100
62956     Fix gcc issues in pxa-regs.h
62958     Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4
62959     issues generates wrong code.
62960     (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu).
62961     This patch fixes the problem and solves the gcc-4 issues as the linux
62962     kernel does.
62964     Signed-off-by: Stefano Babic <sbabic@denx.de>
62965     Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com>
62967 commit 7047b388876e7b905b2ec4edb8010543e3641b85
62968 Author: Jens Gehrlein <sew_s@tqs.de>
62969 Date:   Tue Jan 29 08:45:03 2008 +0100
62971     TQM834x: enable DHCP
62973     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
62974     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
62976 commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec
62977 Author: Jens Gehrlein <sew_s@tqs.de>
62978 Date:   Tue Jan 29 08:45:02 2008 +0100
62980     TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).
62982     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
62983     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
62985 commit 8931ab176025b03cfc320b3fd1eca432a88ed560
62986 Author: Ben Warren <biggerbadderben@gmail.com>
62987 Date:   Sat Jan 26 23:41:19 2008 -0500
62989     Fix conditional compilation of mpx8xxx_spi driver
62991     This driver should only compile if CONFIG_MPC8XXX_SPI is set
62993     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
62994     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
62996 commit 63f732d3d3880feb531f48af247c025bf01462b0
62997 Author: Rafal Jaworowski <raj@semihalf.com>
62998 Date:   Tue Jan 29 17:00:34 2008 +0100
63000     API: Provide dummy halt() in the glue layer.
63002     This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.
63004     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
63006 commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826
63007 Author: Rafal Jaworowski <raj@semihalf.com>
63008 Date:   Tue Jan 29 16:57:38 2008 +0100
63010     API: Convert conditional building to the new scheme.
63012     This fixes a build breakage with CONFIG_API enabled, which appeared after
63013     the recent changes in the U-Boot build system.
63015     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
63017 commit 98b742489c09780be6a832eeaa4e5eff824792bb
63018 Author: Wolfgang Denk <wd@denx.de>
63019 Date:   Fri Jan 25 09:56:17 2008 +0100
63021     inka4x0: remove dead code
63023     Signed-off-by: Wolfgang Denk <wd@denx.de>
63025 commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa
63026 Author: Becky Bruce <becky.bruce@freescale.com>
63027 Date:   Wed Jan 23 16:31:06 2008 -0600
63029     86xx: Add reginfo command
63031     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
63033 commit ddcebcb638715a6278da93b553d5016f99823816
63034 Author: Becky Bruce <becky.bruce@freescale.com>
63035 Date:   Wed Jan 23 16:31:05 2008 -0600
63037     86xx: Add print_laws function to fsl_law.c
63039     This can be used for debug, and will be used by board code
63040     to help implement reginfo.
63042     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
63044 commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3
63045 Author: Becky Bruce <becky.bruce@freescale.com>
63046 Date:   Wed Jan 23 16:31:04 2008 -0600
63048     86xx: Remove old-style law setup code
63050     This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d.
63052     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
63054 commit 713d8186649dae874613d495b0cecaa039a98b30
63055 Author: Becky Bruce <becky.bruce@freescale.com>
63056 Date:   Wed Jan 23 16:31:03 2008 -0600
63058     86xx: Convert sbc8641d to use new law setup code.
63060     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
63062 commit 031976f6364b93833e989f57e9f1e023e0be8c4c
63063 Author: Becky Bruce <becky.bruce@freescale.com>
63064 Date:   Wed Jan 23 16:31:02 2008 -0600
63066     86xx: Convert mpc8610hpcd to new law setup method.
63068     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
63070 commit 4933b91f8a49e436681f163df3173beb91cac44a
63071 Author: Becky Bruce <becky.bruce@freescale.com>
63072 Date:   Wed Jan 23 16:31:01 2008 -0600
63074     86xx: Support new law setup method and convert mpc8641
63076     Adds the support code in cpu/mpc86xx for the new law setup code
63077     recently created fsl_law.c, and changes the MPC8641HPCN config
63078     to use this code.
63080     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
63082 commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1
63083 Author: Becky Bruce <becky.bruce@freescale.com>
63084 Date:   Wed Jan 23 16:31:00 2008 -0600
63086     86xx: Rearrange the sequence in start.S
63088     * split the BAT initialization so that only 2 BATs (for the boot page
63089     and stack) are programmed very early on.  The rest are initialized later.
63090     * Move other BAT setup,  ccsrbar setup, and law setup later in the code
63091     after translation has been enabled.
63093     These changes will facilitate the moving of law and BAT initialization
63094     to C code, and will aid with 36-bit physical addressing support.
63096     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
63098 commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0
63099 Author: Wolfgang Denk <wd@denx.de>
63100 Date:   Wed Jan 23 14:41:37 2008 +0100
63102     Coding Style Cleanup; update CHANGELOG
63104     Signed-off-by: Wolfgang Denk <wd@denx.de>
63106 commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
63107 Author: Wolfgang Denk <wd@denx.de>
63108 Date:   Wed Jan 23 14:31:17 2008 +0100
63110     Coding Style Cleanup; update CHANGELOG
63112     Signed-off-by: Wolfgang Denk <wd@denx.de>
63114 commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
63115 Author: Dave Liu <r63238@freescale.com>
63116 Date:   Fri Jan 18 10:07:04 2008 +0800
63118     mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
63120     The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
63121     cause the 83xx immap broken, so the DMA and PCI will
63122     be failed.
63124     The patch fix the struct spi8xxx and rm struct spi83xx.
63126     Signed-off-by: Dave Liu <daveliu@freescale.com>
63127     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63129 commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
63130 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63131 Date:   Sat Apr 14 17:11:49 2007 +0200
63133     AVR32: ATNGW100 board support
63135     Add support for the ATNGW100 Network Gateway reference design,
63136     including flash, ethernet and MMC support.
63138     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63140 commit e006927a0b9a54e8ee7685d8ac748aaad6801862
63141 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63142 Date:   Sat Nov 24 18:15:31 2007 +0100
63144     AVR32: Initialize ipaddr, loadaddr and bootfile at startup
63146     I don't know why the relevant layers can't do this by itself, but this
63147     is what ppc does.
63149     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63151 commit 799891ef7b1b3432032ec23466df6b665a797fa4
63152 Author: Michael Schwingen <michael@schwingen.org>
63153 Date:   Fri Jan 18 00:04:28 2008 +0100
63155     Add AcTux board support
63157     Hi,
63159     The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
63160     files that
63161     contain changes for multiple boards, the board-specific files follow as
63162     separate patches.
63164     Signed-off-by: Michael Schwingen <michael@schwingen.org>
63166 commit 66a4344a4d910a11125df7768899ad529719855e
63167 Author: Michael Schwingen <michael@schwingen.org>
63168 Date:   Wed Jan 16 19:53:23 2008 +0100
63170     add AcTux-4 board support
63172     Signed-off-by: Michael Schwingen <michael@schwingen.org>
63174 commit bc24345e4101a5c996d6b48ce497b09c53025dc6
63175 Author: Michael Schwingen <michael@schwingen.org>
63176 Date:   Wed Jan 16 19:51:55 2008 +0100
63178     add AcTux-3 board support
63180     Signed-off-by: Michael Schwingen <michael@schwingen.org>
63182 commit aebf00fc4d1343b24715373893f7b20bf462d1e9
63183 Author: Michael Schwingen <michael@schwingen.org>
63184 Date:   Wed Jan 16 19:51:14 2008 +0100
63186     add AcTux-2 board support
63188     Signed-off-by: Michael Schwingen <michael@schwingen.org>
63190 commit ea99e8f05b7240fd657739e286664664ae160abe
63191 Author: Michael Schwingen <michael@schwingen.org>
63192 Date:   Wed Jan 16 19:50:37 2008 +0100
63194     add AcTux-1 board support
63196     Signed-off-by: Michael Schwingen <michael@schwingen.org>
63198 commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
63199 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63200 Date:   Mon Jan 14 19:20:08 2008 +0100
63202     ARM: remove useless function board_post_init
63204     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63206 commit 96bd462942022e4569b582c072a0ed26de1cd19b
63207 Author: Michael Schwingen <michael@schwingen.org>
63208 Date:   Thu Jan 10 14:59:46 2008 +0100
63210     IXP: enable RTS
63212     enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
63213     No handshaking is done, but the active RTS signal allows to
63214     connect to the target using a PC which is using RTS/CTS
63215     handshake, and does no harm if the PC is set to ignore RTS.
63217     Signed-off-by: Michael Schwingen <michael@schwingen.org>
63219 commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
63220 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63221 Date:   Mon Jan 7 08:41:34 2008 +0100
63223     IXP: add dynamic microcode addr
63225     allow to load the microde from flash or ram by download it through
63226     the serial or other.
63228     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63229     Acked-by: Stefan Roese <sr@denx.de>
63231 commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
63232 Author: Michael Schwingen <michael@schwingen.org>
63233 Date:   Sat Nov 10 15:44:12 2007 +0100
63235     load ixp42x NPE firmware from separate flash block, remove dead code
63237     Hi,
63239     the following patch adds support to move the IXP42X NPE firmware to a
63240     separate flash block, whose start address is defined in
63241     CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
63242     NPE-enabled u-boot without copyright problems due to the NPE firmware.
63244     I hope the patch applies, I get whitespace-related differences in the NPE
63245     files due to trailing whitespace in the original versions.
63247     Signed-off-by: Michael Schwingen <michael@schwingen.org>
63248     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63250 commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
63251 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63252 Date:   Tue Jan 15 14:15:46 2008 -0600
63254     ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
63256     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63257     Signed-off by: John Rigby <jrigby@freescale.com>
63259 commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
63260 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63261 Date:   Tue Jan 15 14:02:49 2008 -0600
63263     ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
63265     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63266     Signed-off by: John Rigby <jrigby@freescale.com>
63268 commit 777d1abd9796f1c2e148417cc10657e847d318ce
63269 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63270 Date:   Tue Jan 15 14:00:25 2008 -0600
63272     ColdFire: Add MCF547x_8x FEC driver
63274     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63275     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63276     Signed-off by: John Rigby <jrigby@freescale.com>
63278 commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
63279 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63280 Date:   Tue Jan 15 13:54:09 2008 -0600
63282     ColdFire: Add MCF547x_8x dma code and header files
63284     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63285     Signed-off by: John Rigby <jrigby@freescale.com>
63287 commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
63288 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63289 Date:   Tue Jan 15 13:52:03 2008 -0600
63291     ColdFire: Add MCF547x_8x dma code - 2
63293     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63294     Signed-off by: John Rigby <jrigby@freescale.com>
63296 commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
63297 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63298 Date:   Tue Jan 15 13:48:52 2008 -0600
63300     ColdFire: Add MCF547x_8x dma code - 1
63302     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63303     Signed-off by: John Rigby <jrigby@freescale.com>
63305 commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
63306 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63307 Date:   Tue Jan 15 13:39:44 2008 -0600
63309     ColdFire: Add MCF547x_8x related header files
63311     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63312     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63313     Signed-off by: John Rigby <jrigby@freescale.com>
63315 commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
63316 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63317 Date:   Tue Jan 15 13:37:34 2008 -0600
63319     ColdFire: Add MCF547x_8x cpu arch
63321     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63322     Signed-off by: John Rigby <jrigby@freescale.com>
63324 commit e2756f4b54aba0e0523b81dd145666829cf7fd59
63325 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63326 Date:   Mon Jan 14 17:47:23 2008 -0600
63328     ColdFire: Add MCF5227x cpu and M52277EVB support-3
63330     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63331     Signed-off by: John Rigby <jrigby@freescale.com>
63333 commit c87581027994c148131b2f11aa75501f782ec19a
63334 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63335 Date:   Mon Jan 14 17:46:19 2008 -0600
63337     ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
63339     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63340     Signed-off by: John Rigby <jrigby@freescale.com>
63342 commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
63343 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63344 Date:   Mon Jan 14 17:43:33 2008 -0600
63346     ColdFire: Add MCF5227x cpu and M52277EVB support-1
63348     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63349     Signed-off by: John Rigby <jrigby@freescale.com>
63351 commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
63352 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63353 Date:   Mon Jan 14 17:35:44 2008 -0600
63355     ColdFire: Fix CFI Flash low level Read/Write macro
63357     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63358     Signed-off by: John Rigby <jrigby@freescale.com>
63360 commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
63361 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63362 Date:   Mon Jan 14 17:23:08 2008 -0600
63364     ColdFire: Add M5373EVB platform support - 2
63366     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63367     Signed-off by: John Rigby <jrigby@freescale.com>
63369 commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
63370 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63371 Date:   Mon Jan 14 17:19:54 2008 -0600
63373     ColdFire: Add M5373EVB platform support - 1
63375     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63376     Signed-off by: John Rigby <jrigby@freescale.com>
63378 commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
63379 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63380 Date:   Mon Jan 14 17:17:03 2008 -0600
63382     ColdFire: Update FlexBus CS for MCF532x
63384     Definition update and change from 16bit to 32bit
63386     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63387     Signed-off by: John Rigby <jrigby@freescale.com>
63389 commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
63390 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63391 Date:   Mon Jan 14 17:11:47 2008 -0600
63393     ColdFire: PCI and misc updates for MCF5445x
63395     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63396     Signed-off by: John Rigby <jrigby@freescale.com>
63398 commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
63399 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63400 Date:   Mon Jan 14 17:06:55 2008 -0600
63402     ColdFire: MCF5445x header files cleanup
63404     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63405     Signed-off by: John Rigby <jrigby@freescale.com>
63407 commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
63408 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63409 Date:   Mon Jan 14 16:59:42 2008 -0600
63411     ColdFire: MCF532x header files cleanup
63413     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63414     Signed-off by: John Rigby <jrigby@freescale.com>
63416 commit 7af7751d047e74b2ec58400f97b879c56446b3e8
63417 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63418 Date:   Mon Jan 14 15:30:15 2008 -0600
63420     ColdFire: Add modules header files
63422     Add CF specific modules header files
63424     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
63425     Signed-off-by: John Rigby <jrigby@freescale.com>
63427 commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
63428 Author: Kim Phillips <kim.phillips@freescale.com>
63429 Date:   Thu Jan 17 12:48:00 2008 -0600
63431     codingstyle cleanup for spi driver
63433     ..and rm unused CONFIG_FSL_SPI define
63435     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63437 commit d59feffb42c9f174116db7a82a311df98983dfce
63438 Author: Haiying Wang <Haiying.Wang@freescale.com>
63439 Date:   Wed Jan 16 17:12:12 2008 -0500
63441     FSL: Fix common EEPROM_data structure definition
63443     - Fix EEPROM_data structure definition according to System EEPROM Data Format.
63444     - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
63445       bd->bi_ethaddr.
63447     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
63449 commit 6bee764bd6da510a4aad614880300c968bc7318d
63450 Author: Timur Tabi <timur@freescale.com>
63451 Date:   Wed Jan 16 15:48:12 2008 -0600
63453     86xx: enable command-line editing
63455     Enable command-line editing for all MPC86xx boards.
63457     Signed-off-by: Timur Tabi <timur@freescale.com>
63459 commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
63460 Author: Ben Warren <biggerbadderben@gmail.com>
63461 Date:   Wed Jan 16 22:37:42 2008 -0500
63463     Implement hard SPI driver on MPC8349EMDS
63465     This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
63466     This board has an ST M25P40 4Mbit EEPROM on its SPI bus
63468     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63469     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63471 commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
63472 Author: Ben Warren <biggerbadderben@gmail.com>
63473 Date:   Wed Jan 16 22:37:35 2008 -0500
63475     Add support for a Freescale non-CPM SPI controller
63477     This patch adds support for the SPI controller found on Freescale PowerPC
63478     processors such as the MCP834x family.  Additionally, a new config option,
63479     CONFIG_HARD_SPI, is added for general purpose SPI controller use.
63481     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63482     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63484 commit a8cb43a89be6cfd283257a603dd9841503ccce0f
63485 Author: Dave Liu <r63238@freescale.com>
63486 Date:   Thu Jan 17 18:23:19 2008 +0800
63488     mpc83xx: Fix the fatal conflict of merge
63490     The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
63491     will cause the mpc8315erdb board can't boot up.
63493     The patch fix that bug, and remove the duplicated #ifdef
63494     CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
63495     MPC8313E processor.
63497     Signed-off-by: Dave Liu <daveliu@freescale.com>
63498     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
63500 commit 3259eeaa4148125a81417477f62c05bd67f60587
63501 Author: Larry Johnson <lrj@acm.org>
63502 Date:   Thu Jan 17 08:50:09 2008 -0500
63504     Merge Sequoia beautification into Korat code
63506     Signed-off-by: Larry Johnson <lrj@acm.org>
63508 commit e16925773211291b562e77187061e9dd1d757217
63509 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63510 Date:   Thu Jan 17 07:45:05 2008 +0100
63512     net: add 'ethrotate' environment variable
63514     [PATCH] net: add 'ethrotate' environment variable
63516     This patch replaces the buildtime configuration option
63517     CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
63518     configuration veriable. See README.
63520     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63521     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63523 commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
63524 Author: Stefan Roese <sr@denx.de>
63525 Date:   Thu Jan 17 14:29:04 2008 +0100
63527     ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
63529     Signed-off-by: Stefan Roese <sr@denx.de>
63531 commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
63532 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
63533 Date:   Thu Jan 17 18:07:32 2008 +0900
63535     sh: Remove CONFIG_COMMANDS from MS7720SE config file
63537     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
63539 commit 055606bd25e88c0cd04ad348a679a04b1b616bee
63540 Author: Niklaus Giger <niklaus.giger@netstal.com>
63541 Date:   Wed Jan 16 18:39:20 2008 +0100
63543     ppc4xx: Netstal HCU4 board: added various fixes and POST
63545     - Moved some common code to netstal/common/nm_bsp.c.
63546     - sdram initialisation goes go netstal/common/fixed_sdram.c.
63547     - Added support for POST.
63548     - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
63550     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
63552 commit 69b0634a4ee98c9791815600d43b99f626a952f3
63553 Author: Niklaus Giger <niklaus.giger@netstal.com>
63554 Date:   Thu Jan 17 12:53:56 2008 +0100
63556     ppc4xx: netstal/common define routines used by all boards
63558     Added some routines used by all Netstal boards:
63559     - nm_bsp.c: - nm_show_print and
63560             -  common_misc_init_r
63561             - set_params_for_sw_install. Very specific code to handle our SW
63562               installation procedure
63563     - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
63564       to handle sdram initialization.
63565     - nm.h: Common header
63567     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
63569 commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
63570 Author: Niklaus Giger <niklaus.giger@netstal.com>
63571 Date:   Wed Jan 16 18:39:18 2008 +0100
63573     ppc4xx: Netstal HCU5 board: added various fixes and POST
63575     - Moved some common code to nestal/common/nm_bsp.c.
63576     - Added support for the vxWorks EDR.
63577     - Enable trace for Lauterbach, if present.
63578     - Added support for POST.
63579     - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
63581     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
63583 commit 4371090e5da77edc7bf9f296364db4801639d9c4
63584 Author: Niklaus Giger <niklaus.giger@netstal.com>
63585 Date:   Wed Jan 16 18:39:08 2008 +0100
63587     ppc4xx: Netstal HCU5 board. Added POST. Various fixes
63589     - Various fixes
63590     - Reduced rom_size from 384 to 320 kB
63591     - Environment is now in flash
63592     - Added POST
63593     - Support for OF
63595     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
63597 commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
63598 Author: Niklaus Giger <niklaus.giger@netstal.com>
63599 Date:   Wed Jan 16 18:37:50 2008 +0100
63601     ppc4xx: Netstal HCU4 board. Added POST. Various fixes
63603     - Various fixes
63604     - Reduced rom_size from 384 to 320 kB
63605     - Environment is now in flash
63606     - Added POST
63607     - Support for OF
63609     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
63611 commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
63612 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63613 Date:   Thu Jan 17 10:53:08 2008 +0100
63615     ppc4xx: Complete DU440 board support
63617     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63619 commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
63620 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63621 Date:   Thu Jan 17 10:52:30 2008 +0100
63623     ppc4xx: Add DU440 board support
63625     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
63627 commit ac331da07db3860f11fa1d0fd3db7c810bce1198
63628 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
63629 Date:   Thu Jan 17 15:53:52 2008 +0900
63631     sh: Update SuperH SCIF driver
63633     This patch fixed wrong SH7720 CPU macro and changed macro that
63634     calculated value of SCBRR register.
63636     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
63638 commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
63639 Author: Grzegorz Bernacki <gjb@semihalf.com>
63640 Date:   Wed Jan 16 15:12:47 2008 +0100
63642     Set ips dividor to 1/4 of csb clock.
63644     Previous setting cause ips clock to be out of spec. This bug was found by John
63645     Rigby from Freescale.
63647     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
63649 commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
63650 Author: Kumar Gala <galak@kernel.crashing.org>
63651 Date:   Thu Jan 17 02:19:18 2008 -0600
63653     85xx: Get ride of old TLB setup code
63655     Now that all boards have been converted, remove old config code and the
63656     config option for the new style.
63658     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63660 commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
63661 Author: Kumar Gala <galak@kernel.crashing.org>
63662 Date:   Thu Jan 17 02:02:10 2008 -0600
63664     85xx: Convert TQM85xx to new TLB setup
63666     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63668 commit 74121b470c14f7eaf284ee838bffca6f9521069e
63669 Author: Kumar Gala <galak@kernel.crashing.org>
63670 Date:   Thu Jan 17 01:56:32 2008 -0600
63672     85xx: Convert STXGP3 & STXSSA to new TLB setup
63674     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63676 commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
63677 Author: Kumar Gala <galak@kernel.crashing.org>
63678 Date:   Thu Jan 17 01:44:34 2008 -0600
63680     85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
63682     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63684 commit 818218bac6a11591e2542c344d2330e0f4e1968b
63685 Author: Kumar Gala <galak@kernel.crashing.org>
63686 Date:   Thu Jan 17 01:31:34 2008 -0600
63688     85xx: Convert PM854/PM856 to new TLB setup
63690     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63692 commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
63693 Author: Kumar Gala <galak@kernel.crashing.org>
63694 Date:   Thu Jan 17 01:25:33 2008 -0600
63696     85xx: Convert MPC8540EVAL to new TLB setup
63698     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63700 commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
63701 Author: Kumar Gala <galak@kernel.crashing.org>
63702 Date:   Thu Jan 17 01:12:22 2008 -0600
63704     85xx: Convert MPC8568 MDS to new TLB setup
63706     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63708 commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
63709 Author: Kumar Gala <galak@kernel.crashing.org>
63710 Date:   Thu Jan 17 01:01:09 2008 -0600
63712     85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
63714     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63716 commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
63717 Author: Kumar Gala <galak@kernel.crashing.org>
63718 Date:   Thu Jan 17 00:52:29 2008 -0600
63720     85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
63722     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63724 commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
63725 Author: Kumar Gala <galak@kernel.crashing.org>
63726 Date:   Thu Jan 17 00:32:17 2008 -0600
63728     85xx: Convert ATUM8548 to new TLB setup
63730     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63732 commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
63733 Author: Kumar Gala <galak@kernel.crashing.org>
63734 Date:   Wed Jan 16 23:11:57 2008 -0600
63736     85xx: Convert MPC8544 DS to new TLB setup
63738     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63740 commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
63741 Author: Kumar Gala <galak@kernel.crashing.org>
63742 Date:   Wed Jan 16 22:38:34 2008 -0600
63744     85xx: Reworked initial processor init
63746     Reworked the initial processor initialzation sequence:
63747     * introduced cpu_early_init_f that is run in address space 1 (AS=1)
63748     * Moved TLB/LAW and CCSR init into cpu_early_init_f()
63749     * Reworked initial asm code to do most of the core init before TLBs
63751     The main reasons for these changes are to allow handling of 36-bit phys
63752     addresses in the future and some of the issues that will exist when we
63753     do that.
63755     There are a few caveats on what can be initialized via the LAW and TLB
63756     static tables:
63757     * TLB entry 14/15 can't be initialized via the TLB table
63758     * any LAW that covers the implicit boot window (4G-8M to 4G) must map to
63759       the code that is currently executing.
63761     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63763 commit 44a23cfd6360a68eaa41f945190618a55519eac3
63764 Author: Kumar Gala <galak@kernel.crashing.org>
63765 Date:   Wed Jan 16 22:33:22 2008 -0600
63767     85xx: Introduce new tlb API
63769     Add a set of functions to manipulate TLB entries:
63770      * set_tlb() - write a tlb entry
63771      * invalidate_tlb() - invalidate a tlb array
63772      * disable_tlb() - disable a variable size tlb entry
63773      * init_tlbs() - setup initial tlbs based on static table
63775     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63777 commit be88b1699863c262818f3af7f60173b4d48df8fc
63778 Author: Stefan Roese <sr@denx.de>
63779 Date:   Thu Jan 17 07:50:17 2008 +0100
63781     ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
63783     Signed-off-by: Stefan Roese <sr@denx.de>
63785 commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
63786 Author: Kumar Gala <galak@kernel.crashing.org>
63787 Date:   Wed Jan 16 10:04:42 2008 -0600
63789     85xx: Use proper defines for PCI addresses
63791     We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
63792     While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
63793     be used for configuring the PCI ATMU.
63795     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63797 commit 54a5070115eff38e9b324b78abdfa0b4520580b9
63798 Author: Kumar Gala <galak@kernel.crashing.org>
63799 Date:   Wed Jan 16 09:22:29 2008 -0600
63801     85xx: Remove old style of LAW init
63803     All boards are now using the new fsl_law code so we can drop the old version.
63805     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63807 commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
63808 Author: Kumar Gala <galak@kernel.crashing.org>
63809 Date:   Wed Jan 16 09:15:29 2008 -0600
63811     85xx: convert remaining 85xx boards over to use new LAW init code
63813     Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
63814     to use new LAW init code.
63816     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63818 commit 572b13afc42710f2957c382a710360429c0e099b
63819 Author: Kumar Gala <galak@kernel.crashing.org>
63820 Date:   Wed Jan 16 09:11:53 2008 -0600
63822     85xx: convert STXGP3/STXSSA over to use new LAW init code
63824     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63826 commit 45f2166ac0233a9263058378f39612bd11f61196
63827 Author: Kumar Gala <galak@kernel.crashing.org>
63828 Date:   Wed Jan 16 09:06:48 2008 -0600
63830     85xx: convert PM854/PM856 over to use new LAW init code
63832     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63834 commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
63835 Author: Kumar Gala <galak@kernel.crashing.org>
63836 Date:   Wed Jan 16 09:05:27 2008 -0600
63838     85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
63840     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63842 commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
63843 Author: Kumar Gala <galak@kernel.crashing.org>
63844 Date:   Wed Jan 16 01:45:10 2008 -0600
63846     85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
63848     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63850 commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
63851 Author: Kumar Gala <galak@kernel.crashing.org>
63852 Date:   Wed Jan 16 01:32:06 2008 -0600
63854     85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
63856     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63858 commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
63859 Author: Kumar Gala <galak@kernel.crashing.org>
63860 Date:   Wed Jan 16 01:16:16 2008 -0600
63862     85xx: convert MPC8544 DS over to use new LAW init code
63864     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63866 commit 83d40dfd79fe868796275802f60116d84b9e4395
63867 Author: Kumar Gala <galak@kernel.crashing.org>
63868 Date:   Wed Jan 16 01:13:58 2008 -0600
63870     85xx: Move LAW init code into C
63872     Move the initialization of the LAWs into C code and provide an API
63873     to allow modification of LAWs after init.
63875     Board code is responsible to provide a law_table and num_law_entries.
63877     We should be able to use the same code on 86xx as well.
63879     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
63881 commit bed8ce838a609aaab136d43b25e6df2a520bc854
63882 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63883 Date:   Sat Dec 22 15:03:12 2007 +0100
63885     qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
63887     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63889 commit 0764c164fed6277d359cf132d55187ea34290114
63890 Author: Vlad Lungu <vlad@comsys.ro>
63891 Date:   Wed Jan 16 19:27:51 2008 +0200
63893     MIPS:Target support for qemu -M mips
63895     With serial, NE2000, IDE support. Tested in big-endian mode.
63896     Memory size hard-coded to 128M for now, so don't play with
63897     the -m option.
63899     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
63901 commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
63902 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63903 Date:   Fri Jan 11 00:01:37 2008 +0100
63905     Fix nfs command help to reflect that the serverip is optional
63907     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63908     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63910 commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
63911 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63912 Date:   Mon Dec 10 22:32:14 2007 +0100
63914     bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
63916     and move is_valid_ether_addr board file
63918     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63919     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63921 commit c2f896b8fc4722e36915903e1942e138e68ce804
63922 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63923 Date:   Wed Jan 16 16:13:31 2008 +0900
63925     drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
63927     rx_status on the memory is basically in LE, but needs to be handled in CPU
63928     endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
63929     it'll work fine.
63931     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63932     Cc: Masami Komiya <mkomiya@sonare.it>
63933     Cc: Lucas Jin <lucasjin@gmail.com>
63934     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63936 commit 96a236746fe6a7b84802afb4ed31536696d34812
63937 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63938 Date:   Wed Jan 16 16:12:26 2008 +0900
63940     drivers/net/rtl8139.c: Fix cache coherency issues
63942     Current driver is meant for cache coherent systems. This patch adds
63943     flush_cache() routines to support cache non-coherent systems.
63945     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63946     Cc: Masami Komiya <mkomiya@sonare.it>
63947     Cc: Lucas Jin <lucasjin@gmail.com>
63948     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63950 commit d1276c76c1e2b5035296689280ba1acb2c425104
63951 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63952 Date:   Wed Jan 16 16:11:14 2008 +0900
63954     drivers/net/rtl8139.c: Fix tx timeout
63956     "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
63957     does, the condition "(currticks() < to)" becomes invalid and immediately
63958     leads to tx timeout error. This patch introduces the fine-graded udely(10)
63959     loops to ease the impact of wrapping around.
63961     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63962     Cc: Masami Komiya <mkomiya@sonare.it>
63963     Cc: Lucas Jin <lucasjin@gmail.com>
63964     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63966 commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
63967 Author: Dave Liu <r63238@freescale.com>
63968 Date:   Fri Jan 11 18:45:28 2008 +0800
63970     TSEC: Add the support for RealTek RTL8211B PHY
63972     Add the support of RealTek RTL8211B PHY, the RTL8211B
63973     PHY only supports RGMII and MII mode.
63975     Signed-off-by: Dave Liu <daveliu@freescale.com>
63976     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
63978 commit 84a3047b72b70e862b0b7a8e2058077457f89a32
63979 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
63980 Date:   Wed Jan 16 09:40:41 2008 +0100
63982     Remove annoying debug printout for PHY less boards.
63984     PHY less board prints out lots of "read wrong ...":
63985     read wrong value : mii_id 3,mii_reg 2, base e0102320
63986     read wrong value : mii_id 3,mii_reg 3, base e0102320
63987     UEC: PHY is Generic MII (ffffffff)
63988     read wrong value : mii_id 3,mii_reg 4, base e0102320
63989     read wrong value : mii_id 3,mii_reg 0, base e0102320
63990     read wrong value : mii_id 3,mii_reg 1, base e0102320
63991     read wrong value : mii_id 3,mii_reg 1, base e0102320
63992     read wrong value : mii_id 3,mii_reg 5, base e0102320
63993     read wrong value : mii_id 3,mii_reg 1, base e0102320
63994     read wrong value : mii_id 3,mii_reg 1, base e0102320
63995     read wrong value : mii_id 3,mii_reg 5, base e0102320
63996     FSL UEC0: Full Duplex
63997     FSL UEC0: Speed 100BT
63998     FSL UEC0: Link is up
63999     Using FSL UEC0 device
64001     Make this printout depend on UEC_VERBOSE_DEBUG and
64002     remove its definition in uec_phy.c
64004     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
64005     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
64007 commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
64008 Author: Kim Phillips <kim.phillips@freescale.com>
64009 Date:   Tue Jan 15 14:11:00 2008 -0600
64011     net: reduce boot latency on QE UEC based boards
64013     actually polling for PHY autonegotiation to finish enables us to remove the
64014     5 second boot prompt latency present on QE based boards.
64016     call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
64017     uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
64018     code shamelessly stolen from tsec driver.
64020     also rm unused CONFIG_RMII_MODE code.
64022     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64023     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
64024     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
64026 commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
64027 Author: michael.firth@bt.com <michael.firth@bt.com>
64028 Date:   Wed Jan 16 11:40:51 2008 +0000
64030     TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
64032     The current TSEC driver limits MDIO access to the devices that have been configured as attached
64033     to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
64035     Signed-off-by: Michael Firth <michael.firth@bt.com>
64036     Acked-by: Andy Fleming <afleming@freescale.com>
64037     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
64039 commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
64040 Author: Kim Phillips <kim.phillips@freescale.com>
64041 Date:   Wed Jan 16 00:38:05 2008 -0600
64043     Add support for the MPC837xERDB
64045     MPC837xERDB board support includes:
64046     * DDR2 330MHz hardcoded (soldered on the board)
64047     * Local Bus NOR Flash
64048     * I2C, UART and RTC
64049     * eTSEC RGMII (TSEC0 - RTL8211B with MII;
64050     *          TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
64051     *                  load)
64053     Signed-off-by: Kevin Lam <kevin.lam@freescale.com>
64054     Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
64055     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64057 commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
64058 Author: Kim Phillips <kim.phillips@freescale.com>
64059 Date:   Wed Jan 16 12:06:16 2008 -0600
64061     mpc83xx: add support for more system clock performance controls
64063     System registers that are modified are the Arbiter Configuration
64064     Register (ACR), the System Priority Control Register (SPCR), and the
64065     System Clock Configuration Register (SCCR).
64067     Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com>
64068     Signed-off by: Joe D'Abbraccio <ljd015@freescale.com>
64069     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64071 commit 16c3cde050e2d243e62b37486f1558570787beb8
64072 Author: James Yang <james.yang@freescale.com>
64073 Date:   Wed Jan 16 11:58:08 2008 -0600
64075     FSL: Generalize PIXIS reset command parsing.
64077     Before, the order of arguments to the pixis_reset
64078     command needed to be supplied in a hard-coded order.
64079     Generalize the command parsing to allow any order.
64081     Signed-off-by: James Yang <james.yang@freescale.com>
64082     Acked-by: Jon Loeliger <jdl@freescale.com>
64084 commit ad8f8687b78c3e917b173f038926695383c55555
64085 Author: Jon Loeliger <jdl@freescale.com>
64086 Date:   Tue Jan 15 13:42:41 2008 -0600
64088     FSL: Convert board/freescale/common/Makefile to use CONFIG_
64090     Convert the board/freescale/common/Makefile to use
64091     CONFIG_* options to select which files to conditionally
64092     compile into the board/freescale/common library rather
64093     than conditionally compiling entire files.
64095     Now handles::
64096         CONFIG_FSL_PIXIS
64097         CONFIG_FSL_DIU_FB
64098         CONFIG_PQ_MDS_PIB
64100     CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
64102     Signed-off-by: Jon Loeliger <jdl@freescale.com>
64104 commit 7c2221eb230372a9e537c4f6636b147b0909325f
64105 Author: Roy Zang <tie-fei.zang@freescale.com>
64106 Date:   Tue Jan 15 16:38:38 2008 +0800
64108     Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver
64110     Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver.
64111     Remove unused ethernet CONFIG_ options.
64113     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
64114     Acked-by: Jon Loeliger <jdl@freescale.com>
64116 commit 711a7946277d2e29af481011e8635e9975c54e45
64117 Author: Kim Phillips <kim.phillips@freescale.com>
64118 Date:   Tue Jan 15 14:05:14 2008 -0600
64120     mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value
64122     continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601
64124     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64126 commit 363eea9ff7f19a2cba17f262bd17559f166e134e
64127 Author: Kim Phillips <kim.phillips@freescale.com>
64128 Date:   Tue Jan 15 09:51:12 2008 -0600
64130     mpc83xx: clean up mpc8360emds.c warnings
64132     mpc8360emds.c: In function 'ft_board_setup':
64133     mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast
64134     mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
64135     mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
64136     mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast
64137     mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
64138     mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
64140     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64142 commit f09880ea72a1c806db223ce594c5fb1b6542ff6a
64143 Author: Kim Phillips <kim.phillips@freescale.com>
64144 Date:   Mon Jan 14 16:14:46 2008 -0600
64146     mpc83xx: fix phy-connection-type fixup code
64148     use tree passed to us in local blob, not global fdt.
64150     Also use fdt_path_offset to convert to relative offset, since absolute
64151     reference is needed to check for rgmii-id mode string value.
64153     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64155 commit 2b4c952be7c4357a13e839d48df80853820c33eb
64156 Author: Kumar Gala <galak@kernel.crashing.org>
64157 Date:   Mon Jan 14 09:01:40 2008 -0600
64159     mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
64161     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
64162     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64164 commit e1d8ed2c08da14b168658cc5fa78529d461aea70
64165 Author: Poonam Aggrwal <b10812@freescale.com>
64166 Date:   Mon Jan 14 09:41:14 2008 +0530
64168     Changes in uboot DDR configuration for MPC8313eRDB
64170     These changes were identified by HighSmith Bill ,Mazzyar and Joseph for
64171     DDR configuration in u-boot code. Some are related to performance, some
64172     affect stability and some correct few basic errors in the current
64173     configuration.
64175     The changes have been tested and found to give better memory latency
64176     figures on MPC8313eRDB.LMBench figures prove it.
64178     The changes are:
64180     - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0
64181       (this may improve performance for application with many read
64182       or write to open pages).
64183     - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to
64184       001 (activating all the CS when only one is used may cause
64185       unwanted noise on the system)
64187     - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on
64188       Tras=45ns)
64189     - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks.
64191     - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to
64192       comply with the 3 ODT clk requirements)
64193     - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4.
64194     - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks.
64196     - DDR_SDRAM_MODE[AL]changed from 0 to 1.
64197     - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks.
64199     - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510.
64200     - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500.
64202     The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git
64203     The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf
64205     Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com>
64206     Cc: Bill HighSmith <Bill.Highsmith@freescale.com>
64207     Cc: Razzaz Mazyar <MRazzaz@freescale.com>
64208     Cc: Josep P J <PJ.Joseph@freescale.com>
64209     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64211 commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95
64212 Author: Jerry Van Baren <gvb.uboot@gmail.com>
64213 Date:   Sat Jan 12 13:24:14 2008 -0500
64215     Enable the isdram command on the MPC8360EMDS board
64217     The isdram command prints out decoded information the "serial presence
64218     detect" (SPD) chip on the SDRAM SIMMs.  This can be very helpful when
64219     debugging memory configuration problems.
64221     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
64222     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64224 commit 8bd522ce4afda3d4868ee8c913f5394094326be1
64225 Author: Dave Liu <r63238@freescale.com>
64226 Date:   Fri Jan 11 18:48:24 2008 +0800
64228     mpc83xx: Add the support for MPC8315ERDB board
64230     The features list:
64231     - Boot from NOR Flash
64232     - DDR2 266MHz hardcoded configuration
64233     - Local bus NOR Flash R/W operation
64234     - I2C, UART, MII and RTC
64235     - eTSEC0/1 support
64236     - PCI host
64238     Signed-off-by: Dave Liu <daveliu@freescale.com>
64239     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64241 commit b05884efa614e4d8a9413158fc228e0dc02ab704
64242 Author: Dave Liu <r63238@freescale.com>
64243 Date:   Fri Jan 11 18:46:50 2008 +0800
64245     mpc83xx: Add config of eTSEC emergency priority in SPCR
64247     The TSEC emergency priority definition of 831x/837x
64248     is different than the definition of 834x in SPCR register.
64250     Add the other config of TSEC emergency priority into
64251     cpu_init.c
64253     Signed-off-by: Dave Liu <daveliu@freescale.com>
64254     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64256 commit 9b958234b0783f13d92f007f753fd2c3ae2c8680
64257 Author: Dave Liu <r63238@freescale.com>
64258 Date:   Fri Jan 11 18:42:19 2008 +0800
64260     mpc83xx: Remove cache config from MPC8360ERDK.h
64262     The MPC8360ERDK board support patch is added before
64263     the commit 2c5b48fc205c3e2752910da8f39209ed075929e5
64264     so, miss clean up it.
64266     The patch clean up the miss cache config.
64268     Signed-off-by: Dave Liu <daveliu@freescale.com>
64269     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64271 commit cd9d23053d435c08fc8695017b5cb9003fcda786
64272 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
64273 Date:   Mon Jan 14 23:09:32 2008 +0300
64275     nand: FSL UPM NAND driver
64277     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
64279 commit 6cb2239ae76faee64434286c4f8fc71374702dd2
64280 Author: Kyungmin Park <kmpark@infradead.org>
64281 Date:   Tue Jan 15 08:59:44 2008 +0900
64283     OneNAND: Separate U-Boot dependent code from OneNAND
64285     OneNAND: Separate U-Boot dependent code from OneNAND
64287     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
64289 commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164
64290 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64291 Date:   Wed Jan 16 10:33:46 2008 +0100
64293     ppc4xx: Sequoia coding style cleanup and beautification
64295     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64297 commit 4b3cc6ece9c455504cf12909fae38d085d848ac0
64298 Author: Larry Johnson <lrj@acm.org>
64299 Date:   Tue Jan 15 14:35:58 2008 -0500
64301     ppc4xx: Refactor ECC POST for AMCC Denali core
64303     The ECC POST reported intermittent failures running after power-up on
64304     the Korat PPC440EPx board.  Even when the test passed, the debugging
64305     output occasionally reported additional unexpected ECC errors.
64307     This refactoring has three main objectives: (1) minimize the code
64308     executed with ECC enabled during the tests, (2) add more checking of the
64309     results so any unexpected ECC errors would cause the test to fail, and
64310     (3) use synchronization (only) where required by the processor.
64312     Signed-off-by: Larry Johnson <lrj@acm.org>
64314 commit 2465665b73ac2f688af945b1ed510752afa816a4
64315 Author: David Saada <David.Saada@ecitele.com>
64316 Date:   Tue Jan 15 10:40:24 2008 +0200
64318     QE UEC: Extend number of supported UECs to 4
64320     This patch extends the number of supported UECs to 4. Note that the
64321     problem of QE thread resources exhaustion is resolved by setting the
64322     correct number of QE threads according to Ethernet type (GBE or FE).
64324     Signed-off-by: David Saada <david.saada@ecitele.com>
64325     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
64327 commit 58d204256cb1ce1bd323847d9f644acf70a72e6a
64328 Author: Wolfgang Denk <wd@denx.de>
64329 Date:   Wed Jan 16 00:01:01 2008 +0100
64331     LWMON5: enable hush shell as command line parser
64333     Signed-off-by: Wolfgang Denk <wd@denx.de>
64335 commit 66ffb1883feedddc813d8a507d060f2a940eb2b2
64336 Author: Wolfgang Denk <wd@denx.de>
64337 Date:   Tue Jan 15 17:22:28 2008 +0100
64339     ADS5121: disable watchdog; enable image timestamps
64341     Signed-off-by: Wolfgang Denk <wd@denx.de>
64343 commit 2b4f778fe9d1de61d7445bae7b325340aba6968d
64344 Author: Wolfgang Denk <wd@denx.de>
64345 Date:   Tue Jan 15 17:21:28 2008 +0100
64347     TK885D: fixes for bigger flash sector sizes on new modules;
64348     adjust default environment;
64349     disable SCC ethernet (not used on this board).
64351     Signed-off-by: Wolfgang Denk <wd@denx.de>
64353 commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607
64354 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64355 Date:   Tue Jan 15 17:48:13 2008 +0900
64357     pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver
64359     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64361 commit 76e49aa7fb8e76cc49092c1acd53fff921e26360
64362 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64363 Date:   Tue Jan 15 23:25:25 2008 +0900
64365     sh: Add support SH7710/SH7712
64367     SH7710/SH7712 of SH3 CPU are supported.
64368     SH771X is called SH-Ether, and has the Ether controller in CPU.
64369     The driver of Ether is not included in this patch.
64371     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64373 commit 63a11be68306870e04d3851ed9fa41955cdf4894
64374 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64375 Date:   Tue Jan 15 23:06:17 2008 +0900
64377     sh: Add support of map_physmem() and unmap_physmem() to SuperH
64379     This patch add the support of map_physmem() and unmap_physmem()
64380     used with Common Flash Interface(CFI) driver.
64382     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64384 commit db3995fe5164ac5d630b7ecb96286a9828dfbb54
64385 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64386 Date:   Wed Jan 9 14:42:27 2008 +0900
64388     sh: Add maintainer of MS7720SE to the MAINTAINER file
64390     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64392 commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3
64393 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64394 Date:   Wed Jan 9 14:39:58 2008 +0900
64396     sh: Fix board name in MS7720SE's config.mk
64398     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64400 commit c0a04d93734d768b39dbb72fb501b65614c8615d
64401 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64402 Date:   Wed Jan 9 14:37:36 2008 +0900
64404     sh: Add MS7720SE to MAKEALL
64406     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64408 commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae
64409 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
64410 Date:   Mon Dec 3 22:58:50 2007 +0900
64412     sh: Add support for MS7720RP02 board
64414     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
64415     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64416     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64418 commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed
64419 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
64420 Date:   Wed Jan 9 14:30:02 2008 +0900
64422     sh: Add support for SH7720 in serial_sh driver.
64424     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
64425     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64426     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64428 commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403
64429 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
64430 Date:   Mon Dec 3 22:58:45 2007 +0900
64432     sh: Add support SH3 and SH7720
64434     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
64435     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64436     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64438 commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd
64439 Author: Stefan Roese <sr@denx.de>
64440 Date:   Tue Jan 15 10:11:02 2008 +0100
64442     ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c
64444     Signed-off-by: Stefan Roese <sr@denx.de>
64446 commit 17bef68097ab3692500a36fb31115bff7910aa99
64447 Author: Niklaus Giger <niklausgiger@gmx.ch>
64448 Date:   Mon Jan 14 14:04:42 2008 +0100
64450     ppc_4xx: Fix post spr.c for PPC405
64452     post/cpu/ppc4xx/spr.c contained a few checks for registers only present
64453     for PPC440 and derivates processor.
64455     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
64457 commit 06c428bcd4413014b43236e77765022071424fa6
64458 Author: Dave Liu <r63238@freescale.com>
64459 Date:   Mon Jan 14 11:12:01 2008 +0800
64461     QE: fix compile warning
64463     qe.c: In function 'qe_upload_firmware':
64464     qe.c:390: warning: pointer targets in passing argument 2
64465     uec.c: In function 'uec_initialize':
64466     uec.c:1236: warning: 'uec_info' may be used uninitialized
64468     Signed-off-by: Dave Liu <daveliu@freescale.com>
64470 commit a0dd99d51efa55fe023e19c97ead92683725eb11
64471 Author: Stefan Roese <sr@denx.de>
64472 Date:   Mon Jan 14 10:05:05 2008 +0100
64474     ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit
64476     Now that bit 29 is the USB PHY reset bit, update the Kilauea port
64477     to remove the USB PHY reset after powerup. The CPLD will keep the
64478     USB PHY in reset (active low) until the bit is set to 1 in
64479     board_early_init_f().
64481     Signed-off-by: Stefan Roese <sr@denx.de>
64483 commit f43ad53908f1ea83a7c26c3505bbe84382e47aad
64484 Author: Wolfgang Denk <wd@denx.de>
64485 Date:   Sun Jan 13 23:26:45 2008 +0100
64487     ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree
64489     Signed-off-by: Wolfgang Denk <wd@denx.de>
64491 commit 8d103071b7b0e3ec888859bfcb9d422565e6d750
64492 Author: Wolfgang Denk <wd@denx.de>
64493 Date:   Sun Jan 13 23:37:50 2008 +0100
64495     ADS5121: Fix typo in ads5121.c, adjust default environment
64497     Signed-off-by: Wolfgang Denk <wd@denx.de>
64499 commit 51b67d06faa670c65de6f29ec5b5aace74b2a047
64500 Author: John Rigby <jrigby@freescale.com>
64501 Date:   Fri Aug 24 18:18:43 2007 -0600
64503     ADS5121: MAX slew rate for PATA pins
64505     Signed-off-by: John Rigby <jrigby@freescale.com>
64507 commit dd531aac34aaad138f16cacdb51d61908d59c0e2
64508 Author: Wolfgang Denk <wd@denx.de>
64509 Date:   Sun Jan 13 21:05:52 2008 +0100
64511     Fix Makefile dependency problem with parallel builds.
64513     Signed-off-by: Wolfgang Denk <wd@denx.de>
64515 commit 89967841e3ea02e3d0e5e1295ab687576e5b1089
64516 Author: Wolfgang Denk <wd@denx.de>
64517 Date:   Sun Jan 13 19:51:39 2008 +0100
64519     MPC8544DS: fix board Makefile for silent build (with -s)
64521     Signed-off-by: Wolfgang Denk <wd@denx.de>
64523 commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88
64524 Author: Wolfgang Denk <wd@denx.de>
64525 Date:   Sun Jan 13 16:44:08 2008 +0100
64527     PMC440 board: fix board Makefile for out-of-tree building
64529     Signed-off-by: Wolfgang Denk <wd@denx.de>
64531 commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2
64532 Author: Wolfgang Denk <wd@denx.de>
64533 Date:   Sun Jan 13 16:07:44 2008 +0100
64535     Makalu: fix compile warning
64537     Signed-off-by: Wolfgang Denk <wd@denx.de>
64539 commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0
64540 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64541 Date:   Sun Jan 13 12:36:12 2008 +0100
64543     cmd_nand : fix compiler warning.
64545     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64547 commit 8225d1e3ac0ab147cdde4b0042812583380afb8a
64548 Author: Michael Schwingen <rincewind@discworld.dascon.de>
64549 Date:   Sat Jan 12 20:29:47 2008 +0100
64551     CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation
64553     Signed-off-by: Michael Schwingen <michael@schwingen.org>
64554     Acked-by: Stefan Roese <sr@denx.de>
64556 commit 2b2f43ed6a30ece77f76191c845ac95267daa31a
64557 Author: Wolfgang Denk <wd@denx.de>
64558 Date:   Sun Jan 13 02:19:44 2008 +0100
64560     MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES
64562     Signed-off-by: Wolfgang Denk <wd@denx.de>
64564 commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d
64565 Author: Wolfgang Denk <wd@denx.de>
64566 Date:   Sun Jan 13 02:19:13 2008 +0100
64568     MPC8xx FEC driver: fix compiler warning.
64570     Signed-off-by: Wolfgang Denk <wd@denx.de>
64572 commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b
64573 Author: Wolfgang Denk <wd@denx.de>
64574 Date:   Sun Jan 13 00:59:21 2008 +0100
64576     Fix Makefile dependencies issues; allow silent build
64578     - get rid of "version" target whichdidn't really work
64579     - make autoconf.mk depend on version_autogenerated.h to make sure
64580       to rebuild files as needed
64581     - add XECHO macro to allow for silent build using "make -s"
64583     Signed-off-by: Wolfgang Denk <wd@denx.de>
64585 commit e343ab83d5135b558aa58db9be8fc7faa68d77ed
64586 Author: Wolfgang Denk <wd@denx.de>
64587 Date:   Sun Jan 13 00:55:47 2008 +0100
64589     ADS5121e: fix compile warning
64591     Signed-off-by: Wolfgang Denk <wd@denx.de>
64593 commit f2b6f4610627fe3d607620e25082916a01538875
64594 Author: Wolfgang Denk <wd@denx.de>
64595 Date:   Sun Jan 13 00:55:18 2008 +0100
64597     MUNICes: fix board Makefile for remote build directory
64599     Signed-off-by: Wolfgang Denk <wd@denx.de>
64601 commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a
64602 Author: Oliver Weber <almoeli@gmx.de>
64603 Date:   Wed Jan 9 17:04:38 2008 +0100
64605     MPC5200: don't use hardcoded MBAR address in Bestcomm firmware
64607     Signed-off-by: Oliver Weber <almoeli@gmx.de>
64609 commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f
64610 Author: Andreas Engel <andreas.engel@ericsson.com>
64611 Date:   Wed Jan 9 17:10:56 2008 +0100
64613     Make bootretry work when command line editing is enabled
64615     Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work.
64616     This patch fixes the problem.
64618     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
64620 commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4
64621 Author: Larry Johnson <lrj@acm.org>
64622 Date:   Fri Jan 11 23:26:18 2008 -0500
64624     Refactor code for "i2c sdram" command
64626     Signed-off-by: Larry Johnson <lrj@acm.org>
64628 commit 0df6b8446c4721b91ce311548114891130371083
64629 Author: Larry Johnson <lrj@acm.org>
64630 Date:   Thu Jan 10 22:23:39 2008 -0500
64632     Fix "i2c sdram" command for DDR2 DIMMs
64634     Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the
64635     "i2c sdram" command.  This patch provides correct alternative
64636     interpretations when DDR2 memory is detected.
64638     Signed-off-by: Larry Johnson <lrj@acm.org>
64640 commit 64134f011254123618798ff77c42ba196b2ec485
64641 Author: Wolfgang Denk <wd@denx.de>
64642 Date:   Sat Jan 12 20:31:39 2008 +0100
64644     Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
64646     With recent toolchain versions, some boards would not build because
64647     or errors like this one (here for ocotea board when building with
64648     ELDK 4.2 beta):
64649     ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
64651     For many boards, the .bss section is big enough that it wraps around
64652     at the end of the address space (0xFFFFFFFF), so the problem will not
64653     be visible unless you use a 64 bit tool chain for development. On
64654     some boards however, changes to the code size (due to different
64655     optimizations) we bail out with section overlaps like above.
64657     The fix is to add the NOLOAD attribute to the .bss and .sbss
64658     sections, telling the linker that .bss does not consume any space in
64659     the image.
64661     Signed-off-by: Wolfgang Denk <wd@denx.de>
64663 commit 3afac79ec27b91df185f090b31dad9620779f440
64664 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
64665 Date:   Fri Jan 11 20:42:58 2008 -0600
64667     USB: Add Philips 1561 PCI-OHCI ids
64668     (needed for M5475EVB)
64670     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
64672 commit 5e8def6731cd7bec74bff42a16b139de04010353
64673 Author: Wolfgang Denk <wd@denx.de>
64674 Date:   Sat Jan 12 15:51:34 2008 +0100
64676     Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101
64677     boards.
64679     Signed-off-by: Heiko Schocher <hs@denx.de>
64680     Signed-off-by: Wolfgang Denk <wd@denx.de>
64682 commit 5d49e0e152a8b81cc0602271e8fd259371f559b7
64683 Author: Grzegorz Bernacki <gjb@semihalf.com>
64684 Date:   Fri Jan 11 12:03:43 2008 +0100
64686     MPC512X: Cleanup bus clock names.
64688     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
64690 commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d
64691 Author: Grzegorz Bernacki <gjb@semihalf.com>
64692 Date:   Tue Jan 8 17:16:59 2008 +0100
64694     MPC512X: Fixed typo in macro name.
64696     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
64698 commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363
64699 Author: Grzegorz Bernacki <gjb@semihalf.com>
64700 Date:   Tue Jan 8 17:16:15 2008 +0100
64702     ads5121: Added support for FDT.
64704     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
64706 commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719
64707 Author: Wolfgang Denk <wd@denx.de>
64708 Date:   Sat Jan 12 01:05:50 2008 +0100
64710     Coding Style cleanup; update CHANGELOG.
64712     Signed-off-by: Wolfgang Denk <wd@denx.de>
64714 commit f6db945649e5e9d0c7efe33b507d243cdc86cf03
64715 Author: Heiko Schocher <hs@denx.de>
64716 Date:   Fri Jan 11 15:15:17 2008 +0100
64718     Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
64720     Signed-off-by: Timur Tabi <timur@freescale.com>
64721     Signed-off-by: Heiko Schocher <hs@denx.de>
64723 commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c
64724 Author: Heiko Schocher <hs@denx.de>
64725 Date:   Fri Jan 11 15:15:16 2008 +0100
64727     MUNICes: Set the right CFG_DEFAULT_MBAR value.
64729     Signed-off-by: Heiko Schocher <hs@denx.de>
64731 commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2
64732 Author: Heiko Schocher <hs@denx.de>
64733 Date:   Fri Jan 11 15:15:15 2008 +0100
64735     added the config File for the MUNICes board.
64737     Signed-off-by: Heiko Schocher <hs@denx.de>
64739 commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d
64740 Author: Heiko Schocher <hs@denx.de>
64741 Date:   Fri Jan 11 15:15:14 2008 +0100
64743     added basic support for the MUNICes board.
64745     Signed-off-by: Heiko Schocher <hs@denx.de>
64747 commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19
64748 Author: Wolfgang Denk <wd@denx.de>
64749 Date:   Sat Jan 12 00:39:37 2008 +0100
64751     Update CHANGELOG and MAINTAINERS files.
64753     Signed-off-by: Wolfgang Denk <wd@denx.de>
64755 commit 5ba7390c3cb579172be66888a371707b47b5be4e
64756 Author: Anatolij Gustschin <agust@denx.de>
64757 Date:   Fri Jan 11 02:15:02 2008 +0100
64759     Fix compilation problem in common/cmd_bmp.c
64761     common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP
64762     isn't defined. This patch fix this.
64764     Signed-off-by: Anatolij Gustschin <agust@denx.de>
64766 commit 5aa437baae5fe629abeab99bef793a2a1fc71b58
64767 Author: Heiko Schocher <hs@denx.de>
64768 Date:   Fri Jan 11 01:12:09 2008 +0100
64770     Fix defaultconfig for the mgcoge board.
64772     Signed-off-by: Heiko Schocher <hs@denx.de>
64774 commit ac9db066b26935f31bff15c98168b19faeb603f3
64775 Author: Heiko Schocher <hs@denx.de>
64776 Date:   Fri Jan 11 01:12:08 2008 +0100
64778     Added support for the mgcoge board from keymile.
64780     Signed-off-by: Heiko Schocher <hs@denx.de>
64782 commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818
64783 Author: Heiko Schocher <hs@denx.de>
64784 Date:   Fri Jan 11 01:12:07 2008 +0100
64786     Enable SMC microcode relocation patch for SMC1.
64788     Signed-off-by: Heiko Schocher <hs@denx.de>
64790 commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7
64791 Author: Heiko Schocher <hs@denx.de>
64792 Date:   Fri Jan 11 01:12:06 2008 +0100
64794     Added support for the mgsuvd board from keymile.
64796     Signed-off-by: Heiko Schocher <hs@denx.de>
64798 commit bf05293973b348f6946c9df92cd3c65ece42d0be
64799 Author: James Yang <james.yang@freescale.com>
64800 Date:   Thu Jan 10 16:02:07 2008 -0600
64802     Fix 64-bit vsprintf.
64804     There were some size and unsigned problems.
64805     Also add support for "ll" size modifier in format string like glibc
64807     Signed-off-by: James Yang <James.Yang@freescale.com>
64808     Acked-by: Jon Loeliger <jdl@freescale.com>
64810 commit 92fa37eac530860643afa26ae347af3d23d67309
64811 Author: Larry Johnson <lrj@acm.org>
64812 Date:   Wed Jan 9 12:42:35 2008 -0500
64814     Remove superfluous preprocessor conditionals from LM73 driver
64816     (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
64818     (2) Use conditional Makefile.o.
64820     Signed-off-by: Larry Johnson <lrj@acm.org>
64822 commit efc6f447c1b940d1650c4b854c5598a595ddc3da
64823 Author: Guennadi Liakhovetski <lg@denx.de>
64824 Date:   Thu Jan 10 17:59:07 2008 +0100
64826     Add support for the TK885D baseboard from TELE-DATA
64828     The TK885D board uses a TQM885D module from TQ, this port adds an
64829     own configuration file and adds a last_stage_init() method to
64830     configure the two PHYs, depending on the phy_auto_nego environment
64831     variable.
64833     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
64835 commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89
64836 Author: Kumar Gala <galak@kernel.crashing.org>
64837 Date:   Thu Jan 10 02:22:05 2008 -0600
64839     Fix compiler warning
64841     main.c: In function 'readline_into_buffer':
64842     main.c:927: warning: unused variable 'p_buf'
64844     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
64846 commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
64847 Author: Anatolij Gustschin <agust@denx.de>
64848 Date:   Fri Jan 11 14:30:01 2008 +0100
64850     Add Fujitsu CoralP/Lime video driver
64852     Signed-off-by: Anatolij Gustschin <agust@denx.de>
64853     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
64855 commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058
64856 Author: Anatolij Gustschin <agust@denx.de>
64857 Date:   Fri Jan 11 02:39:47 2008 +0100
64859     Fix video console newline and carriage return handling
64861     Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS
64862     are not displayed correctly. This is an attempt to fix
64863     this issue. Also add carriage return handling.
64865     Signed-off-by: Anatolij Gustschin <agust@denx.de>
64866     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
64868 commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093
64869 Author: Stefan Roese <sr@denx.de>
64870 Date:   Fri Jan 11 15:53:58 2008 +0100
64872     ppc4xx: Fix sdram init on Sequoia boards
64874     Clear possible errors in MCSR resulting from data-eye-search.
64875     If not done, then we could get an interrupt later on when
64876     exceptions are enabled.
64878     Signed-off-by: Stefan Roese <sr@denx.de>
64880 commit d610a60730b7464f6f659db49d264d89a7c71061
64881 Author: Anatolij Gustschin <agust@denx.de>
64882 Date:   Fri Jan 11 15:31:09 2008 +0100
64884     ppc4xx: Rework Lime support for lwmon5
64886     Rework Lime support for lwmon5 using new video driver
64888     Signed-off-by: Anatolij Gustschin <agust@denx.de>
64890 commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0
64891 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64892 Date:   Fri Jan 11 14:55:16 2008 +0100
64894     ppc4xx: Update PMC440 config file
64896     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64898 commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea
64899 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64900 Date:   Fri Jan 11 14:55:08 2008 +0100
64902     ppx4xx: Fix sdram init on PMC440 boards
64904     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64906 commit 061aad4d320dddce26247699dcf2875ee2ea1366
64907 Author: Dave Liu <r63238@freescale.com>
64908 Date:   Thu Jan 10 23:09:33 2008 +0800
64910     mpc83xx: Fix the bug of 266MHz data rate DDR
64912     The DDR doesn't work on the 266MHz data rate,
64913     the patch fix the bug.
64915     Signed-off-by: Dave Liu <daveliu@freescale.com>
64916     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64918 commit ded08317ad9e340b887bf2eb46e9565a0f610a93
64919 Author: Dave Liu <r63238@freescale.com>
64920 Date:   Thu Jan 10 23:08:26 2008 +0800
64922     mpc83xx: Make the code more readable
64924     Format the code, make it more readable
64926     Signed-off-by: Dave Liu <daveliu@freescale.com>
64927     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64929 commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0
64930 Author: Dave Liu <r63238@freescale.com>
64931 Date:   Thu Jan 10 23:07:23 2008 +0800
64933     mpc83xx: Reduce the latency of DDR
64935     Reduce the AL from 2 to 1 clock to improve the performance.
64937     Signed-off-by: Dave Liu <daveliu@freescale.com>
64938     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64940 commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28
64941 Author: Dave Liu <r63238@freescale.com>
64942 Date:   Thu Jan 10 23:06:05 2008 +0800
64944     mpc83xx: Fix the wrong definition of MPC8315E
64946     According to the latest user manual of MPC8315E,
64947     1) The SVCOD of HRCWL is different than 837x
64948     2) The SCCR has changes
64950     Signed-off-by: Dave Liu <daveliu@freescale.com>
64951     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64953 commit ec2638ea08a537a1bd409db873aaaa33a053ebae
64954 Author: Dave Liu <r63238@freescale.com>
64955 Date:   Thu Jan 10 23:05:00 2008 +0800
64957     mpc83xx: Fix the typo in mpc83xx.h
64959     The SPCR about TSEC priority is wrong.
64961     Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
64962     Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
64963     Signed-off-by: Dave Liu <daveliu@freescale.com>
64964     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64966 commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b
64967 Author: Dave Liu <r63238@freescale.com>
64968 Date:   Thu Jan 10 23:04:13 2008 +0800
64970     mpc83xx: Fix the typo in global data struct
64972     Fix the typo in global_data.h
64974     Signed-off-by: Dave Liu <daveliu@freescale.com>
64975     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64977 commit 2c5b48fc205c3e2752910da8f39209ed075929e5
64978 Author: Dave Liu <r63238@freescale.com>
64979 Date:   Thu Jan 10 23:03:03 2008 +0800
64981     mpc83xx: Remove cache config from config.h
64983     clean up the cache config from configs.h of board
64985     Signed-off-by: Dave Liu <daveliu@freescale.com>
64986     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64988 commit fab6f556bbbbd1bb35a5433161f7f173c18df559
64989 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
64990 Date:   Wed Jan 9 20:57:47 2008 +0300
64992     mpc83xx: add support for the MPC8360E-RDK
64994     This is MPC8360E based board with:
64995     - 256MB fixed SDRAM;
64996     - 8MB Intel Strata NOR flash;
64997     - StMICRO 64MiB NAND flash;
64998     - two 10/100/1000 ethernet ports connected via Broadcom
64999       BCM5481 PHYs;
65000     - two 10/100 ethernet ports connected via National
65001       DP83848 PHYs;
65002     - one PCI and one miniPCI slots;
65003     - four serial ports (two NS16550-compatible, two UCCs);
65004     - four USB ports working through MPC8360E "FHCI" USB controller;
65005     - Fujitsu MB86277 graphics controller;
65006     - Analog to Digital Converter/Touchscreen controller, AD7843
65007       connected to SPI.
65009     Features not supported in this patch are:
65010     - StMICRO 64MiB NAND flash (patch sent);
65011     - MINT framebuffer initialization (patch is pending);
65012     - Fetching production information from the EEPROM via I2C;
65013     - FHCI USB;
65014     - Two slow UCCs used as RS-485 UARTs.
65016     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
65017     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65019 commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb
65020 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
65021 Date:   Wed Jan 9 20:57:40 2008 +0300
65023     mpc83xx: add "fsl, qe" compatible fixups
65025     New device trees will use "fsl,qe" compatible properties.
65027     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
65028     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65030 commit 977b57583a7c34010e566a09a679ec3c1836f996
65031 Author: Kim Phillips <kim.phillips@freescale.com>
65032 Date:   Wed Jan 9 15:24:06 2008 -0600
65034     mpc83xx: add missing CONFIG_HAS_ETH0 defines
65036     the new libfdt code only updates eth0 if CONFIG_HAS_ETH0
65037     is defined; add the define to the missing board configs.
65039     Thanks to Emilian Medve for finding this.
65041     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65043 commit b830b7f1635984ba607219fcbd78597c28eeb529
65044 Author: Becky Bruce <bgill@freescale.com>
65045 Date:   Thu Jan 10 14:00:28 2008 -0600
65047     86xx: Support 2GB DIMMs
65049     Configure the number of bits used to address the banks inside the SDRAM
65050     device.  The default register value of 0 means 2 bits to address 4 banks.
65051     Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks.
65053     Signed-off-by: Becky Bruce <bgill@freescale.com>
65055 commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
65056 Author: Niklaus Giger <niklausgiger@gmx.ch>
65057 Date:   Thu Jan 10 18:50:33 2008 +0100
65059     ppc4xx: Make Sequoia boot vxWorks
65061     vxWorks expects in
65062     TLB 0 a entry for the Machine Check interrupt
65063     TLB 1 a entry for the RAM
65064     TLB 2 a entry for the EBC
65065     TLB 3 a entry for the boot flash
65067     After changing the baudrate to 9600 I had no problems to boot the
65068     vxWorks image as distributed by WindRiver (Revision 2.0/1 from
65069     June 18, 2007)
65071     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
65073 commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d
65074 Author: Larry Johnson <lrj@arlinx.com>
65075 Date:   Wed Jan 9 23:10:27 2008 -0500
65077     ppc4xx: Fix dflush() to restore DVLIM register
65079     Signed-off-by: Larry Johnson <lrj@acm.org>
65081 commit 252f60b068d1f94190b5bcfda169db582387e15e
65082 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65083 Date:   Thu Jan 10 03:52:44 2008 -0500
65085     Nios2: remove common/cmd_bdinfo.c unused variable.
65087     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65088     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
65090 commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c
65091 Author: Ben Warren <biggerbadderben@gmail.com>
65092 Date:   Wed Jan 9 18:15:53 2008 -0500
65094     Fix Ethernet init() return codes
65096     Change return values of init() functions in all Ethernet drivers to conform
65097     to the following:
65099         >=0: Success
65100         <0:  Failure
65102     All drivers going forward should return 0 on success.  Current drivers that
65103     return 1 on success were left as-is to minimize changes.
65105     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
65106     Acked-by: Stefan Roese <sr@denx.de>
65107     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65108     Acked-by: Kim Phillips <kim.phillips@freescale.com>
65109     Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65110     Acked-By: Timur Tabi <timur@freescale.com>
65112 commit d3a6532cbe263d992f49e86ac95bede28e96f9c8
65113 Author: Wolfgang Denk <wd@denx.de>
65114 Date:   Thu Jan 10 00:55:14 2008 +0100
65116     Coding Style cleanup; update CHANGELOG
65118     Signed-off-by: Wolfgang Denk <wd@denx.de>
65120 commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7
65121 Author: Kim Phillips <kim.phillips@freescale.com>
65122 Date:   Wed Jan 9 16:56:54 2008 -0600
65124     Add QE brg freq and correct qe bus freq fdt update code
65126     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65127     Signed-off-by: Andy Fleming <afleming@freescale.com>
65129 commit 890dfef06c2d169a3356359596890754dfb8ee1c
65130 Author: Andy Fleming <afleming@freescale.com>
65131 Date:   Wed Jan 9 16:34:51 2008 -0600
65133     Remove cache config from ATUM8548 and sbc8548 configs
65135     These boards weren't updated by Kumar's config patch because they
65136     weren't in the tree, yet.
65138     Signed-off-by: Andy Fleming <afleming@freescale.com>
65140 commit b8ec2385038c094b07ec5b49336289a46b6e9cc6
65141 Author: Timur Tabi <timur@freescale.com>
65142 Date:   Mon Jan 7 13:31:19 2008 -0600
65144     85xx: add ability to upload QE firmware
65146     Define the layout of a binary blob that contains a QE firmware and instructions
65147     on how to upload it.  Add function qe_upload_firmware() to parse the blob and
65148     perform the actual upload.  Add command-line command "qe fw" to take a firmware
65149     blob in memory and upload it.  Update ft_cpu_setup() on 85xx to create the
65150     'firmware' device tree node if U-Boot has uploaded a firmware.  Fully define
65151     'struct rsp' in immap_qe.h to include the actual RISC Special Registers.
65153     Signed-off-by: Timur Tabi <timur@freescale.com>
65155 commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe
65156 Author: Kumar Gala <galak@kernel.crashing.org>
65157 Date:   Tue Jan 8 01:22:21 2008 -0600
65159     85xx: Remove cache config from configs.h
65161     Either use the standard defines in asm/cache.h or grab the information
65162     at runtime from the L1CFG SPR.
65164     Also, minor cleanup in cache.h to make the code a bit more readable.
65166     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
65168 commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96
65169 Author: robert lazarski <robertlazarski@gmail.com>
65170 Date:   Fri Dec 21 10:39:27 2007 -0500
65172     mpc85xx: Add support for ATUM8548 (updated)
65174     Add support for Instituto Atlantico's ATUM8548 board
65176     Signed-off-by: robert lazarski <robertlazarski@gmail.com>
65177     Signed-off-by: Andy Fleming <afleming@freescale.com>
65179 commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc
65180 Author: robert lazarski <robertlazarski@gmail.com>
65181 Date:   Fri Dec 21 10:36:37 2007 -0500
65183     mpc85xx: Add support for ATUM8548 (updated)
65185     Add support for Instituto Atlantico's ATUM8548 board
65187     Signed-off-by: robert lazarski <robertlazarski@gmail.com>
65189 commit 9e3ed392d2c8965e24c942b58796c31c644c2f70
65190 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
65191 Date:   Thu Dec 13 06:45:14 2007 -0600
65193     mpc85xx: Add support for SBC8548 (updated)
65195     Add support for Wind River's SBC8548 reference board.
65197     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
65199 commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586
65200 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
65201 Date:   Thu Dec 13 06:45:08 2007 -0600
65203     mpc85xx: Add support for SBC8548 (updated)
65205     Add support for Wind River's SBC8548 reference board.
65207     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
65208     Signed-off by: Andy Fleming <afleming@freescale.com>
65210 commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594
65211 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
65212 Date:   Mon Oct 22 19:58:19 2007 +0400
65214     MPC8568E-MDS: set up QE pario for UART1
65216     To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should
65217     be set up appropriately.
65219     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
65221 commit ad162249cb371e9e38971676f09be791e5f3cf4a
65222 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
65223 Date:   Mon Oct 22 18:12:46 2007 +0400
65225     MPC8568E-MDS: reset UCCs to use them reliably
65227     In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset
65228     UCCs.
65230     p.s Similar code exists in the Linux kernel board file (for capability
65231     reasons with older U-Boots), but should be removed some day.
65233     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
65235 commit 2146cf56821c3364786ca94a7306008c5824b238
65236 Author: Kumar Gala <galak@kernel.crashing.org>
65237 Date:   Wed Dec 19 01:18:15 2007 -0600
65239     Reworked FSL Book-E TLB macros to be more readable
65241     The old macros made it difficult to know what WIMGE and perm bits
65242     were set for a TLB entry.  Actually use the bit masks for these items
65243     since they are only a single bit.
65245     Also moved the macros into mmu.h out of e500.h since they aren't specific
65246     to e500.
65248     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
65250 commit 1d47273d46925929f8f2c1913cd96d7257aade88
65251 Author: Kumar Gala <galak@kernel.crashing.org>
65252 Date:   Tue Dec 18 23:21:51 2007 -0600
65254     Use FSL Book-E MMU macros from Linux Kernel
65256     Grab the FSL Book-E MAS register macros from Linux.  Also added
65257     defines for page sizes up to 4TB and removed SHAREN since it doesnt
65258     really exist.
65260     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
65262 commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37
65263 Author: Andy Fleming <afleming@freescale.com>
65264 Date:   Wed Jan 9 13:51:32 2008 -0600
65266     Fix my own merge stupidity
65268     Way back in August I merged Heiko's patch:
65269     566a494f592: [PCS440EP] upgrade the PCS440EP board
65271     with Jon's CONFIG_COMMANDS patches.
65273     This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78
65275     However, in the process, I left out some of Heiko's good changes.
65277     Now Heiko's and Jon's patches are properly merged in fat_register_device()
65279     Signed-off-by: Andy Fleming <afleming@freescale.com>
65281 commit 6636b62a6efc7f14e6e788788631ae7a7fca4537
65282 Author: James Yang <James.Yang@freescale.com>
65283 Date:   Wed Jan 9 11:17:49 2008 -0600
65285     Expose parse_line() globally.
65287     Add new function readline_into_buffer() that allows the
65288     output of readline to be put into a pointer to char buffer.
65290     This refactoring allows other functions besides the
65291     main command loop to also use the same input mechanism.
65293     Signed-off-by: James Yang <James.Yang@freescale.com>
65294     Acked-by: Jon Loeliger <jdl@freescale.com>
65296 commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25
65297 Author: Guennadi Liakhovetski <lg@denx.de>
65298 Date:   Wed Jan 9 01:15:25 2008 +0100
65300     trivial: fix consequences of a bad merge
65302     Fix what looks like a merge artifact.
65304     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
65306 commit 4785a694c0045996ccf0ac5b8edf531efc1b730e
65307 Author: Zhang Wei <wei.zhang@freescale.com>
65308 Date:   Thu Jan 3 10:51:15 2008 +0800
65310     Add Ctrl combo key support to usb keyboard driver.
65312     Ctrl combo key support is added, which is very useful to input Ctrl-C
65313     for interrupt current job.
65314     Also add usb_event_poll() calling to usb_kbd_testc(), which can get
65315     key input when tstc() is called.
65317     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
65319 commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d
65320 Author: Marcel Ziswiler <marcel@ziswiler.com>
65321 Date:   Sun Dec 30 03:30:56 2007 +0100
65323     fix various comments
65325     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
65327 commit 7817cb2083d982923752fe0f12b67c0e7c09a027
65328 Author: Marcel Ziswiler <marcel@ziswiler.com>
65329 Date:   Sun Dec 30 03:30:46 2007 +0100
65331     fix comments with new drivers organization
65333     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
65335 commit a9b410dc7d2a4721c408b13abfc037988150f145
65336 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65337 Date:   Fri Dec 28 12:50:59 2007 +0900
65339     Remove the obsolete terse version of do_mii()
65341     We now have more useful version of do_mii() and everybody use it.
65342     Gerald Van Baren says:
65344     > When I originally wrote the mii command 6(!) years ago, I wrote a
65345     > verbose version that printed human readable decomposition of the flags,
65346     > etc., and a terse one that didn't print as much stuff and thus had a
65347     > smaller memory footprint.
65348     >
65349     > It sounds like the terse version has withered and died, apparently
65350     > people are only using the verbose version (which is very understandable,
65351     > I do myself).
65353     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65354     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
65356 commit 01c687aa6e065bd4faf80f723361e798941dd6b0
65357 Author: Mike Frysinger <vapier@gentoo.org>
65358 Date:   Thu Dec 27 13:42:56 2007 -0500
65360     Do not reference sha1.c when building mkimage.
65362     remove sha1.o from mkimage linking since it isn't actually used.
65364     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
65366 commit b9173af73e524d37c812f210173cf83385c5171a
65367 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65368 Date:   Thu Dec 27 15:39:54 2007 +0900
65370     common/cmd_mii.c: Add sanity argc check
65372     If type mii command without arguments, we suffer from uninitialized argv[]
65373     entries; for example we MIPS get stuck by TLB error.
65375     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65377 commit 500856eb1707ed17d9204baa61dd59948d3b2899
65378 Author: Rafal Jaworowski <raj@semihalf.com>
65379 Date:   Wed Jan 9 19:39:36 2008 +0100
65381     API for external applications.
65383     This is an API for external (standalone) applications running on top of
65384     U-Boot, and is meant to be more extensible and robust than the existing
65385     jumptable mechanism. It is similar to UNIX syscall approach. See api/README
65386     for more details.
65388     Included is the demo application using this new framework (api_examples).
65390     Please note this is still an experimental feature, and is turned off by
65391     default.
65393     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
65395 commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1
65396 Author: Jon Loeliger <jdl@freescale.com>
65397 Date:   Wed Jan 9 12:14:55 2008 -0600
65399     86xx: Remove cache config from configs.h
65401     Just use the standard defines in asm/cache.h.
65403     Signed-off-by: Jon Loeliger <jdl@freescale.com>
65405 commit 26a41790f8eba19ad450e18ae91351daf485b3e2
65406 Author: Rafal Jaworowski <raj@semihalf.com>
65407 Date:   Wed Jan 9 18:05:27 2008 +0100
65409     Globalize envmatch()
65411     The newly introduced API (routines related to env vars) will need to call
65412     it.
65414     Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
65416 commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f
65417 Author: Jon Loeliger <jdl@freescale.com>
65418 Date:   Fri Jan 4 12:07:27 2008 -0600
65420     Convert MPC8610HPCD to use libfdt.
65422     Assumes the presence of the aliases node in the DTS to
65423     locate the pci and serial nodes for fixups.
65425     Use consistent fdtaddr and fdtfile in environment variables.
65427     Signed-off-by: Jon Loeliger <jdl@freescale.com>
65429 commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60
65430 Author: Jon Loeliger <jdl@freescale.com>
65431 Date:   Fri Jan 4 11:58:23 2008 -0600
65433     8610: Fix lingering compile warnings.
65435     Turn off DEBUG.
65437     Signed-off-by: Jon Loeliger <jdl@freescale.com>
65439 commit 6007f3251c0967adc13f2ed8be1b924ddc30124d
65440 Author: Wolfgang Denk <wd@denx.de>
65441 Date:   Wed Jan 9 15:14:46 2008 +0100
65443     Coding Style cleanup, update CHANGELOG
65445     Signed-off-by: Wolfgang Denk <wd@denx.de>
65447 commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9
65448 Author: Mike Frysinger <vapier@gentoo.org>
65449 Date:   Tue Dec 18 04:29:55 2007 -0500
65451     fix easylogo on big endian dev systems
65453     didnt realize how out of shape easylogo actually was until i tried using it.
65454     this patch does byte swapping as need be on the input tga header since the tga
65455     is in little endian but the host could just as well be big endian.  i didnt
65456     bother using bswap macros or such stuff from system headers as nothing in
65457     POSIX dictates byte swapping functionality.
65459     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
65461 commit 38d299c2db81bd889c601b5dfc12c4e83ef83333
65462 Author: Mike Frysinger <vapier@gentoo.org>
65463 Date:   Tue Dec 18 03:23:25 2007 -0500
65465     cleanup easylogo
65467     - make the Makefile not suck
65468     - include proper headers for prototypes
65469     - fix obvious broken handling of strchr() when handling '.' in filenames
65471     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
65473 commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c
65474 Author: raptorbrino@aim.com <raptorbrino@aim.com>
65475 Date:   Thu Dec 13 21:23:28 2007 -0500
65477     Fix build problems under Cygwin
65479     This patch allows u-boot to build without error in a cygwin
65480     environment.  Cygwin does not define __u64 in it's
65481     include/asm/types.h file.  The -idirafter flag in the u-boot
65482     build causes the inclusion of the cygwin types.h file as opposed
65483     to u-bot/include/asm/types.h file which does define __u64.
65484     Subsequently, sha1.c compile fails due to unknown symbol.
65486     Signed-off-by: Brian Miller <raptorbrino@netscape.net>
65488 commit 43ef1c381f9195504a2488f5cb909227eb97d475
65489 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
65490 Date:   Fri Nov 30 17:29:59 2007 +0100
65492     cmd_bmp: Add support for displaying gzip compressed bmps
65494     The existing code can show information about a gzip compressed BMP
65495     image, but can't actually display it.
65497     Therefore, move the decompression code out of bmp_info() and use it in
65498     bmp_display() as well in order to display a compressed BMP image.
65500     Also, clean things up a bit and fix a memory leak while we're at it.
65502     [hskinnemoen@atmel.com: a bit of refactoring]
65503     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65505 commit d197ffd8172c6fdef38733424640a9a47295d6e9
65506 Author: Guennadi Liakhovetski <lg@denx.de>
65507 Date:   Thu Nov 29 21:15:56 2007 +0100
65509     Fix and optimize MII operations on FEC (MPC8xx) controllers
65511     This patch fixes several issues at least on a MPC885 based system with two
65512     FEC interfaces used in MII mode.
65514     1. PHY discovery should first read PHY_PHYIDR2 register and only then
65515        PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
65516        otherwise the values read are wrong. Also notice, that PHY discovery
65517        cannot work on MPC88x / MPC87x in setups with both FECs active at all
65518        in its present form, because for both interfaces the registers from FEC
65519        1 are used to communicate over MII.
65521     2. Remove code duplication for resetting the FEC by isolating it into a
65522        separate function.
65524     3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
65526     4. Optimize mii_init() to only reset the FEC 1 controller once.
65528     5. Fix a typo in mii_init() using index i instead of j thus potentially
65529        leading to unpredictable results.
65531     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
65533 commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214
65534 Author: Guennadi Liakhovetski <lg@denx.de>
65535 Date:   Tue Nov 20 13:14:20 2007 +0100
65537     Fix endianness conversions in rtl8169 driver
65539     It is unclear on what platforms this driver has been tested, since
65540     noone up to now defines CONFIG_RTL8169 in the board configuration
65541     header. Now it has been fixed for a big-endian mpc8241 based
65542     linkstation platform. This patch presents the necessary endianness
65543     conversion fixes.
65545     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
65547 commit 58694f9709c0c3e3178e349ae748d98cfb0c639a
65548 Author: Zhang Wei <wei.zhang@freescale.com>
65549 Date:   Thu Jan 3 10:51:15 2008 +0800
65551     Add Ctrl combo key support to usb keyboard driver.
65553     Ctrl combo key support is added, which is very useful to input Ctrl-C
65554     for interrupt current job.
65555     Also add usb_event_poll() calling to usb_kbd_testc(), which can get
65556     key input when tstc() is called.
65558     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
65559     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
65561 commit 07eb02687f008721974a2fb54cd7fdc28033ab3c
65562 Author: Wolfgang Denk <wd@denx.de>
65563 Date:   Wed Jan 9 13:43:38 2008 +0100
65565     Coding Style clenaup; update CHANGELOG
65567     Signed-off-by: Wolfgang Denk <wd@denx.de>
65569 commit c26acc1a43b31ddca5add42fd0360ff0eee90c80
65570 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65571 Date:   Thu Dec 27 17:13:11 2007 +0100
65573     Remove bit swapping in Xilinx Spartan bitfile loading
65575     This patch removes the unnecessary bit swapping when
65576     booting .bit files with the 'fpga loadb' command.
65578     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65580 commit 437fc7327f0611f82937858f2d80e4cd61b40984
65581 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65582 Date:   Thu Dec 27 17:13:05 2007 +0100
65584     Fix MSB check in Xilinx Spartan slave serial mode
65586     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65588 commit 3bff4ffa33729a42645e328a21e8d16488872958
65589 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65590 Date:   Thu Dec 27 17:12:56 2007 +0100
65592     Add new Xilinx Spartan FPGA types
65594     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65596 commit 21d39d598c4e74d4e7761608c79dba2715d40a4c
65597 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65598 Date:   Thu Dec 27 17:12:43 2007 +0100
65600     Add pre and post configuration callbacks for Spartan FPGAs
65602     This patch adds a post configuration callback for Spartan2/3 FPGAs.
65603     pre and post configuration callback are now optional and
65604     not called when the function pointer is set to NULL.
65606     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65608 commit 0133502e39ff89b67c26cb4015e0e7e8d9571184
65609 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65610 Date:   Thu Dec 27 17:12:34 2007 +0100
65612     Improve configuration of FPGA subsystem
65614     This patch removes the FPGA subsystem configuration through
65615     the CONFIG_FPGA bitmask configuration option.
65617     See README for the new options:
65619         CONFIG_FPGA,
65620         CONFIG_FPGA_<vendor>,
65621         CONFIG_FPGA_<family>
65623     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65625 commit 95c6bc7d4a3588b452baca610f8c795a83630477
65626 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65627 Date:   Thu Dec 27 16:55:17 2007 +0100
65629     Add Epson RX8025 RTC support
65631     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65633 commit 1208a2dfde02bedd3c5bda29a606632b8e0be058
65634 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65635 Date:   Thu Dec 27 16:57:23 2007 +0100
65637     serial: Make default_serial_console() a weak function
65639     With this patch it is possible to reimplement default_serial_console()
65640     in board specific code. This will be done in the upcomming PMC440
65641     U-Boot port. This also allows the lwmon board maintainer to
65642     remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c.
65644     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65646 commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33
65647 Author: Harald Welte <laforge@openmoko.org>
65648 Date:   Wed Dec 19 14:14:47 2007 +0100
65650     add 'terminal program' functionality
65652     This patch adds a 'cu' like serial terminal command to u-boot
65653     using which you can access other serial ports from the system console.
65655     OpenMoko uses this in their Neo1973 phones to get access to the GSM
65656     Modem and GPS chip from the bootloader.
65658     Signed-off-by: Harald Welte <laforge@openmoko.org>
65660 commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6
65661 Author: Harald Welte <laforge@openmoko.org>
65662 Date:   Wed Dec 19 14:12:53 2007 +0100
65664     Re-introduce the 'nand read.oob' and 'nand write.oob' commands
65665     that used to exist with the legacy NAND code
65667     Signed-off-by: Harald Welte <laforge@openmoko.org>
65669 commit f540c42d9564854b19ce9bbb70affe172529fe70
65670 Author: Harald Welte <laforge@openmoko.org>
65671 Date:   Wed Dec 19 14:09:58 2007 +0100
65673     Fix building with CRAMFS but not JFFS2 support
65675     Signed-off-by: Harald Welte <laforge@openmoko.org>
65677 commit 23d0baf967fecdaf1804f045f6339337c5607eec
65678 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65679 Date:   Sat Dec 22 15:52:58 2007 +0100
65681     Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime
65683     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
65684     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65686 commit 23776ff292966a85d811126933830bed48211826
65687 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65688 Date:   Tue Dec 11 10:53:12 2007 +0100
65690     ARM: support board-specific ethernet PHY init
65692     Add until the new phylib will be arrived
65694     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65696 commit 7b74ebe723e576baedf5a8b6240589b19b845a1b
65697 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65698 Date:   Sat Dec 8 16:34:08 2007 +0100
65700     IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
65702     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65704 commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1
65705 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65706 Date:   Sun Dec 9 11:01:10 2007 +0100
65708     Add missing file in gitignore and comments
65710     based on Linux source tree's .gitignore files
65712     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
65714 commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868
65715 Author: Wolfgang Denk <wd@denx.de>
65716 Date:   Wed Jan 9 11:36:21 2008 +0100
65718     Coding Style cleanup, update CHANGELOG
65720     Signed-off-by: Wolfgang Denk <wd@denx.de>
65722 commit b2e2142c500c48a57f18f9dd30e66c13caea0971
65723 Author: Stefan Roese <sr@denx.de>
65724 Date:   Wed Jan 9 10:38:58 2008 +0100
65726     POST: Execute SPR test after relocation
65728     On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses
65729     self modifying code and this doesn't work with stack in d-cache, since
65730     I can't move the code from d-cache to i-cache. We move the SPR test to
65731     be executed a little later, after relocation. Then stack is located in
65732     SDRAM and this self-modifying code is no problem anymore.
65734     Signed-off-by: Stefan Roese <sr@denx.de>
65736 commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde
65737 Author: Stefan Roese <sr@denx.de>
65738 Date:   Wed Jan 9 10:28:20 2008 +0100
65740     ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore
65742     This patch configures the LWMON5 port to use d-cache as init-ram and
65743     the unused GPT0_COMP6 as POST WORD storage.
65745     Signed-off-by: Stefan Roese <sr@denx.de>
65747 commit 1754f50b710194f886b6f2831803d8960171a14d
65748 Author: Stefan Roese <sr@denx.de>
65749 Date:   Wed Jan 9 10:25:46 2008 +0100
65751     ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage
65753     The privious 4xx POST implementation only supported storing the POST
65754     WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer
65755     we need to store the POST WORD in some other non volatile location.
65756     This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such
65757     a location.
65759     Signed-off-by: Stefan Roese <sr@denx.de>
65761 commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57
65762 Author: Stefan Roese <sr@denx.de>
65763 Date:   Wed Jan 9 10:23:16 2008 +0100
65765     ppc4xx: Add 44x cache locking to better support init-ram in d-cache
65767     This patch adds support for locking the init-ram/stack in d-cache,
65768     so that other regions may use d-cache as well
65770     Note, that this current implementation locks exactly 4k of d-cache,
65771     so please make sure that you don't define a bigger init-ram area. Take
65772     a look at the lwmon5 440EPx implementation as a reference.
65774     Signed-off-by: Stefan Roese <sr@denx.de>
65776 commit 0ddb89601a8d29e808db450366752ffdc6267c53
65777 Author: Wolfgang Denk <wd@denx.de>
65778 Date:   Wed Jan 9 10:16:33 2008 +0100
65780     Fix memset bug in ext2fs_read_file()
65782     ext2fs_read_file() had the function arguments swapped.
65784     Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800
65786     Signed-off-by: Wolfgang Denk <wd@denx.de>
65788 commit 32d6f1bc09175f3b77469771e839bc7255a9f22e
65789 Author: Markus Klotzbücher <mk@denx.de>
65790 Date:   Tue Jan 5 08:17:15 1988 +0100
65792     Fix problems with usb storage devices on MPC5200 /TQM5200
65794     The MPC5200 OHCI controller operates in big endian, so
65795     CFG_OHCI_BE_CONTROLLER must be defined for it to work properly.
65797     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
65799 commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19
65800 Author: Wolfgang Denk <wd@denx.de>
65801 Date:   Tue Jan 8 22:58:27 2008 +0100
65803     Fix compile problem with new env code.
65805     Signed-off-by: Wolfgang Denk <wd@denx.de>
65807 commit 64b3727b9779d86127cd576e392a987de5ebb9fd
65808 Author: Markus Klotzbücher <mk@denx.de>
65809 Date:   Tue Nov 27 10:23:20 2007 +0100
65811     tools: fix fw_printenv tool to compile again
65813     This patch updates the fw_printenv/fw_setenv userspace tool to include
65814     the correct MTD header in order to compile against current kernel
65815     headers. Backward compatibility is preserved by introducing an option
65816     MTD_VERSION which can be set to "old" for compilation using the old MTD
65817     headers. Along with this a number of warnings are fixed.
65819     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
65821 commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516
65822 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65823 Date:   Tue Jan 8 15:40:09 2008 +0100
65825     ppc4xx: assign PCI interrupts on seuqoia boards
65827     Some operating systems rely on assigned PCI interrupts.
65829     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65831 commit 6e9233d30afe57cb6e148fbfa4895e7810196fac
65832 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65833 Date:   Tue Jan 8 15:50:49 2008 +0100
65835     ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
65837     This patch allows the use of 4xx interrupt vector number defines
65838     in board specific code outside cpu/ppc4xx.
65840     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65842 commit 580d1d3186a2bc6dbdb626941b716dae1788e51e
65843 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65844 Date:   Tue Jan 8 15:39:01 2008 +0100
65846     ppc4xx: Fix UIC2 vector number base
65848     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65850 commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811
65851 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65852 Date:   Tue Jan 8 12:49:58 2008 +0100
65854     ppc4xx: Update PLB/PCI divider for PMC440 board
65856     This patch updates the PLB/PCI divider when running at
65857     400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock.
65859     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65861 commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde
65862 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65863 Date:   Tue Jan 8 11:13:09 2008 +0100
65865     ppc4xx: Disable error message when no NAND chip is installed on PMC440
65867     Add CFG_NAND_QUIET_TEST option to disable error message when
65868     no NAND chip is installed on PMC440 boards.
65870     Disable a couple of config defines that are only used for NAND_U_BOOT.
65872     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65874 commit c83d7ca4dadd44ae430235077f63b64a11f36f6e
65875 Author: Wolfgang Denk <wd@denx.de>
65876 Date:   Tue Jan 8 22:58:27 2008 +0100
65878     Fix compile problem with new env code.
65880     Signed-off-by: Wolfgang Denk <wd@denx.de>
65882 commit 6de66b35426312a21174a9bf0576a094e2904bea
65883 Author: Markus Klotzbücher <mk@denx.de>
65884 Date:   Tue Nov 27 10:23:20 2007 +0100
65886     tools: fix fw_printenv tool to compile again
65888     This patch updates the fw_printenv/fw_setenv userspace tool to include
65889     the correct MTD header in order to compile against current kernel
65890     headers. Backward compatibility is preserved by introducing an option
65891     MTD_VERSION which can be set to "old" for compilation using the old MTD
65892     headers. Along with this a number of warnings are fixed.
65894     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
65896 commit ad3006fe7e84667021753b74247b0bafd97ba35f
65897 Author: Gerald Van Baren <vanbaren@cideas.com>
65898 Date:   Mon Jan 7 23:47:32 2008 -0500
65900     LIBFDT: use memmove() instead of memcpy()
65902     This is partial patch from the DTC/libfdt
65903     commit  67b6b33b9b413a450a72135b5dc59c0a1e33e647
65904     Author: David Gibson <david@gibson.dropbear.id.au>
65905     Date:   Wed Nov 21 11:56:14 2007 +1100
65907         The patch also fixes one genuine bug caught by valgrind -
65908         _packblocks() in fdt_rw.c was using memcpy() where it should have been
65909         using memmove().
65911     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
65913 commit aec7135bc300e3340d18f203347ee00c5b5f68c0
65914 Author: David Gibson <david@gibson.dropbear.id.au>
65915 Date:   Mon Dec 17 14:42:07 2007 +1100
65917     libfdt: Add more documentation (patch the seventh)
65919     This patch adds more documenting comments to libfdt.h.  Specifically,
65920     these document the read/write functions (not including fdt_open_into()
65921     and fdt_pack(), for now).
65923     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
65925 commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e
65926 Author: David Gibson <david@gibson.dropbear.id.au>
65927 Date:   Mon Dec 17 14:41:52 2007 +1100
65929     libfdt: Add more documentation (patch the sixth)
65931     This patch adds some more documenting comments to libfdt.h.
65932     Specifically this documents all the write-in-place functions.
65934     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
65936 commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0
65937 Author: Gerald Van Baren <vanbaren@cideas.com>
65938 Date:   Sat Dec 29 22:45:27 2007 -0500
65940     Fine grained per property /chosen updating.
65942     Implement a suggestion by Scott Wood to make the /chosen handling fine
65943     grained.  Don't overwrite pre-existing properties on a per-property basis,
65944     so if /chosen exists but a necessary /chosen/property doesn't, it gets
65945     created.  If a /chosen property exists, it is NOT overwritten unless the
65946     "force" flag is true.
65948     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
65950 commit 238cb7a423c6eaa36496efb788cfb9798cea7f95
65951 Author: Gerald Van Baren <vanbaren@cideas.com>
65952 Date:   Sat Jan 5 15:33:29 2008 -0500
65954     Improve the FDT help message.
65956     Add a note that "fdt copy" makes the new address active.
65957     Remove most of the extra hints at the end of the fdt help.
65959     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
65961 commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92
65962 Author: Gerald Van Baren <vanbaren@cideas.com>
65963 Date:   Sat Jan 5 14:52:04 2008 -0500
65965     Support setting FDT properties with optional values.
65967     Fix a bug found and documented by Bartlomiej Sieka where the optional
65968     value on "fdt set <path> <prop> [<val>]" wasn't optional.
65970     => fdt mknode / testnode
65971     => fdt print /testnode
65972     testnode {
65973     };
65974     => fdt set /testnode testprop
65975     => fdt print /testnode
65976     testnode {
65977             testprop;
65978     };
65980     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
65982 commit 22fb2246df91bfc840d87f0c5910818bad55577a
65983 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65984 Date:   Fri Dec 28 11:56:30 2007 +0100
65986     Add fdt_find_and_setprop() to fdt_support.h
65988     fdt_find_and_setprop() is used by several 4xx boards and it's
65989     missing in the appropriate header. This patch eliminates a
65990     warning when building U-Boot for such boards.
65992     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65993     Acked-by: Stefan Roese <sr@denx.de>
65995 commit 802b769bac17b0560d3535a42c502469ee190cd1
65996 Author: Stefan Roese <sr@denx.de>
65997 Date:   Tue Jan 8 18:39:30 2008 +0100
65999     ppc4xx: Return 0 on success in 4xx ethernet driver
66001     Signed-off-by: Stefan Roese <sr@denx.de>
66003 commit 6775c68683a53c7abc778774641aac6f833a2cbf
66004 Author: Kim Phillips <kim.phillips@freescale.com>
66005 Date:   Tue Jan 8 09:59:49 2008 -0600
66007     mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code
66009     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66011 commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7
66012 Author: Kim Phillips <kim.phillips@freescale.com>
66013 Date:   Thu Dec 20 16:28:34 2007 -0600
66015     mpc83xx: rm remaining FLAT_TREE code
66017     ..in board pci.c files
66019     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66021 commit b3458d2cd55d01732e30a76d898afd99e871cd67
66022 Author: Kim Phillips <kim.phillips@freescale.com>
66023 Date:   Thu Dec 20 15:57:28 2007 -0600
66025     mpc83xx: remove FLAT_TREE code
66027     need to rm it from pci code, too!
66029     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66031 commit 5b8bc606c61456566af6912f818a153b6b06f242
66032 Author: Kim Phillips <kim.phillips@freescale.com>
66033 Date:   Thu Dec 20 14:09:22 2007 -0600
66035     mpc83xx: convert to using do_fixup_*()
66037     convert to using simpler mpc85xx style fdt update code; streamline by
66038     eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
66039     the old school FLAT_TREE code from 83xx (since the sbc8349 was just
66040     converted over to using libfdt).
66042     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66044 commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab
66045 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
66046 Date:   Thu Dec 20 12:58:51 2007 -0500
66048     sbc8349: enable libfdt by default on WRS SBC8349 board.
66050     Make libfdt the default for the WRS SBC8349 board.
66051     Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef
66052     done for the other 83xx based boards.  Also fix a typo in CONFIG_PCI.
66054     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
66056 commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40
66057 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
66058 Date:   Thu Dec 20 12:58:16 2007 -0500
66060     sbc8349: migrate board to libfdt
66062     This adds libfdt support code for the Wind River sbc8349 board.
66064     Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for
66065     the other Freescale 83xx boards.
66067     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
66069 commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d
66070 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
66071 Date:   Thu Dec 20 12:56:19 2007 -0500
66073     sbc8349: Remove board specific ECC code
66075     ECC code is now shared for all 83xx boards, so remove board specific one.
66076     See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference.
66078     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
66080 commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7
66081 Author: Kim Phillips <kim.phillips@freescale.com>
66082 Date:   Thu Dec 20 01:30:48 2007 -0600
66084     mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
66086     continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x
66088     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66090 commit ccf21c311e68d48399eff1e72936052885f6e3f7
66091 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
66092 Date:   Thu Dec 6 16:43:40 2007 +0100
66094     Add support CONFIG_UEC_ETH3 in MPC83xx
66096     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
66098 commit e6af9932d31171e35db880e7b2f29f903b1b7660
66099 Author: Kumar Gala <galak@kernel.crashing.org>
66100 Date:   Mon Nov 26 11:00:54 2007 -0600
66102     Remove CONFIG options related to OF that we dont use
66104     The MPC8360E MDS config defined:
66105         CONFIG_OF_HAS_BD_T
66106         CONFIG_OF_HAS_UBOOT_ENV
66108     Which we don't use or ever needed.  This seems like copy-paste feature creep.
66110     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
66112 commit f602082b4b7ed4ee16432067cc67a0a24fedc715
66113 Author: Kim Phillips <kim.phillips@freescale.com>
66114 Date:   Mon Dec 10 14:16:22 2007 -0600
66116     mpc83xx: supress compiler warning
66118     mpc8360emds.c: In function â€˜ft_board_setup’:
66119     mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type
66120     mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type
66122     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66124 commit c16e44fa835fb9eec982d919863a04e2f78e5ce7
66125 Author: Kim Phillips <kim.phillips@freescale.com>
66126 Date:   Tue Nov 27 14:17:29 2007 -0600
66128     mpc83xx: fix remaining fdt_find_node_by_path references
66130     rename to fdt_path_offset
66132     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66134 commit 921d4b19ad1be704df58725485d9292dc0414adf
66135 Author: Kim Phillips <kim.phillips@freescale.com>
66136 Date:   Mon Nov 19 12:30:09 2007 -0600
66138     mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
66140     Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x.
66141     This change guarantees that the environment will be located on the
66142     first flash sector after the U-Boot image.
66144     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66146 commit 24f868433b50ecbaa88e118aadc7bd254013c6ae
66147 Author: Kim Phillips <kim.phillips@freescale.com>
66148 Date:   Fri Nov 9 14:28:08 2007 -0600
66150     mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
66152     u-boot itself uses GMII mode on the 8360.  Fix up UCC phy-connection-type
66153     properties in the device tree so the PHY gets configured for internal delay on
66154     RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2.
66156     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66158 commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b
66159 Author: Dave Liu <r63238@freescale.com>
66160 Date:   Tue Sep 18 12:41:15 2007 +0800
66162     mpc83xx: update the CREDITS and MAINTAINERS
66164     update the CREDITS and MAINTAINERS.
66166     Signed-off-by: Dave Liu <daveliu@freescale.com>
66168 commit b21add4b42af7b767448251b599b91066a160e0d
66169 Author: Dave Liu <r63238@freescale.com>
66170 Date:   Tue Sep 18 12:40:21 2007 +0800
66172     mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
66174     Add the MAINTAINER and MAKEALL entries for mpc837xemds
66176     Signed-off-by: Dave Liu <daveliu@freescale.com>
66178 commit f8900ce9094c462355eb792eea264ff16ac8fd16
66179 Author: Dave Liu <r63238@freescale.com>
66180 Date:   Tue Sep 18 12:38:53 2007 +0800
66182     mpc83xx: Add the MPC837xEMDS board readme
66184     Add the README.mpc837xemds to /doc
66186     Signed-off-by: Dave Liu <daveliu@freescale.com>
66188 commit 19580e660cc8da49f16536a8bd78c047c7bc12e5
66189 Author: Dave Liu <r63238@freescale.com>
66190 Date:   Tue Sep 18 12:37:57 2007 +0800
66192     mpc83xx: Add the support of MPC837xEMDS board
66194     The MPC837xEMDS board support:
66195     * DDR2 400MHz hardcoded and SPD init
66196     * Local bus NOR Flash
66197     * I2C, UART, MII and RTC
66198     * eTSEC RGMII
66199     * PCI host
66201     Signed-off-by: Dave Liu <daveliu@freescale.com>
66203 commit 555da61702771fe0f76f3de23b4e7590f3704161
66204 Author: Dave Liu <r63238@freescale.com>
66205 Date:   Tue Sep 18 12:36:58 2007 +0800
66207     mpc83xx: Add the support of MPC8315E SoC
66209     The MPC8315E SoC including e300c3 core and new IP blocks,
66210     such as TDM, PCI Express and SATA controller.
66212     Signed-off-by: Dave Liu <daveliu@freescale.com>
66214 commit 03051c3d35c9981ceaa059005660e699f3eacf1c
66215 Author: Dave Liu <r63238@freescale.com>
66216 Date:   Tue Sep 18 12:36:11 2007 +0800
66218     mpc83xx: Add the support of MPC837x SoC
66220     The MPC837x SoC including e300c4 core and new IP blocks,
66221     such as SDHC, PCI Express and SATA controller.
66223     Signed-off-by: Dave Liu <daveliu@freescale.com>
66225 commit 651d96f7e4c84adcdb98ef07ec878c20326e3359
66226 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
66227 Date:   Wed Nov 14 18:54:53 2007 +0300
66229     MPC8360E-MDS: configure and enable second UART
66231     Despite user manual, BCSR9.7 is negated (high) on HRST, so
66232     UART2 is disabled. Fix that and configure QE pins properly.
66234     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
66236 commit b2893e1fcb28fad8c8b317104df8cee0142c7631
66237 Author: Timur Tabi <timur@freescale.com>
66238 Date:   Mon Nov 5 09:34:06 2007 -0600
66240     83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
66242     Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the
66243     currently-defined 83xx boards.  This change guarantees that the environment
66244     will be located on the first flash sector after the U-Boot image.
66246     Signed-off-by: Timur Tabi <timur@freescale.com>
66247     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66249 commit e05329516a13616b53240cd85b739217c2bf87f1
66250 Author: Larry Johnson <lrj@acm.org>
66251 Date:   Fri Jan 4 13:27:02 2008 -0500
66253     ppc4xx: Remove weak binding from common Denali data-eye search code
66255     Now that there are no board-specific versions of
66256     "denali_core_search_data_eye()", the weak binding on the common version
66257     can be removed.
66259     Signed-off-by: Larry Johnson <lrj@acm.org>
66261 commit 5ba576c01602fd328800a427964c36a0a05c5dce
66262 Author: Stefan Roese <sr@denx.de>
66263 Date:   Sat Jan 5 09:13:46 2008 +0100
66265     ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c
66267     Signed-off-by: Stefan Roese <sr@denx.de>
66269 commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4
66270 Author: Stefan Roese <sr@denx.de>
66271 Date:   Sat Jan 5 09:12:41 2008 +0100
66273     ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup
66275     On Katmai the complete auto-calibration somehow doesn't seem to
66276     produce the best results, meaning optimal values for RQFD/RFFD.
66277     This was discovered by GDA using a high bandwidth scope,
66278     analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
66279     so now on Katmai "only" RFFD is auto-calibrated.
66281     This patch also adds RDCC calibration as mentioned on page 7 of
66282     the AMCC PowerPC440SP/SPe DDR2 application note:
66283     "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
66285     Signed-off-by: Stefan Roese <sr@denx.de>
66287 commit 49db47b8ae6afff2b898be312948ff501357dc80
66288 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66289 Date:   Wed Jan 2 16:48:42 2008 +0100
66291     ppc4xx: Remove sdram.h from PMC440 board
66293     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66295 commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a
66296 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66297 Date:   Wed Jan 2 16:48:34 2008 +0100
66299     ppc4xx: use common denali core defines and data eye search code for PMC440
66301     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66303 commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489
66304 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66305 Date:   Wed Jan 2 12:05:14 2008 +0100
66307     ppc4xx: More cleanup for esd's LCD code
66309     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66311 commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb
66312 Author: Stefan Roese <sr@denx.de>
66313 Date:   Fri Jan 4 12:00:01 2008 +0100
66315     ppc4xx: Fix Sequoia NAND booting target
66317     The Sequoia NAND booting target now uses the recently extracted
66318     cpu/ppc4xx/denali_data_eye.c file too.
66320     Signed-off-by: Stefan Roese <sr@denx.de>
66322 commit 0ddd969aec532bd7eae30fc09590488a3aaa629a
66323 Author: Lawrence R. Johnson <lrj@acm.org>
66324 Date:   Thu Jan 3 15:02:02 2008 -0500
66326     ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board
66328     Signed-off-by: Larry Johnson <lrj@acm.org>
66330 commit b05e8bf58be9d8956fdfde3d8c8e87c140414663
66331 Author: Lawrence R. Johnson <lrj@acm.org>
66332 Date:   Fri Jan 4 02:11:56 2008 -0500
66334     ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board
66336     Note: this patch changes the configuration of some GPIO registers:
66338        Register      Old Value   New Value
66339     ---------------  ----------  ----------
66340     DCR GPIO0_TCR    0x0000000F  0x0000F0CF
66341     DCR GPIO0_TSRH   0x55005000  0x00000000
66342     DCR GPIO1_TCR    0xC2000000  0xE2000000
66343     DCR GPIO1_TSRL   0x0C000000  0x00200000
66344     DCR GPIO1_ISR2L  0x00050000  0x00110000
66346     Signed-off-by: Larry Johnson <lrj@acm.org>
66348 commit 5ab884b254ca2e707ab50545cd705f30108cf491
66349 Author: Lawrence R. Johnson <lrj@acm.org>
66350 Date:   Thu Jan 3 18:54:00 2008 -0500
66352     ppc4xx: Add functionality to GPIO support
66354     This patch makes two additions to GPIO support:
66356     First, it adds function gpio_read_in_bit() to read the a bit from the
66357     GPIO Input Register (GPIOx_IR) in the same way that function
66358     gpio_read_out_bit() reads a bit from the GPIO Output Register
66359     (GPIOx_OR).
66361     Second, it modifies function gpio_set_chip_configuration() to provide
66362     an additional option for configuring the GPIO from the
66363     "CFG_4xx_GPIO_TABLE".
66365     According to the 440EPx User's Manual, when an alternate output is used,
66366     the three-state control is configured in one of two ways, depending on
66367     the particular output.  The first option is to select the corresponding
66368     alternate three-state control in the GPIOx_TRSH/L registers.  The second
66369     option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
66370     the GPIOx_TRSH/L registers, and set the corresponding bit in the
66371     GPIOx_TCR register to enable the output.  For example, the Manual
66372     specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
66373     the alternate three-state control (first option), and specifies
66374     configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
66375     enabled in the GPIOx_TCR register (second option).
66377     Currently, gpio_set_chip_configuration() configures all alternate signal
66378     outputs to use the first option.  This patch allow the second option to
66379     be selected by setting the "out_val" element in the table entry to
66380     "GPIO_OUT_1".  The first option is used when the "out_val" element is
66381     set to "GPIO_OUT_0".  Because "out_val" is not currently used when an
66382     alternate signal is selected, and because all current GPIO tables set
66383     "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
66384     not change any existing configurations.
66386     Signed-off-by: Larry Johnson <lrj@acm.org>
66388 commit 196404cdc1de495d6182e84731c200fc5748df15
66389 Author: Larry Johnson <lrj@arlinx.com>
66390 Date:   Sun Dec 30 01:01:54 2007 -0500
66392     PPC4xx: Remove sdram.h from board/lwmon5
66394     These definitions are now in "include/ppc440.h".
66396     Signed-off-by: Larry Johnson <lrj@acm.org>
66398 commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b
66399 Author: Larry Johnson <lrj@arlinx.com>
66400 Date:   Sun Dec 30 01:01:32 2007 -0500
66402     PPC4xx: Use common code for LWMON5 board SDRAM support
66404     This patch also modifies the functionality of the code so that the data-eye
66405     search is now done with with the cache disabled.
66407     Signed-off-by: Larry Johnson <lrj@acm.org>
66409 commit 62cc3951ab72135d9c101f1845b794e63a0fa189
66410 Author: Larry Johnson <lrj@arlinx.com>
66411 Date:   Sun Dec 30 01:01:14 2007 -0500
66413     PPC4xx: Remove sdram.h from board/amcc/sequoia
66415     These definitions are now in "include/ppc440.h".
66417     Signed-off-by: Larry Johnson <lrj@acm.org>
66419 commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a
66420 Author: Larry Johnson <lrj@arlinx.com>
66421 Date:   Sun Dec 30 01:00:50 2007 -0500
66423     PPC4xx: Use common code for Sequoia board SDRAM support
66425     Signed-off-by: Larry Johnson <lrj@acm.org>
66427 commit 8b0c5c127690335758100c25eaec2b84db97c101
66428 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66429 Date:   Thu Dec 27 16:58:41 2007 +0100
66431     net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
66433     When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
66434     networking stack does not automatically switch to
66435     another interface. This patch does not touch the default
66436     behavior.
66438     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66439     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
66441 commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32
66442 Author: Upakul Barkakaty <upakul@gmail.com>
66443 Date:   Thu Nov 29 12:16:13 2007 +0530
66445     NET: Proper return code handling in eth_init() function in file eth.c
66447     This patch modifies the return code handling in the eth_init()
66448     function, to be compatible with the handling of the return codes in
66449     the other network stack files. It now returns a 0 on Success and -1 on
66450     error.
66452     Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com>
66453     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
66455 commit 5ca2d0953e4579a80810966cca2077e20d912c97
66456 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
66457 Date:   Mon Nov 19 20:27:04 2007 +0900
66459     net/eth.c: Fix env_enetaddr signed overflow
66461     Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are
66462     warned as below:
66464       U-Boot 1.2.0 (Aug 30 2007 - 08:27:37)
66466       DRAM:  256 MB
66467       Flash: 32 MB
66468       In:    serial
66469       Out:   serial
66470       Err:   serial
66471       Net:   NEC-Candy
66472       Warning: NEC-Candy MAC addresses don't match:
66473       Address in SROM is         00:00:4C:80:92:A2
66474       Address in environment is  FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21
66476     This patch changes env_enetaddr type from `char' to `unsigned char'.
66478     Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp>
66479     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
66480     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
66482 commit f85b60710571b37293d2233933b76e2aa3db5635
66483 Author: Rafal Jaworowski <raj@semihalf.com>
66484 Date:   Thu Dec 27 18:19:02 2007 +0100
66486     Introduce new eth_receive routine
66488     The purpose of this routine is receiving a single network frame, outside of
66489     U-Boot's NetLoop(). Exporting it to standalone programs that run on top of
66490     U-Boot will let them utilise networking facilities. For sending a raw frame
66491     the already existing eth_send() can be used.
66493     The direct consumer of this routine is the newly introduced API layer for
66494     external applications (enabled with CONFIG_API).
66496     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
66497     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
66498     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
66500 commit 5c740711f0ea5b51414b341b71597c4a0751be74
66501 Author: Jon Loeliger <jdl@freescale.com>
66502 Date:   Thu Jan 3 10:41:04 2008 -0600
66504     8610: Move include of config.h earlier.
66506     Include config.h earlier in the set of #includes
66507     so as to avoid a incidental and duplicate definition
66508     of CFG_CACHELINE_SIZE.
66510     Signed-off-by: Jon Loeliger
66512 commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff
66513 Author: Jon Loeliger <jdl@freescale.com>
66514 Date:   Tue Dec 4 10:53:34 2007 -0600
66516     Don't slam #undef DEBUG in the 8641HPCN config file.
66518     Doing so prevents it from being individually set
66519     and useful in other files.
66521     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66523 commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c
66524 Author: Jon Loeliger <jdl@freescale.com>
66525 Date:   Wed Nov 28 14:47:18 2007 -0600
66527     Convert MPC8641HPCN to use libfdt.
66529     Assumes the presence of the aliases node in the DTS to
66530     locate the ethernet, pci and serial nodes for fixups.
66532     Use consistent fdtaddr and fdtfile in environment variables.
66534     Signed-off-by: Jon Loeliger <jdl@freescale.com>
66536 commit ce37422d0002e10490e268392e0c4e3028e52cec
66537 Author: Stefan Roese <sr@denx.de>
66538 Date:   Wed Jan 2 14:06:26 2008 +0100
66540     cfi_flash: Fix bug in flash_isset() to use correct 32bit function
66542     This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
66543     flash chips connected to a 32bit wide port.
66545     Signed-off-by: Stefan Roese <sr@denx.de>
66547 commit 1182e9f8e3b92fc372d64943293de53daa2e26cf
66548 Author: Wolfgang Denk <wd@denx.de>
66549 Date:   Wed Jan 2 15:58:44 2008 +0100
66551     Fix compile problem introduced by "cleanup" commit 3dfd708c
66553     Signed-off-by: Wolfgang Denk <wd@denx.de>
66555 commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7
66556 Author: Wolfgang Denk <wd@denx.de>
66557 Date:   Wed Jan 2 15:54:45 2008 +0100
66559     Make scripts and Makefiles POSIX compliant
66561     The bash builtin versions of the "test" (resp. "[") command allow
66562     using "==" for string comparisons, but POSIX compatible implemen-
66563     tations (like /usr/bin/test) insist on using "=" only. On such systems
66564     you will see:
66566         $ /usr/bin/test a == a && echo OK
66567         /usr/bin/test: ==: binary operator expected
66569     This patch fixes Makefiles and scripts to use POSIX style.
66571     Signed-off-by: Wolfgang Denk <wd@denx.de>
66573 commit 47cc23cbe9a669c510183f4f049bf703ef445f3b
66574 Author: Stefan Roese <sr@denx.de>
66575 Date:   Wed Jan 2 14:05:37 2008 +0100
66577     cfi_flash: Fix bug in flash_isset() to use correct 32bit function
66579     This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
66580     flash chips connected to a 32bit wide port.
66582     Signed-off-by: Stefan Roese <sr@denx.de>
66584 commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc
66585 Author: Wolfgang Denk <wd@denx.de>
66586 Date:   Wed Jan 2 12:38:43 2008 +0100
66588     Minor coding style cleanup.
66590     Signed-off-by: Wolfgang Denk <wd@denx.de>
66592 commit e174ac34adf5d5653df12bc3cf19c52063a71269
66593 Author: Stefan Roese <sr@denx.de>
66594 Date:   Fri Dec 28 17:29:56 2007 +0100
66596     ppc4xx: Coding style cleanup
66598     Signed-off-by: Stefan Roese <sr@denx.de>
66600 commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5
66601 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66602 Date:   Fri Dec 28 17:07:24 2007 +0100
66604     ppc4xx: Complete PMC440 board support
66606     This patch brings the PMC440 board configuration file.
66607     Finally it enables the PMC440 board support.
66609     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66611 commit 407843a582560fc5231299561ab3c2b6b6cd3397
66612 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66613 Date:   Fri Dec 28 17:07:18 2007 +0100
66615     ppc4xx: Add FPGA support and BSP commands for PMC440 boards
66617     This patch adds some BSP commands and FPGA booting support
66618     for esd's PMC440 boards.
66620     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66622 commit 72c5d52aedcce35e4b4fa5895605554825b6a76f
66623 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66624 Date:   Fri Dec 28 17:07:14 2007 +0100
66626     ppc4xx: Add initial esd PMC440 board files
66628     This patch adds the first files for the new esd PMC440 boards.
66629     The next two patches will complete the PMC440 board support.
66631     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66633 commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5
66634 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66635 Date:   Fri Dec 28 17:10:36 2007 +0100
66637     ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates
66639     - add EEPROM write protection for esd PLU405 boards.
66640     - initialize NAND GPIOs
66641     - use correct io accessors
66642     - cleanup
66644     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66646 commit 77660c4b59055d621d2a8595bd4c18bb277268fc
66647 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66648 Date:   Fri Dec 28 17:10:44 2007 +0100
66650     ppc4xx: use correct io accessors for esd's LCD code
66652     This patch fixes esd's LCD dectection code to work correctly with
66653     newer gcc versions.
66655     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66657 commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e
66658 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66659 Date:   Fri Dec 28 17:10:42 2007 +0100
66661     ppc4xx: Maintenance patch for VOH405 boards
66663     - add EEPROM write protection
66664     - initialize NAND GPIOs
66665     - use correct io accessors
66666     - slow down I2C clock to 100kHz
66667     - enable ext. I2C bus
66668     - cleanup
66670     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66672 commit c05569066dbcba3fdf36d4d1943df265dc316a86
66673 Author: Stefan Roese <sr@denx.de>
66674 Date:   Fri Dec 28 16:08:08 2007 +0100
66676     ppc4xx: Enable 405EP PCI arbiter per default on all boards
66678     In an attmemt to clean up the 4xx start.S file, I removed the enabling
66679     of the internal 405EP PCI arbiter. This is needed for multiple other
66680     405EP platforms, like most of the esd 405EP. Now the internal PCI
66681     arbiter is enabled again per default as it has been before.
66683     Signed-off-by: Stefan Roese <sr@denx.de>
66684     Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66686 commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b
66687 Author: Stefan Roese <sr@denx.de>
66688 Date:   Fri Dec 28 15:53:46 2007 +0100
66690     ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP)
66692     Signed-off-by: Stefan Roese <sr@denx.de>
66693     Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66695 commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79
66696 Author: Stefan Roese <sr@denx.de>
66697 Date:   Fri Dec 28 06:06:04 2007 +0100
66699     ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target
66701     Use correct link to nand_ecc now located in drivers/mtd/nand/ for the
66702     platforms mentioned above.
66704     Signed-off-by: Stefan Roese <sr@denx.de>
66706 commit b568fd25574181a3b12ae3d66b2913903442cb83
66707 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66708 Date:   Thu Dec 27 17:03:46 2007 +0100
66710     Remove CPCI440 board
66712     This board never left prototyping state and it
66713     became a millstone round my neck. So remove it.
66715     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66717 commit c591dffe0cbacd896ccbad06011fe6d6afa080da
66718 Author: Larry Johnson <lrj@arlinx.com>
66719 Date:   Thu Dec 27 11:28:51 2007 -0500
66721     Add support for Korat PPC440EPx board
66723     These patches add support for the PPC440EPx-based "Korat" board to
66724     U-Boot.  They are based primarily on support for the Sequoia board.
66726     Signed-off-by: Larry Johnson <lrj@acm.org>
66728 commit 87dc096829e6a6363f4fdd73653b0093a85adbe0
66729 Author: Larry Johnson <lrj@arlinx.com>
66730 Date:   Sat Dec 22 15:16:25 2007 -0500
66732     Add configuration file for Korat board
66734     This patch supplies the configuration file for the Korat PPC440EPx-
66735     processor board.
66737     Signed-off-by: Larry Johnson <lrj@acm.org>
66739 commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5
66740 Author: Larry Johnson <lrj@arlinx.com>
66741 Date:   Sat Dec 22 15:16:11 2007 -0500
66743     Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile
66745     Signed-off-by: Larry Johnson <lrj@acm.org>
66747 commit aba19604d848b2838cfb9ebe818909e6a216058e
66748 Author: Larry Johnson <lrj@arlinx.com>
66749 Date:   Thu Dec 27 10:54:48 2007 -0500
66751     Add 440EPx DDR2 SPD DIMM support
66753     This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM
66754     controller.  It should also work on the 440GRx.  It is based on the DDR2
66755     SPD code for the 440EP/440EPx, but makes no provision for DDR1 support.
66757     This code has been tested on prototype Korat boards with three Kingston
66758     DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC
66759     (two ranks).  The Korat board has a single DIMM socket, but support has
66760     been provided (though not tested) for boards with two DIMM sockets.
66762     Signed-off-by: Larry Johnson <lrj@acm.org>
66764 commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f
66765 Author: Larry Johnson <lrj@arlinx.com>
66766 Date:   Sat Dec 22 15:15:30 2007 -0500
66768     Copy 440EPx/GRx SDRAM data-eye search to common directory
66770     This patch creates a non-board-specific file for performing the SDRAM
66771     data-eye search.  It also adds ECC error checking to the test of valid
66772     data on readback when ECC is enabled.
66774     Signed-off-by: Larry Johnson <lrj@acm.org>
66776 commit c46f53333b22b1f9098676bea8884fc7db820cf3
66777 Author: Larry Johnson <lrj@arlinx.com>
66778 Date:   Sat Dec 22 15:15:13 2007 -0500
66780     Add definitions for 440EPx/GRx SDRAM controller to ppc440.h
66782     This patch adds the Denali SDRAM controller definitions to "ppc440.h".
66783     It also fixes two typos in the definitions, so the board-specific
66784     "sdram.h" files containing these definitions are also fixed to avoid
66785     compiler warnings.
66787     Signed-off-by: Larry Johnson <lrj@acm.org>
66789 commit c348578bf612d0c56d8d376d23cae16defbd86af
66790 Author: Larry Johnson <lrj@arlinx.com>
66791 Date:   Thu Dec 27 10:50:55 2007 -0500
66793     Add Ethernet 1000BASE-X support for PPC4xx
66795     This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG".  When this symbol
66796     is defined, the PHY will advertise it's capabilities for autonegotiation
66797     based on the capabilities shown in the PHY's status registers, including
66798     1000BASE-X.  When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will
66799     advertise hard-coded capabilities, as before.
66801     Signed-off-by: Larry Johnson <lrj@acm.org>
66803 commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3
66804 Author: Larry Johnson <lrj@arlinx.com>
66805 Date:   Thu Dec 27 09:52:17 2007 -0500
66807     Add driver for National Semiconductor LM73 temperature sensor
66809     This driver is based on the driver for the LM75.
66811     Signed-off-by: Larry Johnson <lrj@acm.org>
66813 commit 12618278688ea9b3d76536960a5ad2e3790fac40
66814 Author: Larry Johnson <lrj@arlinx.com>
66815 Date:   Sat Dec 22 15:14:00 2007 -0500
66817     Add driver for STMicroelectronics M41T60 RTC
66819     This driver is based on the driver for the M41T11.  In the intended
66820     application, the RTC will be powered by a large capacitor, rather than a
66821     battery.  The driver therefore checks to see whether the RTC has lost
66822     power.  The chip's OUT bit is normally reset from its power-up state.  If
66823     the OUT bit is read as set, or if the date and time are not valid, then the
66824     RTC is assumed to have lost power, and its date and time are reset to
66825     1900-01-01 00:00:00.
66827     Support for adjusting the speed of the clock to improve accuracy is
66828     provided through an environment variable.
66830     Signed-off-by: Larry Johnson <lrj@acm.org>
66832 commit d3471173e14b7544bb60339eda8d3d3906694b0a
66833 Author: Larry Johnson <lrj@arlinx.com>
66834 Date:   Sat Dec 22 15:34:39 2007 -0500
66836     Use out_be32() and friends to access memory-mapped registers in sequoia.c
66838     Signed-off-by: Larry Johnson <lrj@acm.org>
66840 commit c68f59fe3ec16769f82b5fca7421983c336d3aac
66841 Author: Larry Johnson <lrj@arlinx.com>
66842 Date:   Sat Dec 22 15:34:20 2007 -0500
66844     Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia
66846     Signed-off-by: Larry Johnson <lrj@acm.org>
66848 commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8
66849 Author: Larry Johnson <lrj@arlinx.com>
66850 Date:   Sat Dec 22 15:23:50 2007 -0500
66852     Cosmetic changes to ECC POST for AMCC Denali core
66854     Signed-off-by: Larry Johnson <lrj@acm.org>
66856 commit 2e583d6c81034f80a267b89fa55498ae063ccef1
66857 Author: Stefan Roese <sr@denx.de>
66858 Date:   Wed Dec 26 20:20:19 2007 +0100
66860     ppc4xx: Fix compilation problem in 405 cache POST test
66862     Signed-off-by: Stefan Roese <sr@denx.de>
66864 commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708
66865 Author: Stefan Roese <sr@denx.de>
66866 Date:   Sat Dec 22 12:20:09 2007 +0100
66868     ppc4xx: Move virtual address of POST cache test to bigger address
66870     On Sequoia & LWMON5 the virtual address of the POST cache test is now
66871     moved to a bigger address. This enables usage of more memory on those
66872     boards.
66874     Signed-off-by: Stefan Roese <sr@denx.de>
66876 commit d91722102cf63f77a0148ed3f3d54a26d87575e9
66877 Author: Stefan Roese <sr@denx.de>
66878 Date:   Sat Dec 22 12:18:26 2007 +0100
66880     ppc4xx: Fix problem in 44x cache POST routine
66882     As repoted by Larry Johnson, running "diag run cache" caused a crash
66883     in U-Boot. This problem was introduced by a patch that removed the
66884     TLB entry for the cache test after the test has completed. Since this
66885     TLB was only setup once, a 2nd attempt to run this cache test
66886     failed with a crash. Now this TLB entry is created every time the
66887     routine is called.
66889     Signed-off-by: Stefan Roese <sr@denx.de>
66891 commit b0265b576bb8fa9465f99e99c323768b562fadc2
66892 Author: Stefan Roese <sr@denx.de>
66893 Date:   Fri Dec 21 07:51:29 2007 +0100
66895     ppc4xx: Update Makalu fdt support
66897     Signed-off-by: Stefan Roese <sr@denx.de>
66899 commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea
66900 Author: Stefan Roese <sr@denx.de>
66901 Date:   Wed Dec 19 09:05:40 2007 +0100
66903     ppc4xx: Add fdt support to AMCC Katmai eval board
66905     Signed-off-by: Stefan Roese <sr@denx.de>
66907 commit 328a340392a5df9aaf00792be989df73e750859e
66908 Author: Stefan Roese <sr@denx.de>
66909 Date:   Tue Dec 18 08:44:51 2007 +0100
66911     ppc4xx: fdt: Cleanup setup of cpu node setup
66913     Now the cpu node setup ("timebase-frequency" and "clock-frequency") is
66914     without using the absolute path to the cpu node. This makes it possible
66915     to use this U-Boot version with both versions of cpu-node naming
66916     "cpu@0" and the former "PowerPC,440EPx@0".
66918     Signed-off-by: Stefan Roese <sr@denx.de>
66920 commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b
66921 Author: Stefan Roese <sr@denx.de>
66922 Date:   Mon Dec 17 17:26:21 2007 +0100
66924     ppc4xx: Fix lwmon5 compilation problem
66926     Now that the 440EPx ECC test is not board specific anymore
66927     remove this Makefile.
66929     Signed-off-by: Stefan Roese <sr@denx.de>
66931 commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62
66932 Author: Anatolij Gustschin <agustschin@t-online.de>
66933 Date:   Wed Dec 5 17:43:20 2007 +0100
66935     Fix ppc4xx clear_bss() code
66937     ppc4xx clear_bss() fails if BSS segment size is not
66938     divisible by 4 without remainder. This patch provides
66939     fix for this problem.
66941     Signed-off-by: Anatolij Gustschin <agust@denx.de>
66943 commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d
66944 Author: Niklaus Giger <niklausgiger@gmx.ch>
66945 Date:   Fri Nov 30 18:35:11 2007 +0100
66947     PPC4xx: Minimal changes to add vxWorks support
66949     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
66951 commit 052440b022ca8981d39b6f8c10d1aa6326f47480
66952 Author: Markus Klotzbücher <mk@denx.de>
66953 Date:   Fri Nov 23 13:09:18 2007 +0100
66955     ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config
66957     When using dhcp/bootp the "netmask" environment variable is not
66958     set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
66959     desireable, so the following patch adds this this option to the board
66960     config.
66962     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
66963     Signed-off-by: Stefan Roese <sr@denx.de>
66965 commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e
66966 Author: Larry Johnson <lrj@arlinx.com>
66967 Date:   Sat Oct 27 12:48:15 2007 -0400
66969     Fix/enhance ECC POST for 440EPx/GRx
66971     This patch allows the ECC POST to be used for different boards with the
66972     PPC440 Denali SDRAM controller.  Modifications include skipping the test
66973     if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization
66974     to prevent timing errors.
66976     Signed-off-by: Larry Johnson <lrj@acm.org>
66978 commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4
66979 Author: Larry Johnson <lrj@arlinx.com>
66980 Date:   Sat Oct 27 12:48:05 2007 -0400
66982     PPC4xx: Move/rename ECC POST for 440EPx/GRx
66984     Signed-off-by: Larry Johnson <lrj@acm.org>
66986 commit c29d2d3680046d430022c55e50fcb27f5866517e
66987 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66988 Date:   Fri Dec 14 11:20:33 2007 +0100
66990     ppc4xx: use correct io accessors for 4xx ethernet POST
66992     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66994 commit ba79fde58a48c0a6ff8e2a96caba951594142203
66995 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
66996 Date:   Fri Dec 14 11:19:56 2007 +0100
66998     ppc4xx: fix flush + invalidate_dcache_range arguments
67000     flush + invalidate_dcache_range() expect the start and stop+1 address.
67001     So the stop address is the first address behind (!) the range.
67003     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
67005 commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd
67006 Author: Stefan Roese <sr@denx.de>
67007 Date:   Fri Dec 14 08:41:29 2007 +0100
67009     ppc4xx: fdt: use fdt_fixup_ethernet()
67011     By using aliases in the dts file, the ethernet node fixup is
67012     much easier with the recently added functions.
67014     Please note that the dts file needs the aliases for this to work.
67016     Signed-off-by: Stefan Roese <sr@denx.de>
67018 commit 136288847e3b04f2ff357a067ad45e10afa0a24c
67019 Author: Stefan Roese <sr@denx.de>
67020 Date:   Thu Dec 13 14:52:53 2007 +0100
67022     ppc4xx: Bring 4xx fdt support up-to-date
67024     This patch update the 4xx fdt support. It enabled fdt booting
67025     on the AMCC Kilauea and Sequoia for now. More can follow later
67026     quite easily.
67028     Signed-off-by: Stefan Roese <sr@denx.de>
67030 commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e
67031 Author: Stefan Roese <sr@denx.de>
67032 Date:   Thu Dec 27 07:50:54 2007 +0100
67034     cfi_flash: Add missing check for erased dest to flash_write_cfibuffer()
67036     The check for an sufficiently erased destination was missing in the
67037     buffered write function of the cfi flash driver (when
67038     CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that
67039     writing to such a region will fail with the currect error message.
67041     Signed-off-by: Stefan Roese <sr@denx.de>
67043 commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994
67044 Author: Martin Krause <martin.krause@tqs.de>
67045 Date:   Mon Nov 12 10:56:17 2007 +0100
67047     Some configuration updates for the TQM5200 based TB5200 board:
67049     - enable command line history
67050     - increase malloc space (because of bigger flash sectors)
67052     Signed-off-by: Martin Krause <martin.krause@tqs.de>
67054 commit e318d9e9021a0af7508171f84ed09d0e79f0284e
67055 Author: Martin Krause <martin.krause@tqs.de>
67056 Date:   Thu Sep 27 11:10:08 2007 +0200
67058     TQM8xx: use the CFI flash driver on all TQM8xx boards
67060     Signed-off-by: Martin Krause <martin.krause@tqs.de>
67062 commit 11d9eec479b470eab9242ab937fca70a876d9376
67063 Author: Martin Krause <martin.krause@tqs.de>
67064 Date:   Wed Sep 26 17:55:56 2007 +0200
67066     TQM885D: adjust for doubled flash sector size + some minor fixes
67068     Signed-off-by: Martin Krause <martin.krause@tqs.de>
67070 commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83
67071 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
67072 Date:   Wed Sep 26 17:55:54 2007 +0200
67074     TQM885D: Exchanged SDRAM timing by a more relaxed timing.
67076     CAS-Latency=2, Write Recovery Time tWR=2
67077     The max. supported bus frequency is 66 MHz. Therefore, changed
67078     threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz.
67080     Signed-off-by: Martin Krause <martin.krause@tqs.de>
67082 commit b988b8cd443989be65161888eea0127ad03f846f
67083 Author: Martin Krause <martin.krause@tqs.de>
67084 Date:   Wed Sep 26 17:55:56 2007 +0200
67086     TQM885D: use calculated cpuclk instead of measuring it
67088     On the TQM885D the measurement of cpuclk with the PIT reference
67089     timer ist not necessary. Since all module variants use the same
67090     external 10 MHz oscillator, the cpuclk only depends on the PLL
67091     configuration - which is readable by software.
67093     Signed-off-by: Martin Krause <martin.krause@tqs.de>
67095 commit 492c7049869348d31168de8dad89651315e468e0
67096 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
67097 Date:   Thu Sep 27 14:54:46 2007 +0200
67099     TQM885D: fix SDRAM refresh
67101     At 133 MHz the current SDRAM refresh rate is too fast
67102     (measured 4 * 1.17 us).
67103     CFG_MAMR_PTA changes from 39 to 128. This result
67104     in a refresh rate of 4 * 7.8 us at the default clock
67105     66 MHz. At 133 MHz the value will be then 4 * 3.8 us.
67106     This is a compromise until a new method is found to
67107     adjust the refresh rate.
67109     Signed-off-by: Martin Krause <martin.krause@tqs.de>
67111 commit dabad4b9bc46908e301f73ce76b38b23626a96e9
67112 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
67113 Date:   Thu Sep 27 14:54:46 2007 +0200
67115     TQM860M: Support for 10col SDRAMs, max. 128 MiB
67117     Signed-off-by: Martin Krause <martin.krause@tqs.de>
67119 commit 61fb15c516fef5631e305f1976d7b3a679725856
67120 Author: Wolfgang Denk <wd@denx.de>
67121 Date:   Thu Dec 27 01:52:50 2007 +0100
67123     Fix coding style issues; update CHANGELOG.
67125     Signed-off-by: Wolfgang Denk <wd@denx.de>
67127 commit 467bcee11fe26ad422f2de971aa70866079870f2
67128 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67129 Date:   Fri Dec 14 15:36:18 2007 +0100
67131     cfi_flash: Add manufacturer-specific fixups
67133     Run fixups based on the JEDEC manufacturer ID independent of the
67134     command set ID.
67136     This changes current behaviour: Previously, geometry reversal for AMD
67137     chips were done based on the command set ID, while they are now done
67138     based on the JEDEC manufacturer and device ID.
67140     Also add fixup for top-boot Atmel chips. A fixup is needed for
67141     AT49BV6416(T) too, but since u-boot currently only reads the low byte
67142     of the device ID, there's no way to tell it apart from AT49BV642D,
67143     which should not have this fixup. Since AT49BV642D support is
67144     necessary to get ATNGW100 board support into mainline, I've commented
67145     out the fixup for now.
67147     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67149 commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a
67150 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67151 Date:   Fri Dec 14 15:36:17 2007 +0100
67153     cfi_flash: Add cmdset-specific init functions
67155     Move things like reading JEDEC IDs and fixing up geometry reversal
67156     into separate functions. The geometry reversal fixup is now performed
67157     by altering the qry structure directly, which makes the sector init
67158     code slightly cleaner.
67160     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67162 commit e23741f4a6d8047520ef0d4971762749b3587d32
67163 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67164 Date:   Fri Dec 14 15:36:16 2007 +0100
67166     cfi_flash: Read whole QRY structure in one go
67168     Read out the whole CFI Standard Query structure after successful cfi
67169     identification. This allows subsequent code to access this information
67170     directly without having to go through flash_read_uchar() and friends.
67172     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67174 commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db
67175 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67176 Date:   Mon Dec 17 11:02:44 2007 +0100
67178     AVR32: Fix logic inversion in disable_interrupts()
67180     disable_interrupts() should return nonzero if interrupts were
67181     _enabled_ before, not disabled.
67183     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67185 commit acac475212cbedb17b321a363a1c878e2b47b37f
67186 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67187 Date:   Fri Dec 14 16:51:22 2007 +0100
67189     AVR32: Enable interrupts at bootup
67191     The timer code depends on the timer interrupt to keep track of the
67192     upper 32 bits of the cycle counter. This obviously doesn't work when
67193     interrupts are disabled the whole time.
67195     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67197 commit 9570bcd87f4db255514f43b6701746c412f8fef0
67198 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67199 Date:   Thu Nov 15 10:03:45 2007 +0100
67201     AVR32: Fix wrong pin setup for USART3
67203     As reported by Gerhard Berghofer:
67205     in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18
67206     instead of PB18 and PB19.
67208     which is obviously correct. There's currently no code that uses
67209     USART3, but custom boards may run into problems.
67211     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67213 commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918
67214 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67215 Date:   Thu Nov 1 12:44:20 2007 +0100
67217     README: Remove ATSTK1000 daughterboard list
67219     As noted by Kim Phillips, these lists tend to become out of date.
67221     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67223 commit c81cbbad21cb0ae983e2e796211202234cdc8be2
67224 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67225 Date:   Tue Oct 30 14:56:36 2007 +0100
67227     Add ATSTK100[234] to MAINTAINERS
67229     Add all the ATSTK1000 daughterboards to MAINTAINERS along with their
67230     "mother". Also update the entry for ATSTK1000 to be not only about the
67231     AP7000 CPU; it's intended to handle all CPUs in the AT32AP family.
67233     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67235 commit 64ff2357b1727213803591813dbc779c924bf772
67236 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67237 Date:   Mon Oct 29 13:02:54 2007 +0100
67239     AVR32: Add support for the ATSTK1004 board
67241     ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU,
67242     which is a derivative of AT32AP7000.
67244     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67246 commit 667568db157f374b85abd7e03596ddd1f0b25681
67247 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67248 Date:   Mon Oct 29 13:02:54 2007 +0100
67250     AVR32: Add support for the ATSTK1003 board
67252     ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU,
67253     which is a derivative of AT32AP7000.
67255     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67257 commit 5fee84a794a51ec830548cda485a770efb018b92
67258 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67259 Date:   Mon Oct 29 13:23:33 2007 +0100
67261     AVR32: Make some AT32AP700x peripherals optional
67263     Add a chip-features file providing definitions of the form
67265     AT32AP700x_CHIP_HAS_<peripheral>
67267     to indicate the availability of the given peripheral on the currently
67268     selected chip.
67270     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67272 commit 36f28f8a9605ee5dcfa330482cfc62171261af97
67273 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67274 Date:   Mon Oct 29 13:09:56 2007 +0100
67276     AVR32: Rename at32ap7000 -> at32ap700x
67278     The SoC-specific code for all the AT32AP700x CPUs is practically
67279     identical; the only difference is that some chips have less features
67280     than others. By doing this rename, we can add support for the AP7000
67281     derivatives simply by making some features conditional.
67283     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67285 commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e
67286 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67287 Date:   Fri Jun 29 18:22:34 2007 +0200
67289     atmel_mci: Show SR when block read fails
67291     Show controller status as well as card status when an error occurs
67292     during block read.
67294     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67296 commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d
67297 Author: Stefan Roese <sr@denx.de>
67298 Date:   Thu Dec 13 14:52:53 2007 +0100
67300     ppc4xx: Bring 4xx fdt support up-to-date
67302     This patch update the 4xx fdt support. It enabled fdt booting
67303     on the AMCC Kilauea and Sequoia for now. More can follow later
67304     quite easily.
67306     Signed-off-by: Stefan Roese <sr@denx.de>
67308 commit 12d30aa79779c2aa7a998bbae4c075f822a53004
67309 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67310 Date:   Thu Dec 13 12:56:34 2007 +0100
67312     cfi_flash: Use map_physmem() and unmap_physmem()
67314     Use map_physmem() and unmap_physmem() to convert from physical to
67315     virtual addresses. This gives the arch a chance to provide an uncached
67316     mapping for flash accesses.
67318     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67320 commit 4d7d6936eb29af7cca330937808312aa5f61454d
67321 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67322 Date:   Thu Dec 13 12:56:33 2007 +0100
67324     Introduce map_physmem() and unmap_physmem()
67326     map_physmem() returns a virtual address which can be used to access a
67327     given physical address without involving the cache. unmap_physmem()
67328     should be called when the virtual address returned by map_physmem() is
67329     no longer needed.
67331     This patch adds a stub implementation which simply returns the
67332     physical address cast to a uchar * for all architectures except AVR32,
67333     which converts the physical address to an uncached virtual mapping.
67334     unmap_physmem() is a no-op on all architectures, but if any
67335     architecture needs to do such mappings through the TLB, this is the
67336     hook where those TLB entries can be invalidated.
67338     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67340 commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d
67341 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67342 Date:   Thu Dec 13 12:56:32 2007 +0100
67344     cfi_flash: Introduce read and write accessors
67346     Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use
67347     them to access the flash memory. This makes it clearer when the flash
67348     is actually being accessed; merely dereferencing a volatile pointer
67349     looks just like any other kind of access.
67351     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67353 commit 812711ce6b3a386125dcf0d6a59588e461abbb87
67354 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67355 Date:   Thu Dec 13 12:56:31 2007 +0100
67357     Implement __raw_{read,write}[bwl] on all architectures
67359     This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
67360     m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
67361     from Linux.
67363     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67365 commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd
67366 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67367 Date:   Sat Oct 6 18:55:36 2007 +0200
67369     cfi_flash: Reorder functions and eliminate extra prototypes
67371     Reorder the functions in cfi_flash.c so that each function only uses
67372     functions that have been defined before it. This allows the static
67373     prototype declarations near the top to be eliminated and might allow
67374     gcc to do a better job inlining functions.
67376     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67378 commit 3055793bcbdf24b1f8117f606ffb766d32eb766f
67379 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67380 Date:   Thu Dec 13 12:56:29 2007 +0100
67382     cfi_flash: Make some needlessly global functions static
67384     Make functions not declared in any header file static.
67386     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67388 commit 7e5b9b471518c5652febc68ba62b432193d6abf4
67389 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
67390 Date:   Thu Dec 13 12:56:28 2007 +0100
67392     cfi_flash: Break long lines
67394     This patch tries to keep all lines in the cfi_flash driver below 80
67395     columns. There are a few lines left which don't fit this requirement
67396     because I couldn't find any trivial way to break them (i.e. it would
67397     take some restructuring, which I intend to do in a later patch.)
67399     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
67401 commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a
67402 Author: Bartlomiej Sieka <tur@semihalf.com>
67403 Date:   Tue Dec 11 13:59:57 2007 +0100
67405     CFI: synchronize command offsets with Linux CFI driver
67407     Fixes non-working CFI Flash on the Inka4x0 board.
67409     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
67411 commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d
67412 Author: Kumar Gala <galak@kernel.crashing.org>
67413 Date:   Fri Dec 7 12:17:34 2007 -0600
67415     Handle MPC85xx PCIe reset errata (PCI-Ex 38)
67417     On the MPC85xx boards that have PCIe enable the PCIe errata fix.
67418     (MPC8544DS, MPC8548CDS, MPC8568MDS).
67420     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67422 commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c
67423 Author: Kumar Gala <galak@kernel.crashing.org>
67424 Date:   Fri Dec 7 12:04:30 2007 -0600
67426     Update Freescale MPC85xx ADS/CDS/MDS board config
67428     * Enabled CONFIG_CMD_ELF
67430     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67432 commit d435793229ce29a42797c1edc39f5b34f987f91a
67433 Author: Kumar Gala <galak@kernel.crashing.org>
67434 Date:   Fri Dec 7 04:59:26 2007 -0600
67436     Handle Asynchronous DDR clock on 85xx
67438     The MPC8572 introduces the concept of an asynchronous DDR clock with
67439     regards to the platform clock.
67441     Introduce get_ddr_freq() to report the DDR freq regardless of sync/async
67442     mode.
67444     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67446 commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10
67447 Author: Kumar Gala <galak@kernel.crashing.org>
67448 Date:   Thu Nov 29 10:34:28 2007 -0600
67450     Update Freescale MPC85xx ADS/CDS/MDS board config
67452     * Removed some misc environment setup
67453     * Enabled CONFIG_CMDLINE_EDITING
67455     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67457 commit 415a613babb84d5e5d5b42e8e553868c71fc3a64
67458 Author: Kumar Gala <galak@kernel.crashing.org>
67459 Date:   Thu Nov 29 10:47:44 2007 -0600
67461     Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
67463     Minor path corrections needed to ensure buildability.
67465     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67467 commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf
67468 Author: Kumar Gala <galak@kernel.crashing.org>
67469 Date:   Thu Nov 29 10:16:18 2007 -0600
67471     Move the MPC8540 ADS board under board/freescale.
67473     Minor path corrections needed to ensure buildability.
67475     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67477 commit 870ceac5b3a3486c109396e005af81ae762b5710
67478 Author: Kumar Gala <galak@kernel.crashing.org>
67479 Date:   Thu Nov 29 10:14:50 2007 -0600
67481     Move the MPC8560 ADS board under board/freescale.
67483     Minor path corrections needed to ensure buildability.
67485     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67487 commit acbca876fb3fec25cd9c55b0efc81ff618ff5262
67488 Author: Kumar Gala <galak@kernel.crashing.org>
67489 Date:   Thu Nov 29 10:13:47 2007 -0600
67491     Move the MPC8568 MDS board under board/freescale.
67493     Minor path corrections needed to ensure buildability.
67495     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67497 commit a853d56c59b33415304531443633808736acfc6e
67498 Author: Kumar Gala <galak@kernel.crashing.org>
67499 Date:   Thu Nov 29 02:18:59 2007 -0600
67501     Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx
67503     We already had defines for LAWAR_TRGT_IF_* that we should use
67504     rather than creating new ones.  Also, added some missing defines for
67505     PCIE targets.
67507     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67509 commit 04db400892da37b76a585e332a0c137954ad2015
67510 Author: Kumar Gala <galak@kernel.crashing.org>
67511 Date:   Thu Nov 29 02:10:09 2007 -0600
67513     Stop using immap_t on 85xx
67515     In the future the offsets to various blocks may not be in same location.
67516     Move to using CFG_MPC85xx_*_ADDR as the base of the registers
67517     instead of getting it via &immap.
67519     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67521 commit 2714223f8e04ab3e4133ff65872eef366d90bfea
67522 Author: Kumar Gala <galak@kernel.crashing.org>
67523 Date:   Thu Nov 29 01:23:09 2007 -0600
67525     Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt
67527     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67529 commit c480861bf000156e6a3e932c258db59ff2212dd3
67530 Author: Kumar Gala <galak@kernel.crashing.org>
67531 Date:   Thu Nov 29 01:06:19 2007 -0600
67533     Update MPC8568 MDS to use libfdt
67535     Updated the MPC8568 MDS config to use libfdt and assume use of aliases for
67536     ethernet, pci, and serial for the various fixups that are done.
67538     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67540 commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7
67541 Author: Haiying Wang <Haiying.Wang@freescale.com>
67542 Date:   Wed Nov 14 15:52:06 2007 -0500
67544     Add PCI Express support on MPC8568MDS
67546     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
67547     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67549 commit b90d25497625b90ffa3f2911a0895ca237556ff5
67550 Author: Kumar Gala <galak@kernel.crashing.org>
67551 Date:   Thu Nov 29 00:11:44 2007 -0600
67553     Update MPC85xx CDS to use libfdt
67555     Updated the MPC85xx CDS config to use libfdt and assume use of aliases for
67556     ethernet, pci, and serial for the various fixups that are done.
67558     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67560 commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255
67561 Author: Kumar Gala <galak@kernel.crashing.org>
67562 Date:   Wed Nov 28 22:54:27 2007 -0600
67564     Update MPC8540 ADS to use libfdt
67566     Updated the MPC8540 ADS config to use libfdt and assume use of aliases for
67567     ethernet, pci, and serial for the various fixups that are done.
67569     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67571 commit 5ce715802f6c50dc78b3405b92f184b1e3710519
67572 Author: Kumar Gala <galak@kernel.crashing.org>
67573 Date:   Wed Nov 28 22:40:31 2007 -0600
67575     Update MPC8560 ADS to use libfdt
67577     Updated the MPC8560 ADS config to use libfdt and assume use of aliases for
67578     ethernet, pci, and serial for the various fixups that are done.
67580     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67582 commit aafeefbdb8b029f5ca2a195598d0a501a606eea9
67583 Author: Kumar Gala <galak@kernel.crashing.org>
67584 Date:   Wed Nov 28 00:36:33 2007 -0600
67586     Stop using immap_t for cpm offset on 85xx
67588     In the future the offsets to various blocks may not be in same location.
67589     Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers
67590     instead of getting it via &immap->im_cpm.
67592     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67594 commit f59b55a5b8fcadaa99781ba48e7a38e956afa527
67595 Author: Kumar Gala <galak@kernel.crashing.org>
67596 Date:   Tue Nov 27 23:25:02 2007 -0600
67598     Stop using immap_t for guts offset on 85xx
67600     In the future the offsets to various blocks may not be in same location.
67601     Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
67602     instead of getting it via &immap->im_gur.
67604     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67606 commit 50c03c8cf494d91cdec39670d95337c743e16ec9
67607 Author: Kumar Gala <galak@kernel.crashing.org>
67608 Date:   Tue Nov 27 22:42:34 2007 -0600
67610     Update MPC8544 DS config
67612     * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2
67613     * Removed some misc environment setup
67614     * Moved to using fdtfile & fdtaddr as fdt env var names
67615     * Enabled CONFIG_CMDLINE_EDITING
67617     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67619 commit addce57e2e4c49e77ffb2020a84690713bb18b47
67620 Author: Kumar Gala <galak@kernel.crashing.org>
67621 Date:   Mon Nov 26 17:12:24 2007 -0600
67623     Update MPC8544DS to use libfdt
67625     Updated the MPC8544DS config to use libfdt and assume use of aliases for
67626     ethernet, pci, and serial for the various fixups that are done.
67628     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67630 commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65
67631 Author: Kumar Gala <galak@kernel.crashing.org>
67632 Date:   Thu Nov 29 00:15:30 2007 -0600
67634     Add libfdt based ft_cpu_setup for mpc85xx
67636     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67638 commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9
67639 Author: Stefan Roese <sr@denx.de>
67640 Date:   Tue Dec 11 13:38:19 2007 +0100
67642     ppc4xx: Correct GPIO offset in gpio_config()
67644     Thanks to Gary Jennejohn for pointing this out.
67646     Signed-off-by: Stefan Roese <sr@denx.de>
67648 commit 8809a2713b1ceaf3da55d9d785470294f15de06a
67649 Author: Stefan Roese <sr@denx.de>
67650 Date:   Tue Dec 11 11:46:01 2007 +0100
67652     rtc: Fix merging problem
67654     Signed-off-by: Stefan Roese <sr@denx.de>
67656 commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b
67657 Author: Stefan Roese <sr@denx.de>
67658 Date:   Sat Dec 8 14:47:34 2007 +0100
67660     ppc4xx: 405EX: Correctly enable USB pins
67662     This patch selects the USB data pins in the 405EX GPIO and MFC (multi
67663     function control) registers. This is done for the AMCC Kilauea and
67664     Makalu eval boards.
67666     Signed-off-by: Stefan Roese <sr@denx.de>
67668 commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39
67669 Author: Stefan Roese <sr@denx.de>
67670 Date:   Sat Dec 8 08:25:09 2007 +0100
67672     CFI: Coding style cleanup
67674     Signed-off-by: Stefan Roese <sr@denx.de>
67676 commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22
67677 Author: Michael Schwingen <michael@schwingen.org>
67678 Date:   Fri Dec 7 23:35:02 2007 +0100
67680     CFI: support JEDEC flash roms in CFI-flash framework
67682     The following patch adds support for non-CFI flash ROMS, by hooking into the
67683     CFI flash code and using most of its code, as recently discussed here in the
67684     thread "Mixing CFI and non-CFI flashs".
67686     Signed-off-by: Michael Schwingen <michael@schwingen.org>
67687     Signed-off-by: Stefan Roese <sr@denx.de>
67689 commit c01b17dd856fa120b2970f50d9598546a4927ec3
67690 Author: Gerald Van Baren <vanbaren@cideas.com>
67691 Date:   Wed Nov 28 21:24:50 2007 -0500
67693     Conditionally compile fdt_fixup_ethernet()
67695     Fix compiler warnings: On boards that don't have ethernets defined,
67696     don't compile fdt_fixup_ethernet().
67698 commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7
67699 Author: Kumar Gala <galak@kernel.crashing.org>
67700 Date:   Tue Nov 27 21:59:46 2007 -0600
67702     Convert boards that set memory node to use fdt_fixup_memory()
67704     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67706 commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058
67707 Author: Kumar Gala <galak@kernel.crashing.org>
67708 Date:   Mon Nov 26 17:06:15 2007 -0600
67710     Added fdt_fixup_stdout that uses aliases to set linux,stdout-path
67712     We use a combination of the serialN alias and CONFIG_CONS_INDEX to
67713     determine which serial alias we should set linux,stdout-path to.
67715     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67717 commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc
67718 Author: Kumar Gala <galak@kernel.crashing.org>
67719 Date:   Mon Nov 26 14:57:45 2007 -0600
67721     Add common memory fixup function
67723     Add the function fdt_fixup_memory() to fixup the /memory node of the fdt
67725     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67727 commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157
67728 Author: Kumar Gala <galak@kernel.crashing.org>
67729 Date:   Mon Nov 26 11:19:12 2007 -0600
67731     Conditionally compile fdt_support.c
67733     Modify common/Makefile to conditionally compile fdt_support.c based
67734     on CONFIG_OF_LIBFDT.
67736     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67738 commit d88e7ba0980773479e1a64badb293116071b7ef0
67739 Author: Kumar Gala <galak@kernel.crashing.org>
67740 Date:   Mon Nov 26 10:41:40 2007 -0600
67742     Fix build breakage due to libfdt import
67744     The IDS8247 got lost in the update and need an API update
67745     do to rename of functions in libfdt.
67747     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67749 commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714
67750 Author: Gerald Van Baren <vanbaren@cideas.com>
67751 Date:   Fri Nov 23 19:43:20 2007 -0500
67753     Add spaces around the = in the fdt print format.
67755     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67757 commit 29592ecba3b932b9b152bcec6c0c0806412db4a3
67758 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67759 Date:   Fri Dec 7 01:25:38 2007 +0900
67761     sh: Moved driver of the SuperH dependence
67763     The composition of the directory in the drivers/ changed.
67764     I moved SuperH serial driver and marubun PCMCIA driver.
67766     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67768 commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2
67769 Author: Wolfgang Denk <wd@denx.de>
67770 Date:   Thu Dec 6 10:21:19 2007 +0100
67772     Release v1.3.1
67774     Signed-off-by: Wolfgang Denk <wd@denx.de>
67776 commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb
67777 Author: Wolfgang Denk <wd@denx.de>
67778 Date:   Thu Dec 6 10:21:03 2007 +0100
67780     ADS5121 Board: fix compile problem.
67782     Signed-off-by: Wolfgang Denk <wd@denx.de>
67784 commit a27044b14a9e93678a82d7b35f202b93e7687abc
67785 Author: Stefan Roese <sr@denx.de>
67786 Date:   Thu Dec 6 05:58:43 2007 +0100
67788     ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards
67790     This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by
67791     setting the FIXD bit in the SDR0_MFR register. Here a description of the
67792     symptoms:
67794     Problem Description
67795     ------------------------------
67796     If a DMA is performed between memory and PCI with the DMA 1 Controller
67797     using prefetch, and as a result uses a special purpose buffer selected by
67798     the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29),
67799     the first part of the transfer sequence is performed twice. The
67800     PPC440SPe PCI Controller requests more data than was needed such that in
67801     the case of enforce memory protection, a host CPU  exception can occur.
67802     No data is corrupted, because data transfer is stopped in the PCI
67803     Controller. Prefetch enable is specified by setting DMA Configuration
67804     Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0.
67806     Behavior that may be observed in a running system
67807     ---------------------------------------------------------------------------
67809     1. DMA performance is decreased because of the double access on the PCI bus
67810     interface.
67811     2. If an illegal access to some address on the PCI bus is detected at the
67812     system level, a machine check or similar system error may occur.
67814     Workarounds Available
67815     ----------------------------------
67817     1. Do not program prefetch. Note that a prefetch command cannot be programmed
67818     without selecting a special purpose buffer.
67819     2. To avoid crossing a physical boundary of the PCI slave device, add 512
67820     bytes of address to the PCI address range.
67822     This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com>
67823     from AMCC and slighly changed.
67825     Signed-off-by: Pravin M. Bathija <pbathija@amcc.com>
67826     Signed-off-by: Stefan Roese <sr@denx.de>
67828 commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a
67829 Author: Stefan Roese <sr@denx.de>
67830 Date:   Tue Dec 4 16:29:48 2007 +0100
67832     ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support
67834     Signed-off-by: Stefan Roese <sr@denx.de>
67836 commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d
67837 Author: Wolfgang Denk <wd@denx.de>
67838 Date:   Mon Dec 3 00:15:28 2007 +0100
67840     Prepare for 1.3.1-rc1
67842     Signed-off-by: Wolfgang Denk <wd@denx.de>
67844 commit e15e33433e7c05111968dc9b434a52fd42cbd221
67845 Author: Stefan Roese <sr@denx.de>
67846 Date:   Fri Nov 30 07:15:41 2007 +0100
67848     ppc4xx: Kilauea: Add PCIe reset assertion upon power-up
67850     This manual PCIe reset triggering solves the problem seen with the
67851     Intel EPRO/1000 card, which was not detected (link not established)
67852     upon power-up reset.
67854     Signed-off-by: Stefan Roese <sr@denx.de>
67856 commit 260eea5676ca46903a335686cc020b29c4ca46fe
67857 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67858 Date:   Thu Nov 29 01:21:54 2007 +0900
67860     sh: Add SuperH boards maintainer to MAINTAINERS file
67862     Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file.
67864     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67866 commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747
67867 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67868 Date:   Thu Nov 29 00:13:04 2007 +0900
67870     sh: Add ms7750se support in MAKEALL
67872     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67874 commit c7144373427a178332bf9754131c8c34c52c200a
67875 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67876 Date:   Tue Nov 27 09:44:53 2007 +0100
67878     sh: Add sh3 and sh4 support in MAKEALL
67880     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67881     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67883 commit 130080874a3d28450098481a262c5f7c855e908d
67884 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67885 Date:   Sun Nov 25 02:51:17 2007 +0900
67887     sh: Add document for SuperH.
67889     This document is a summary of information concerning SuperH of U-Boot.
67891     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67893 commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d
67894 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67895 Date:   Sun Nov 25 02:39:31 2007 +0900
67897     sh: Add marubun's pcmcia driver
67899     Marubun pcmcia is a chip for PCMCIA used with SuperH.
67900     Of course, this can be used even by other architectures.
67901     When use this driver, came to be able to use CompactFlash
67902     and Ethernet.
67904     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67906 commit febd86b969b975289ed948f1ac0eb9722da41ced
67907 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67908 Date:   Sun Nov 25 02:32:13 2007 +0900
67910     sh: Update SuperH SCIF driver
67912     - Changed volatile unsigned to vu_.
67913     - Changed Makefile for kconfig.
67915     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67917 commit 8be760903645af09871be50ad0a6f9ebb62b311d
67918 Author: Stefan Roese <sr@denx.de>
67919 Date:   Tue Nov 27 11:57:35 2007 +0100
67921     ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing
67923     After an error in the AMCC 405EX users manual now correctly configure
67924     IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ
67925     usage.
67927     Signed-off-by: Stefan Roese <sr@denx.de>
67929 commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788
67930 Author: Wolfgang Denk <wd@denx.de>
67931 Date:   Mon Nov 26 19:18:21 2007 +0100
67933     Cleanup coding style; update CHANGELOG
67935     Signed-off-by: Wolfgang Denk <wd@denx.de>
67937 commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b
67938 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67939 Date:   Sun Nov 25 22:39:25 2007 +0100
67941     MAKEALL: add missing 512x boards in ppc
67943     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67945 commit a340c325e668ca7386c2276387681720be9c3757
67946 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67947 Date:   Sun Nov 25 18:45:47 2007 +0100
67949     Makefile : fix tags ctags etags with new drivers organization
67951     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67953 commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e
67954 Author: Stefan Roese <sr@denx.de>
67955 Date:   Mon Nov 26 15:06:14 2007 +0100
67957     ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage
67959     As suggested by Senao, use a different EBC_PB0AP setup for 400MHz
67960     operation.
67962     Signed-off-by: Stefan Roese <sr@denx.de>
67964 commit ca1ce226287270bb01e25b8e3674c701f12edf19
67965 Author: Stefan Roese <sr@denx.de>
67966 Date:   Mon Nov 26 15:01:45 2007 +0100
67968     ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt
67970     Signed-off-by: Stefan Roese <sr@denx.de>
67972 commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d
67973 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67974 Date:   Sun Nov 25 18:45:47 2007 +0100
67976     Makefile : fix tags ctags etags with new drivers organization
67978     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67980 commit 59829cc189378c142c13d2aa8d9a897d8bef3961
67981 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67982 Date:   Sat Nov 24 21:26:56 2007 +0100
67984     drivers/mtd : move mtd drivers to drivers/mtd
67986     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67988 commit 318c0b90431f2648552e5ade78833f42652ce859
67989 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67990 Date:   Sat Nov 24 21:17:55 2007 +0100
67992     drivers/misc : move misc drivers to drivers/misc
67994     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67996 commit 33daf5b7858807cb4ce4158c2c56524671c14c08
67997 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
67998 Date:   Sat Nov 24 21:13:59 2007 +0100
68000     drivers/block : move block drivers to drivers/block
68002     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68004 commit 0c698dcaa70275eb8814f665b545547cee013892
68005 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68006 Date:   Sat Nov 24 20:59:50 2007 +0100
68008     drivers/rtc : move rtc drivers to drivers/rtc
68010     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68012 commit f868cc5a50757d94f36c312395481cb0f187d9e6
68013 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68014 Date:   Sat Nov 24 20:14:44 2007 +0100
68016     drivers/hwmon : move hardware monitor drviers to drivers/hwmon
68018     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68020 commit 16b195c82a18cbfd164800f17a1ef9db2e48331a
68021 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68022 Date:   Sat Nov 24 19:46:45 2007 +0100
68024     drivers/input : move input drivers to drivers/input
68026     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68028 commit e4558666293364fc3af1c1d9381ca933fa0f1275
68029 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68030 Date:   Sat Nov 24 19:40:11 2007 +0100
68032     drivers/usb : move usb drivers to drivers/usb
68034     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68036 commit 1378df792a7ff3abd1bf54a63f5475784f5b083c
68037 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68038 Date:   Sat Nov 24 19:33:38 2007 +0100
68040     drivers/serial : move serial drivers to drivers/serial
68042     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68044 commit 2439e4bfa111babf4bc07ba20efbf3e36036813e
68045 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68046 Date:   Wed Nov 21 21:19:24 2007 +0100
68048     drivers/net : move net drivers to drivers/net
68050     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68052 commit 352d259130b349fe9593b8dada641bd78a9659e5
68053 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68054 Date:   Tue Nov 20 20:41:48 2007 +0100
68056     drivers/video : move video drivers to drivers/video
68058     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68060 commit 73646217186aa17afc8e305c5f06f06dd335eaad
68061 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68062 Date:   Tue Nov 20 20:33:09 2007 +0100
68064     drivers/pcmcia : move pcmcia drivers to drivers/pcmcia
68066     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68068 commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc
68069 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68070 Date:   Tue Nov 20 20:28:09 2007 +0100
68072     drivers/pci : move pci drivers to drivers/pci
68074     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68076 commit 9162352817579840d7802da6d85872b3ca003c97
68077 Author: Gerald Van Baren <vanbaren@cideas.com>
68078 Date:   Thu Nov 22 17:23:23 2007 -0500
68080     Fix fdt printing for updated libfdt
68082     Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup.
68084     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
68086 commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c
68087 Author: Kumar Gala <galak@kernel.crashing.org>
68088 Date:   Wed Nov 21 13:30:15 2007 -0600
68090     Add additional fdt fixup helper functions
68092     Added the following fdt fixup helpers:
68093      * do_fixup_by_prop{_u32} - Find matching nodes by property name/value
68094      * do_fixup_by_compat{_u32} - Find matching nodes by compat
68096     The _u32 variants work the same only the property they are setting
68097     is know to be a 32-bit integer instead of a byte buffer.
68099     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
68101 commit ab544633abdd14f4dd5d92e500b73eb59ef57e67
68102 Author: Kumar Gala <galak@kernel.crashing.org>
68103 Date:   Wed Nov 21 11:11:03 2007 -0600
68105     Add fdt_fixup_ethernet helper to set mac addresses
68107     Added a fixup helper that uses aliases to set mac addresses
68108     in the device tree based on the bd_t
68110     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
68112 commit dbaf07ce620aab249e3502b20a986234a6af1d3a
68113 Author: Kumar Gala <galak@kernel.crashing.org>
68114 Date:   Wed Nov 21 14:07:46 2007 -0600
68116     Fix warnings from import of libfdt
68118     cmd_fdt.c: In function fdt_print:
68119     cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type
68120     cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type
68121     cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type
68122     cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type
68124     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
68126 commit 8d04f02f6224e6983f4812ea4da704950ec8539c
68127 Author: Kumar Gala <galak@kernel.crashing.org>
68128 Date:   Wed Oct 24 11:04:22 2007 -0500
68130     Update libfdt from device tree compiler (dtc)
68132     Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
68133     the device tree compiler (dtc) project.
68135     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
68137 commit e93becf80d732b64aef81b23e8b6ece02c40533d
68138 Author: Kumar Gala <galak@kernel.crashing.org>
68139 Date:   Sat Nov 3 19:46:28 2007 -0500
68141     Move do_fixup* for libfdt into common code
68143     Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
68144     into common/fdt_support.c and renamed:
68146     do_fixup()  -> do_fixup_by_path()
68147     do_fixup_u32()      -> do_fixup_by_path_u32()
68149     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
68151 commit f738b4a75998f42a7408defadc9baac7a31c92db
68152 Author: Kumar Gala <galak@kernel.crashing.org>
68153 Date:   Thu Oct 25 16:15:07 2007 -0500
68155     Make no options to fdt print default to '/'
68157     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
68159 commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7
68160 Author: Kumar Gala <galak@kernel.crashing.org>
68161 Date:   Wed Oct 24 10:21:57 2007 -0500
68163     Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt
68165     Removed:
68166         fdt_node_is_compatible
68167         fdt_find_node_by_type
68168         fdt_find_compatible_node
68170     To ease merge of newer libfdt as we aren't using them anywhere at this time.
68172     Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same
68173     reason.
68175     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
68177 commit 98e2867cc85409b919f862e6c16026461ec955df
68178 Author: Grant Likely <grant.likely@secretlab.ca>
68179 Date:   Wed Nov 21 09:19:37 2007 -0700
68181     [BUILD] Remove libraries when updating autoconf.mk
68183     Fix library problems caused by conditional compilation.  Using
68184     autoconf.mk to decide which files to compile has caused a problem when
68185     changing configuration from one board to another without clearing out
68186     the library (*.a) files.
68188     It used to be that the linker was always passed the same list of .o
68189     files when building the .a files.  However, that is not longer true
68190     with conditional compilation.  Now, a different board config will have
68191     a different file list passed to the linker.  The problem occurs when
68192     a library has already been built and the board config is changed.
68194     Since the linker will update instead of replace a preexisting library,
68195     then if the file list changes to remove some object files the old
68196     objects will still exist in the library.
68198     The solution is to remove all old library files when autoconf.mk is
68199     made.
68201     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68203 commit ed1353d74b9ce8a7fcd660570b848a184d614b5f
68204 Author: Kumar Gala <galak@kernel.crashing.org>
68205 Date:   Wed Nov 21 08:49:50 2007 -0600
68207     [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
68209     Modify libfdt/Makefile to conditionally compile the *.c files based
68210     on the board config.
68212     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
68214 commit 4a43719a7738712811d822ca8125427b27a55cdc
68215 Author: Grant Likely <grant.likely@secretlab.ca>
68216 Date:   Mon Sep 24 09:05:31 2007 -0600
68218     [BUILD] conditionally compile common/cmd_*.c in common/Makefile
68220     Modify common/Makefile to conditionally compile the cmd_*.c files based
68221     on the board config.
68223     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68225 commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1
68226 Author: Grant Likely <grant.likely@secretlab.ca>
68227 Date:   Mon Sep 24 09:05:31 2007 -0600
68229     [BUILD] Generate include/autoconf.mk from board config files
68231     Use cpp and sed to postprocess config.h and import the defined values
68232     into include/autoconf.mk.  autoconf.mk is then included by config.mk to
68233     give 'make' access to the board configuration.
68235     Doing this enables conditional compilation at the Makefile level instead
68236     of by wrapping every .c file with #ifdef/#endif wrappers.
68238     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68240 commit 68b88999da87ab88e71e1306192905be3450198e
68241 Author: Jon Loeliger <jdl@freescale.com>
68242 Date:   Tue Nov 20 15:02:26 2007 -0600
68244     8610HPCD: Enable the 8610 Display Interface Unit
68246     Signed-off-by: Jon Loeliger <jdl@freescale.com>
68248 commit 74f89faa9d1e77ed947e628d3effaa513fe05d05
68249 Author: Jon Loeliger <jdl@freescale.com>
68250 Date:   Tue Nov 20 15:00:53 2007 -0600
68252     Move 8610 DIU interface structure definitions to header file.
68254     These two structures are still needed during the
68255     initialization and setup of the DIU hardware.
68256     So move them to the fsl_diu_fb.h file for now.
68257     Official "blah".
68259     Noticed-by: York Sun <yorksun@freescale.com>
68260     Signed-off-by: Jon Loeliger <jdl@freescale.com>
68262 commit 080c646dbf474a109c3f85718fb01ce042a38c45
68263 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68264 Date:   Tue Nov 20 20:14:18 2007 +0100
68266     drivers/i2c : move i2c drivers to drivers/i2c
68268     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68270 commit 9a337ddc154a10a26f117fd147b009abcdeba75a
68271 Author: Wolfgang Denk <wd@denx.de>
68272 Date:   Mon Nov 19 22:20:24 2007 +0100
68274     Prepare for 1.3.0 release.
68276     Signed-off-by: Wolfgang Denk <wd@denx.de>
68278 commit f30ad49b16bf998b03c1a5228b6c86369d61c258
68279 Author: Haiying Wang <Haiying.Wang@freescale.com>
68280 Date:   Mon Nov 19 10:02:13 2007 -0500
68282     Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS
68284     CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it.
68286     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
68288 commit f8c320609366176b31104d9bf5e295232e1c7f1d
68289 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
68290 Date:   Mon Nov 19 11:14:16 2007 +0900
68292     [MIPS] board/gth2/lowlevel_init.S: Fix a build warning
68294     lowlevel_init.S: Assembler messages:
68295     lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local.
68297     Looking at codes, the `memtest' and `clearmem' are intentional mixed
68298     use of `global symbols' and `label' for debugging purpose. To make it
68299     build, just disable global-symbols-use for now. As a result `memtest'
68300     still remains as unused, but leave it be...
68302     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
68304 commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab
68305 Author: Wolfgang Denk <wd@denx.de>
68306 Date:   Mon Nov 19 12:59:14 2007 +0100
68308     Fix build problems with mp2usb board
68310     Signed-off-by: Wolfgang Denk <wd@denx.de>
68312 commit 6bf4c686afca1e86e1c384d59218f914605713bf
68313 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68314 Date:   Sun Nov 18 18:36:11 2007 +0100
68316     s3c24x0: Fix usb_ohci.c missing in Makefile
68317     and usb_ohci.c warning differ in signedness
68319     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68321 commit 6073f61e078da5ddb521b56256bcc36508589883
68322 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68323 Date:   Sun Nov 18 12:55:02 2007 +0100
68325     pb1x00 board: Fix u16 status declaration when PCMCIA is defined
68327     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68329 commit 8412d814ce8bf5570a2b747f1e7fd321097fe987
68330 Author: Wolfgang Denk <wd@denx.de>
68331 Date:   Sun Nov 18 17:11:09 2007 +0100
68333     Fix compiler warnings for ARM systems.
68335     Signed-off-by: Wolfgang Denk <wd@denx.de>
68337 commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37
68338 Author: Wolfgang Denk <wd@denx.de>
68339 Date:   Sun Nov 18 16:36:27 2007 +0100
68341     Fix compiler warnings for PPC systems. Update CHANGELOG.
68343     Signed-off-by: Wolfgang Denk <wd@denx.de>
68345 commit 653811a3c2b35856bf12e196dcc8c4694e28e420
68346 Author: Stefan Roese <sr@denx.de>
68347 Date:   Sun Nov 18 14:44:44 2007 +0100
68349     ppc4xx: Correct 405EX PCIe UTL register mapping
68351     Map 4k mem space for UTL registers for each port.
68353     Signed-off-by: Stefan Roese <sr@denx.de>
68355 commit 079c2c4fa71c0d1ebef394508df9088df8a308d3
68356 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68357 Date:   Sat Nov 17 11:31:10 2007 +0100
68359     Fix warning differ in signedness in net/net.c and net/nfs.c
68361 commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81
68362 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68363 Date:   Sat Nov 17 20:42:45 2007 +0900
68365     gth2.c: Fix a warning on gth2 build.
68367     gth2.c: In function 'misc_init_r':
68368     gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
68370     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68372 commit 2309c130aa4c84b91bd874a41269c923eb61b555
68373 Author: Stefan Roese <sr@denx.de>
68374 Date:   Sat Nov 17 07:58:25 2007 +0100
68376     Fix warning differ in signedness in common/cmd_scsi.c
68378     Signed-off-by: Stefan Roese <sr@denx.de>
68380 commit 9ea61b57968554eaf0f474ec7e088b17d367f474
68381 Author: Stefan Roese <sr@denx.de>
68382 Date:   Sat Nov 17 14:52:29 2007 +0100
68384     ppc4xx: Update AMCC Kilauea config file
68386     - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
68388     Signed-off-by: Stefan Roese <sr@denx.de>
68390 commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c
68391 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68392 Date:   Sat Nov 17 20:05:26 2007 +0900
68394     [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
68396     Current trick to pick up GNU assembler minor version does not work with the
68397     latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
68398     "(GNU Binutils) ".
68400       $ sde-as --version |grep "GNU assembler"
68401       GNU assembler 2.15.94 mipssde-6.02.02-20050602
68402       $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
68403       2.15.94
68404       $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
68405       15
68406       $
68408       $ mips-linux-as --version |grep "GNU assembler"
68409       GNU assembler (GNU Binutils) 2.18
68410       $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
68411       (GNU
68412       $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
68413       (no output)
68414       $
68416     As a result of above, you'll see many noises with such binutils:
68418       make -C cpu/mips/
68419       /bin/sh: line 0: [: : integer expression expected
68420       /bin/sh: line 0: [: : integer expression expected
68421       make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
68422       mips-linux-gcc  -D__ASSEMBLY__ -g  -Os   -D__KERNEL__ -DTEXT_BASE=0xB0000000  -I/home/skuribay/devel/u-boot.git/include -fno-builtin -ffreestanding -nostdinc -isystem /home/skuribay/devel/buildroot/build_mips/staging_dir/usr/bin/../lib/gcc/mips-linux-uclibc/4.2.1/include -pipe  -DCONFIG_MIPS -D__MIPS__ -G 0 -mabicalls -fpic -pipe -msoft-float -march=4kc -mtune=4kc -EB -c -o incaip_wdt.o incaip_wdt.S
68423       /bin/sh: line 0: [: : integer expression expected
68424       mips-linux-gcc  -D__ASSEMBLY__ -g  -Os   -D__KERNEL__ -DTEXT_BASE=0xB0000000  -I/home/skuribay/devel/u-boot.git/include -fno-builtin -ffreestanding -nostdinc -isystem /home/skuribay/devel/buildroot/build_mips/staging_dir/usr/bin/../lib/gcc/mips-linux-uclibc/4.2.1/include -pipe  -DCONFIG_MIPS -D__MIPS__ -G 0 -mabicalls -fpic -pipe -msoft-float -march=4kc -mtune=4kc -EB -c -o cache.o cache.S
68425       /bin/sh: line 0: [: : integer expression expected
68426       mips-linux-gcc -g  -Os   -D__KERNEL__ -DTEXT_BASE=0xB0000000  -I/home/skuribay/devel/u-boot.git/include -fno-builtin -ffreestanding -nostdinc -isystem /home/skuribay/devel/buildroot/build_mips/staging_dir/usr/bin/../lib/gcc/mips-linux-uclibc/4.2.1/include -pipe  -DCONFIG_MIPS -D__MIPS__ -G 0 -mabicalls -fpic -pipe -msoft-float -march=4kc -mtune=4kc -EB -Wall -Wstrict-prototypes -c -o asc_serial.o asc_serial.c
68427       /bin/sh: line 0: [: : integer expression expected
68429     This patch simplifies the trick and makes it work with both versions of gas.
68430     I also replace an expensive `awk (or gawk)' with `cut'.
68432     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68434 commit 16664f72850846e645616da1c0fa5afcd6d15f15
68435 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68436 Date:   Sat Nov 17 20:05:26 2007 +0900
68438     [MIPS] Remove useless instructions for initializing $gp.
68440     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68442 commit 03c031d5660ea946c39af6e2e16267da857c609f
68443 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68444 Date:   Sat Oct 27 15:27:06 2007 +0900
68446     [MIPS] MIPS 4K core: Coding style cleanups
68448     No logical changes.
68450     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68452 commit f5e429d3860bba4c6ae8bead8f78349fa24491b2
68453 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68454 Date:   Sat Nov 17 20:05:20 2007 +0900
68456     [MIPS] gth2.c: Fix a warning on gth2 build.
68458     gth2.c: In function 'misc_init_r':
68459     gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
68461     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68463 commit 4fbd0741b2b6441da10be93e10267122581b7079
68464 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68465 Date:   Sat Oct 27 15:22:33 2007 +0900
68467     [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.
68469     au1x00_eth.c: In function 'au1x00_miiphy_write':
68470     au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void
68472     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68474 commit f01320459736f156707425cf8112f98606301aa4
68475 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68476 Date:   Sat Oct 27 15:00:25 2007 +0900
68478     [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error
68480     au1x00_eth.c: In function 'au1x00_enet_initialize':
68481     au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)
68482     au1x00_eth.c:246: error: (Each undeclared identifier is reported only once
68483     au1x00_eth.c:246: error: for each function it appears in.)
68484     au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)
68485     au1x00_eth.c: In function 'au1x00_miiphy_write':
68486     au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void
68487     make[1]: *** [au1x00_eth.o] Error 1
68489     Fixed by moving these two functions forward.
68491     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68493 commit b09258c5393edd1087c5f39ae68338f16b49f8b3
68494 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68495 Date:   Sat Oct 27 15:00:25 2007 +0900
68497     MAKEALL: Added missing pb1000 board
68499     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68501 commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369
68502 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68503 Date:   Sat Oct 27 15:00:24 2007 +0900
68505     [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S
68507     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68509 commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82
68510 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68511 Date:   Sat Oct 27 15:00:24 2007 +0900
68513     [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
68515     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68517 commit 5947f6999aafa7c54c1390983d264a8463dfea8e
68518 Author: Wolfgang Denk <wd@denx.de>
68519 Date:   Sat Nov 17 02:34:38 2007 +0100
68521     Update CHANGELOIG, prepare for -rc4
68523     Signed-off-by: Wolfgang Denk <wd@denx.de>
68525 commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5
68526 Author: Luotao Fu <l.fu@pengutronix.de>
68527 Date:   Wed Nov 14 18:58:33 2007 +0100
68529     Fix the i2c frequency and default address in rsdproto board
68531     rsdproto board support has wrong I2C frequency and wrong return value
68532     handling.
68534     Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
68536 commit 429c180edad038f91c989cb14b478228092e7054
68537 Author: Wolfgang Denk <wd@denx.de>
68538 Date:   Sat Nov 17 01:45:38 2007 +0100
68540     powerpc: Backout relocation changes for MPC5121, too.
68542     Apply Grant Likely's backout to MPC5121 code, too.
68544     Pointed out by Rafal Jaworowski <raj@semihalf.com>
68546     Signed-off-by: Wolfgang Denk <wd@denx.de>
68548 commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8
68549 Author: Grant Likely <grant.likely@secretlab.ca>
68550 Date:   Tue Nov 13 22:18:33 2007 -0700
68552     powerpc: Backout relocation changes.
68554     Ugh.  I *hate* to back this change out, but these compiler flags don't
68555     work for relocation on all versions of GCC.  I've not been able to
68556     reproduce the environment in my setup (and hence, not been able to
68557     find a combination that *does* work), so I've got no choice but to go
68558     back to the old gcc flags and linker script.
68560     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68562 commit 5c15010efad980ad5498cc565fc1ed70df2f52b4
68563 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68564 Date:   Tue Nov 13 09:11:05 2007 +0100
68566     Fixed mips_io_port_base build errors.
68568     This patch has been sent on:
68569     - 29 Sep 2007
68571     Although mips_io_port_base is currently a part of IDE command, it is quite
68572     fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move
68573     it to MIPS general part, and introduce `set_io_port_base()' from Linux.
68575     This patch is triggered by multiple definition of `mips_io_port_base' build
68576     error on gth2 (and tb0229 also needs this fix.)
68578     board/gth2/libgth2.a(gth2.o): In function `log_serial_char':
68579     /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'
68580     common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here
68581     make: *** [u-boot] Error 1
68583     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
68584     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68586 commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422
68587 Author: Wolfgang Denk <wd@denx.de>
68588 Date:   Sat Nov 17 01:30:40 2007 +0100
68590     Fix a bug in the slave serial programming mode for the Xilinx
68591     Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
68592     the most significant bit was set, which did not work on any
68593     architecture where "char" defaulted to be an unsigned type.
68595     Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>
68597     Signed-off-by: Wolfgang Denk <wd@denx.de>
68599 commit d08b7233bc252faad8339e7ca0ddfd62fa79903c
68600 Author: Jon Loeliger <jdl@freescale.com>
68601 Date:   Thu Nov 1 12:23:29 2007 -0500
68603     86xx: Fix broken variable reference when #def DEBUGing.
68605     Sometimes you can't reference the DDR2 controller variables.
68607     Signed-off-by: Jon Loeliger <jdl@freescale.com>
68609 commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19
68610 Author: Jason Jin <Jason.jin@freescale.com>
68611 Date:   Fri Oct 26 18:32:00 2007 +0800
68613     make 8610 board use pixis reset
68615     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
68617 commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836
68618 Author: Jason Jin <Jason.jin@freescale.com>
68619 Date:   Mon Oct 29 19:26:21 2007 +0800
68621     Unify pixis_reset altbank across board families
68623     Basically, refactor the CFG_PIXIS_VBOOT_MASK values
68624     into the separate board config files.
68626     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
68627     Signed-off-by: Jon Loeliger <jdl@freescale.com>
68629 commit 64bf555465c7926be13e1046ac0d0f05ac72829c
68630 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68631 Date:   Wed Nov 7 08:19:21 2007 +0100
68633     Fix warning: pointer targets in assignment differ in signedness
68635     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68637 commit 7a60ee7c6248a958c5757d3660a1702723a2786d
68638 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68639 Date:   Wed Nov 7 08:19:19 2007 +0100
68641     Fix warning differ in signedness in common/cmd_ide.c
68643     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68645 commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03
68646 Author: Stefan Roese <sr@denx.de>
68647 Date:   Fri Nov 16 14:16:54 2007 +0100
68649     ppc4xx: Enable 405EX PCIe UTL register configuration
68651     Till now the UTL registers on 405EX were not initialized but left with
68652     their default values. This patch new initializes some of the UTL
68653     registers on 405EX.
68655     Signed-off-by: Stefan Roese <sr@denx.de>
68657 commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9
68658 Author: Stefan Roese <sr@denx.de>
68659 Date:   Fri Nov 16 14:00:59 2007 +0100
68661     ppc4xx: Update AMCC Makalu for board rev 1.1
68663     This patch adds changes needed for Makalu rev 1.1:
68665     - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM
68666     - Enable 2nd ethernet port EMAC1
68667     - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
68668     - Reset PCIe ports via GPIO upon bootup
68670     Signed-off-by: Stefan Roese <sr@denx.de>
68672 commit 4d4faae65e115e327425cd514c1a35146a85166b
68673 Author: Grant Likely <grant.likely@secretlab.ca>
68674 Date:   Mon Sep 24 09:05:31 2007 -0600
68676     Group PCI and PCMCIA drivers in drivers/Makefile
68678     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68680 commit 5798f87dc10a496d79d3177b9f5a76488987fd35
68681 Author: Grant Likely <grant.likely@secretlab.ca>
68682 Date:   Mon Sep 24 09:05:31 2007 -0600
68684     Group block/flash drivers in drivers/Makefile
68686     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68688 commit df58c81551700f058b44cacf55a7997fa63bfe0a
68689 Author: Grant Likely <grant.likely@secretlab.ca>
68690 Date:   Mon Sep 24 09:05:31 2007 -0600
68692     Group USB drivers in drivers/Makefile
68694     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68696 commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29
68697 Author: Grant Likely <grant.likely@secretlab.ca>
68698 Date:   Mon Sep 24 09:05:30 2007 -0600
68700     Group i2c drivers in drivers/Makefile
68702     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68704 commit ec00c76de0e5971273905998d62d6bb119324218
68705 Author: Grant Likely <grant.likely@secretlab.ca>
68706 Date:   Mon Sep 24 09:05:30 2007 -0600
68708     Group console drivers in drivers/Makefile
68710     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68712 commit 754f230aa01b8c789fc31f8013c2487954073300
68713 Author: Grant Likely <grant.likely@secretlab.ca>
68714 Date:   Mon Sep 24 09:05:30 2007 -0600
68716     Group network drivers in drivers/Makefile
68718     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68720 commit f0037c56b0d12cd46215124667b9f83d60ef9391
68721 Author: Grant Likely <grant.likely@secretlab.ca>
68722 Date:   Mon Sep 24 09:05:30 2007 -0600
68724     Build: split COBJS value into multiple lines
68726     This change is in preparation for condtitionial compile support in the
68727     build system.  By spliting them all into seperate lines now, subsequent
68728     patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will
68729     be less invasive and easier to review
68731     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68733 commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4
68734 Author: Grant Likely <grant.likely@secretlab.ca>
68735 Date:   Mon Sep 24 09:05:30 2007 -0600
68737     Add .gitignore files
68739     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68740     Acked-by: Kim Phillips <kim.phillips@freescale.com>
68742 commit 955413f35f054a82e40042f1dbcf501c6a05719b
68743 Author: Grant Likely <grant.likely@secretlab.ca>
68744 Date:   Thu Nov 15 08:27:52 2007 -0700
68746     Revert "Correct relocation fixup for mpc5xx"
68748     This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.
68749     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68751 commit e15633888a058aacb31a62d2cf1278e1e4c236ab
68752 Author: Grant Likely <grant.likely@secretlab.ca>
68753 Date:   Thu Nov 15 08:24:32 2007 -0700
68755     Revert "Correct fixup relocation for MPC5xxx"
68757     This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
68758     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68760 commit 139365fbe566d0fc619a1ed04452ec5388f0cef8
68761 Author: Grant Likely <grant.likely@secretlab.ca>
68762 Date:   Thu Nov 15 08:21:04 2007 -0700
68764     Revert "Correct fixup relocation for mpc8220"
68766     This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00.
68767     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68769 commit 70922342369e5e39b286fe21e768a239ca07a514
68770 Author: Grant Likely <grant.likely@secretlab.ca>
68771 Date:   Thu Nov 15 08:20:57 2007 -0700
68773     Revert "Correct fixup relocation for mpc824x"
68775     This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa.
68776     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68778 commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a
68779 Author: Grant Likely <grant.likely@secretlab.ca>
68780 Date:   Thu Nov 15 08:20:50 2007 -0700
68782     Revert "Correct fixup relocation for mpc8260"
68784     This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96.
68785     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68787 commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6
68788 Author: Grant Likely <grant.likely@secretlab.ca>
68789 Date:   Thu Nov 15 08:20:43 2007 -0700
68791     Revert "Correct fixup relocation for mpc83xx"
68793     This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
68794     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68796 commit c93945e8f9e300860d2bf73a2549ce5794f8bd00
68797 Author: Grant Likely <grant.likely@secretlab.ca>
68798 Date:   Thu Nov 15 08:20:25 2007 -0700
68800     Revert "[MPC512x] Correct fixup relocation"
68802     This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4.
68803     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
68805 commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c
68806 Author: Stefan Roese <sr@denx.de>
68807 Date:   Thu Nov 15 14:25:09 2007 +0100
68809     ppc4xx: Small AMCC Kilauea cleanup
68811     Remove not needed pci_target_init() function.
68813     Signed-off-by: Stefan Roese <sr@denx.de>
68815 commit aee747f19b460a0e9da20ff21e90fdaac1cec359
68816 Author: Stefan Roese <sr@denx.de>
68817 Date:   Thu Nov 15 14:23:55 2007 +0100
68819     ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
68821     - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
68822     - Cleanup of the 4xx GPIO functions
68823     - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
68825     Signed-off-by: Stefan Roese <sr@denx.de>
68827 commit 8ada0ebf38e4073beea0309188b25d82a112a2ae
68828 Author: Stefan Roese <sr@denx.de>
68829 Date:   Thu Nov 15 14:20:08 2007 +0100
68831     ppc4xx: AMCC Taihu board config file cleanup
68833     This patch makes the AMCC Taihu a little more compatible to the other
68834     AMCC eval boards.
68836     Signed-off-by: Stefan Roese <sr@denx.de>
68838 commit 5e71c51d74c963d3174060c078dcacf13bdd02ef
68839 Author: Marian Balakowicz <m8@semihalf.com>
68840 Date:   Thu Nov 15 13:37:28 2007 +0100
68842     [INKA4x0] NG hardware: flash support
68844     Disabled and remove inka4x0 custom flash driver, use CFI flash
68845     driver instead.
68847     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
68849 commit 5fb6d7191e206cdde0e23140fd8111caed93a595
68850 Author: Marian Balakowicz <m8@semihalf.com>
68851 Date:   Thu Nov 15 13:29:55 2007 +0100
68853     [INKA4x0] NG hardware: SDRAM support
68855     Add support for three new DDR chips that may  be present on a NG
68856     INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT.
68858     Cleanup board/inka4x0/mt48lc16m16a2-75.h file.
68860     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
68862 commit f23cb34c367bb27585a4fdb8a75277370e7d0596
68863 Author: Marian Balakowicz <m8@semihalf.com>
68864 Date:   Thu Nov 15 13:24:43 2007 +0100
68866     [INKA4x0] NG hardware: platform code update
68868     - Cleanup compile warnings.
68869     - Add missing '\0' in default environment.
68870     - Increase CFG_MONITOR_LEN to 256 KiB.
68871     - Add required CFG_USE_PPCENV.
68873     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
68875 commit 2ae64f5135e51bb18753884d1265b99e89b5aedd
68876 Author: Peter Pearse <peter.pearse@arm.com>
68877 Date:   Thu Nov 15 08:58:00 2007 +0000
68879     Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
68880     Remove warnings re onenand_read() & write()
68882 commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7
68883 Author: Peter Pearse <peter.pearse@arm.com>
68884 Date:   Thu Nov 15 08:45:13 2007 +0000
68886     Correction patch
68888 commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae
68889 Author: Roy Zang <tie-fei.zang@freescale.com>
68890 Date:   Thu Sep 13 18:52:28 2007 +0800
68892     Enable ULi1575 Ethernet support in 8610HPCD config
68894     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
68895     Acked-by: Jon Loeliger <jdl@freescale.com>
68897 commit 54fd6c93c28a0a45352fff5dd92673401ff563f2
68898 Author: Stefan Roese <sr@denx.de>
68899 Date:   Tue Nov 13 08:18:20 2007 +0100
68901     ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching
68903     Signed-off-by: Stefan Roese <sr@denx.de>
68905 commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93
68906 Author: Stefan Roese <sr@denx.de>
68907 Date:   Tue Nov 13 08:06:11 2007 +0100
68909     ppc4xx: Fix 405EX PCIe UTLSET register setup
68911     Signed-off-by: Stefan Roese <sr@denx.de>
68913 commit 1ce55151c85d068f70317a8d65c61058b891afb4
68914 Author: Heiko Schocher <hs@denx.de>
68915 Date:   Tue Nov 13 07:50:29 2007 +0100
68917     [UC101] SRAM now with 2 MB working.
68919     Signed-off-by: Heiko Schocher <hs@denx.de>
68921 commit 2d14684341109a69616e4d6016cd61402d55086f
68922 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68923 Date:   Fri Nov 9 15:37:53 2007 +0100
68925     ppc4xx: Use generic usb-ohci driver for sequoia board
68927     This patch makes the sequoia board use the generic usb-ohci driver
68928     instead of cpu/ppc4xx/usb_ohci.c.
68930     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68931     Signed-off-by: Stefan Roese <sr@denx.de>
68933 commit 9be659ac0868dc367caa957c5c725e46b07f6a5f
68934 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68935 Date:   Fri Nov 9 15:37:23 2007 +0100
68937     ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined
68939     This patch disables the 44x d-cache on 'usb start' and
68940     reenables it on 'usb stop'. This should be seen as a
68941     temporary fix until the generic usb-ohci driver can
68942     life with d-cache enabled.
68944     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68945     Signed-off-by: Stefan Roese <sr@denx.de>
68947 commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4
68948 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68949 Date:   Fri Nov 9 15:36:44 2007 +0100
68951     ppc4xx: Remove redundant code from 4xx network driver
68953     This patch removes some redundant code and decrements the end
68954     address of cache flush and invalidate by 1.
68956     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68957     Signed-off-by: Stefan Roese <sr@denx.de>
68959 commit 5ca9881aad8c413ac2a82868a5e3719178254502
68960 Author: Peter Pearse <peter.pearse@arm.com>
68961 Date:   Fri Nov 9 15:24:26 2007 +0000
68963     Add apollon board support
68964     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
68966 commit b53313dbfc74525d85f1e7e0102f902d5c863beb
68967 Author: Stefan Roese <sr@denx.de>
68968 Date:   Fri Nov 9 12:19:58 2007 +0100
68970     ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea
68972     Signed-off-by: Stefan Roese <sr@denx.de>
68974 commit c7f69c340277935a6c19a956421852da944a365f
68975 Author: Stefan Roese <sr@denx.de>
68976 Date:   Fri Nov 9 12:18:54 2007 +0100
68978     ppc4xx: Make output a little shorter on I2C bootrom detection
68980     Most 4xx PPC capable of using an I2C bootrom for bootstrap setting
68981     already print a line with the information which I2C bootrom is
68982     used for bootstrap configuration. So we don't need this extra line
68983     with "I2C boot EEPROM en-/dis-abled".
68985     This patch also has a little code cleanup integrated.
68987     Signed-off-by: Stefan Roese <sr@denx.de>
68989 commit 8d737a28152ec12873f8544cca1fb39a49e5e693
68990 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68991 Date:   Thu Nov 8 12:50:18 2007 -0600
68993     ColdFire: MCF5329 - Remove reset registers from CCM
68995     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68997 commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7
68998 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68999 Date:   Thu Nov 8 12:31:11 2007 -0600
69001     ColdFire: MCF5329 - Add Reset structure to immap_5329.h
69003     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69005 commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21
69006 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69007 Date:   Thu Nov 8 12:19:01 2007 -0600
69009     ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode
69011     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69013 commit 225a24b5e062ad94627424508ae814f51dbe1a34
69014 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69015 Date:   Wed Nov 7 18:00:54 2007 -0600
69017     ColdFire: MCF5445x - Update correct RAMBAR and missing linker files
69019     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69021 commit 248c7c14835f34d5d910b45e5600050e58ca6cab
69022 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69023 Date:   Wed Nov 7 17:56:15 2007 -0600
69025     ColdFire: MCF532x - Update do_reset() using core reset
69027     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69029 commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4
69030 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69031 Date:   Wed Nov 7 17:51:00 2007 -0600
69033     ColdFire: Update cpu flag for 4.2-xx compiler
69035     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
69037 commit 070ba56115b4da63b46e974287fa4550d4023386
69038 Author: York Sun <yorksun@freescale.com>
69039 Date:   Wed Oct 31 14:59:04 2007 -0500
69041     8610: Add console frame buffer support to FSL 8610 DIU driver.
69043     Add cfb console support to FSL 8610 DIU driver.
69044     Inspect board version from PIXIS to obtain correct pixel format.
69046     Use #define CONFIG_VIDEO in config file to enable fb console.
69048     To switch monitor, set monitor variable to
69049     0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS
69050     followed by "diufb init".
69052     Preserve logo bitmap at the top of the fb console.
69054     Signed-off-by: York Sun <yorksun@freescale.com>
69055     Signed-off-by: Jon Loeliger <jdl@freescale.com>
69057 commit a877880c6949e948bd63cd6ea4e216573d2f53dd
69058 Author: York Sun <yorksun@freescale.com>
69059 Date:   Mon Oct 29 13:58:39 2007 -0500
69061     8610: Add 8610 DIU display driver
69063     1280x1024 and 1024x768 @ 32 bpp are supported now.
69064     DVI, Single-link LVDS, Double-link LVDS are all supported.
69066     Environmental variable "monitor" is used to specify monitor port.
69068     A new command "diufb" is introduced to reinitialize monitor
69069     and display a BMP file in the memory. So far, 1-bit, 4-bit,
69070     8-bit and 24-bit BMP formats are supported.
69072         diufb init
69073             - initialize the diu driver
69074         Enable the port specified in the environmental variable "monitor"
69076         diufb addr
69077             - display bmp file in memory.
69078         The bmp image should be no bigger than the resolution, 1280x1024
69079         for DVI and double-link LVDS, 1024x768 for single-link LVDS.
69081     Note, this driver allocate memory but doesn't free it after use
69082     It is written on purpose -- to avoid a failure of reallocation
69083     due to memory fragement.
69085     ECC of DDR is disabled for DIU performance. L2 data cache is also disabled.
69087     Signed-off-by: York Sun <yorksun@freescale.com>
69088     Signed-off-by: Jon loeliger <jdl@freescale.com>
69090 commit 52e5ddfecdda308f75782fae206b677b1810f5f9
69091 Author: York Sun <yorksun@freescale.com>
69092 Date:   Wed Oct 31 10:43:59 2007 -0500
69094     FSL: Add a freescale bitmap logo.
69096     This Freescale logo is a 340 x 128 x 4bpp BMP file
69097     that can be displayed by the DIU Framebuffer driver.
69099     Signed-off-by: York Sun <yorksun@freescale.com>
69100     Signed-off-by: Jon Loeliger <jdl@freescale.com>
69102 commit 1815338fbd1c0f94f8276d2891b99caa5a05f622
69103 Author: York Sun <yorksun@freescale.com>
69104 Date:   Mon Oct 29 13:57:53 2007 -0500
69106     8610: Make some extra debug environment variables conditional.
69108     One may #define ENV_DEBUG to get them back again.
69110     Signed-off-by: York Sun <yorksun@freescale.com>
69112 commit 761421ccca80a9fb37b19c37aa61d46ef75e0647
69113 Author: Jason Jin <Jason.jin@freescale.com>
69114 Date:   Mon Oct 29 19:26:21 2007 +0800
69116     8610: Actually enable pixis_reset CONFIGs
69118     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
69120 commit f3bceaab230b4748d0afc4109b6837308f018b40
69121 Author: Jason Jin <Jason.jin@freescale.com>
69122 Date:   Fri Oct 26 18:31:59 2007 +0800
69124     Fix the BAT definition of PCI IO on 8610 board
69126     The address in the BAT register is aligned with the BAT size.
69127     The original definition actually did not define BAT for PCIE2 IO.
69128     This patch fix this.
69130     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
69132 commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56
69133 Author: Jason Jin <Jason.jin@freescale.com>
69134 Date:   Mon Oct 29 19:26:21 2007 +0800
69136     Unify pixis_reset altbank across board families
69138     Basically, refactor the CFG_PIXIS_VBOOT_MASK values
69139     into the separate board config files.
69141     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
69142     Signed-off-by: Jon Loeliger <jdl@freescale.com>
69144 commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba
69145 Author: Jason Jin <Jason.jin@freescale.com>
69146 Date:   Fri Oct 26 18:32:00 2007 +0800
69148     make 8610 board use pixis reset
69150     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
69152 commit 9c84709eedce9c680dd695984ab7d2328f4f04f5
69153 Author: Jon Loeliger <jdl@freescale.com>
69154 Date:   Thu Nov 1 12:23:29 2007 -0500
69156     86xx: Fix broken variable reference when #def DEBUGing.
69158     Sometimes you can't reference the DDR2 controller variables.
69160     Signed-off-by: Jon Loeliger <jdl@freescale.com>
69162 commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58
69163 Author: Roy Zang <tie-fei.zang@freescale.com>
69164 Date:   Mon Nov 5 17:39:24 2007 +0800
69166     Implement general ULi 526x Ethernet driver support in U-boot
69168     This patch implements general ULi 526x Ethernet driver.
69169     Until now, it is the only native Ethernet port on
69170     MPC8610HPCD board, but it could be used on other boards
69171     with ULi 526x Ethernet port as well.
69173     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
69174     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
69175     Acked-by: Jon Loeliger <jdl@freescale.com>
69176     Signed-off-by: Ben Warren <bwarren@qstreams.com>
69178 commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd
69179 Author: Larry Johnson <lrj@arlinx.com>
69180 Date:   Thu Nov 1 08:46:50 2007 -0500
69182     NET: Add Ethernet 1000BASE-X support for PPC4xx
69184     This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and
69185     "miiphy_duplex()".  It also adds function "miiphy_is_1000base_x ()", which
69186     returns non-zero iff the PHY registers are configured for 1000BASE-X.  The
69187     "mii info" command is modified to distinguish between 1000BASE-T and -X.
69189     Signed-off-by: Larry Johnson <lrj@acm.org>
69190     Signed-off-by: Ben Warren <bwarren@qstreams.com>
69192 commit 298035df4948b113d29ac0e694717d34b95bc5dc
69193 Author: Larry Johnson <lrj@arlinx.com>
69194 Date:   Wed Oct 31 11:21:29 2007 -0500
69196     NET: Cosmetic changes
69198     Signed-off-by: Larry Johnson <lrj@acm.org>
69199     Signed-off-by: Ben Warren <bwarren@qstreams.com>
69201 commit 654f38b3a387886996a5a75771fbfc29cb4f225e
69202 Author: Stefan Roese <sr@denx.de>
69203 Date:   Mon Nov 5 07:43:05 2007 +0100
69205     ppc4xx: Make output a little shorter on PCIe detection
69207     Now not max 3 lines but 2 lines are printed per PCIe port.
69209     Signed-off-by: Stefan Roese <sr@denx.de>
69211 commit 992742a5b09d9040adbd156fb90756af66ade310
69212 Author: Wolfgang Denk <wd@denx.de>
69213 Date:   Sat Nov 3 23:09:27 2007 +0100
69215     Cleanup coding style; update CHANGELOG
69217     Signed-off-by: Wolfgang Denk <wd@denx.de>
69219 commit e881cb563e32f45832b7b6db77bdcd017adcbb41
69220 Author: Bruce Adler <bruce.adler@ccpu.com>
69221 Date:   Fri Nov 2 13:15:42 2007 -0700
69223     fix wording in README
69225     Changed the wording to properly describe the shadowing
69226     of the environment from ROM to RAM
69228     Signed-off-by: Bruce Adler <bruce.adler@acm.org>
69230 commit ad845beef06245426c57b53dcdc01b7dc70e0d45
69231 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
69232 Date:   Wed Oct 31 02:18:15 2007 +0900
69234     blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk
69236     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
69238 commit ec22755799466c8a103664bb3a5e647bf9c238f4
69239 Author: Vlad Lungu <vlad@comsys.ro>
69240 Date:   Thu Oct 25 16:08:14 2007 +0300
69242     Trimmed some variables in ne2000.c
69244     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
69246 commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0
69247 Author: Zhang Wei <wei.zhang@freescale.com>
69248 Date:   Thu Oct 25 17:51:27 2007 +0800
69250     Fix the issue of usb_kbd driver missing the scan code of key 'z'.
69252     The scan code of the key 'z' is 0x1d, which should be handled.
69254     The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
69255     controller.
69257     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
69259 commit bbf4796f6498fbade56d56eff3a0a49b299d93e5
69260 Author: Zhang Wei <wei.zhang@freescale.com>
69261 Date:   Thu Oct 25 17:30:04 2007 +0800
69263     Fix USB support issue for MPC8641HPCN board.
69265     The configuration file has already enabled USB, but it
69266     missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB
69267     on MPC8641HPCN can not work because of the wrong USB
69268     register endian.
69270     And add the USB command to U-Boot commands list.
69272     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
69274 commit 4e62041023dc3de9d98d977bb080235bc6d035e0
69275 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69276 Date:   Wed Oct 24 18:16:01 2007 +0200
69278     Use config_cmd_default.h instead of config_cmd_all.h
69280     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
69282 commit 56622f87857439b1c221e9deef11a9d5bb5d4308
69283 Author: Marian Balakowicz <m8@semihalf.com>
69284 Date:   Wed Oct 24 01:37:36 2007 +0200
69286     TQM5200: Call usb_cpu_init() during board init
69288     usb_cpu_init() configures GPS USB pins, clocks, etc. and
69289     is required for proper operation of kernel USB subsystem.
69290     This setup was previously done in the kernel by the fixup
69291     code which is being removed, thus low level init must be
69292     done by U-boot now.
69294     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
69296 commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd
69297 Author: Guennadi Liakhovetski <lg@denx.de>
69298 Date:   Tue Oct 23 16:25:50 2007 +0200
69300     Fix typo in nfs.c
69302     An obvious typo. Originally fixed in linkstation u-boot port.
69304     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
69306 commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78
69307 Author: Guennadi Liakhovetski <lg@denx.de>
69308 Date:   Tue Oct 23 14:35:05 2007 +0200
69310     Fix a typo in cpu/mpc824x/interrupts.c
69312     Since December 2003 the timer_interrupt_cpu() function in
69313     cpu/mpc824x/interrupts.c contains what seems to be a superfluous
69314     parameter. Remove it.
69316     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
69318 commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d
69319 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
69320 Date:   Wed Oct 17 11:13:51 2007 +0200
69322     add ft_cpu_setup(..) on mpc8260
69324     Add ft_cpu_setup(..)-function to adapt it for use with libfdt
69325     based on code from mpc5xxx
69327     Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
69328     --
69330 commit 6abd82e19ae93c0b4d104e50165e235915ec0875
69331 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
69332 Date:   Wed Oct 17 11:18:42 2007 +0200
69334     changes for IDS8247 board support
69336     To get the IDS8247 board working following are done:
69337      - FCC2 is deactivated
69338      - FCC1 is activated
69339      - I2C is activated
69340      - CFI driver is activated
69341      - Adapted for use with LIBFDT
69343     Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
69344     --
69346 commit 3d6cb3b24add6415f86a0f013ea40f5639b90047
69347 Author: Stefan Roese <sr@denx.de>
69348 Date:   Sat Nov 3 12:08:28 2007 +0100
69350     ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
69352     This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
69353     Again, only one image supports both targets.
69355     Signed-off-by: Stefan Roese <sr@denx.de>
69357 commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c
69358 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
69359 Date:   Wed Oct 24 15:48:37 2007 +0200
69361     ATSTK1002: Remove default ethernet addresses
69363     Wolfgang is right: It's not a good idea to set up default initial
69364     ethernet addresses for a board, even though they belong to the local
69365     range.
69367     This will change the failure mode from "IT manager screams at you for
69368     using duplicate ethernet addresses" to a nice error message explaining
69369     that the ethernet address hasn't been set properly.
69371     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
69373 commit e5c794e491a57d829b6d8733e2ed8368a2269abf
69374 Author: Justin Flammia <jflammia@savantav.com>
69375 Date:   Mon Oct 29 17:40:35 2007 -0400
69377     DHCP Client Fix
69379     This is a multi-part message in MIME format.
69381     commit e6e505eae94ed721e123e177489291fc4544b7b8
69382     Author: Justin Flammia <jflammia@savantav.com>
69383     Date:   Mon Oct 29 17:19:03 2007 -0400
69385         Found a bug in the way the DHCP Request packet is built, where the IP address
69386         that is offered by the server is bound to prematurely. This patch is a fix of
69387         that bug where the IP address offered by the DHCP server is not used until
69388         after the DHCP ACK from the server is received.
69390     Signed-off-by: Justin Flammia <jflammia@savantav.com>
69391     Signed-off-by: Ben Warren <bwarren@qstreams.com>
69393 commit 5d96d40d3f36da33348e68f9ea993f383e11f997
69394 Author: Stefan Roese <sr@denx.de>
69395 Date:   Wed Oct 31 20:58:34 2007 +0100
69397     ppc4xx: Fix acadia_nand build problem
69399     Since the cache handling functions were moved from start.S into cache.S
69400     the acadia NAND booting Makfile needs to be adapted accordingly.
69402     Signed-off-by: Stefan Roese <sr@denx.de>
69404 commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949
69405 Author: Stefan Roese <sr@denx.de>
69406 Date:   Wed Oct 31 20:57:11 2007 +0100
69408     ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM
69410     This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files
69411     and to the Sequoia TLB init code. Now the cache can be enabled on 44x
69412     boards by defining CONFIG_4xx_DCACHE in the board config file. This
69413     option will disappear, when more boards use is successfully and no
69414     more known problems exist.
69416     This is tested successfully on Sequoia and Katmai. The only problem that
69417     needs to be fixed is, that USB is not working on Sequoia right now, since
69418     it will need some cache handling code too, similar to the 4xx EMAC driver.
69420     Signed-off-by: Stefan Roese <sr@denx.de>
69422 commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738
69423 Author: Stefan Roese <sr@denx.de>
69424 Date:   Wed Oct 31 20:51:10 2007 +0100
69426     ppc4xx: Enable CPU POST test for 4xx with dcache enabled
69428     Now with caches enabled (i- and d-cache) on 44x, we need a chance to
69429     disable the cache for the CPU POST tests, since these tests consist
69430     of self modifying code. This is done via the new change_tlb() function.
69432     Signed-off-by: Stefan Roese <sr@denx.de>
69434 commit f71b2888b4b3c870909a0341427b2a914246f81f
69435 Author: Stefan Roese <sr@denx.de>
69436 Date:   Wed Oct 31 20:47:26 2007 +0100
69438     ppc4xx: Change 4xx POST ethernet test to handle cached memory too
69440     This patch enables the 4xx EMAC POST driver to work too, when dcache is
69441     enabled.
69443     Signed-off-by: Stefan Roese <sr@denx.de>
69445 commit a2685904061b35a17583d65fe47cdc2686a69eaa
69446 Author: Stefan Roese <sr@denx.de>
69447 Date:   Wed Oct 31 20:45:53 2007 +0100
69449     ppc4xx: Remove temporary TLB entry in POST cache test only for 440
69451     Signed-off-by: Stefan Roese <sr@denx.de>
69453 commit ff768cb168d8157c24a25016dbfbeb465e47f420
69454 Author: Stefan Roese <sr@denx.de>
69455 Date:   Wed Oct 31 18:01:24 2007 +0100
69457     ppc4xx: Change 4xx ethernet driver to handle cached memory too
69459     This patch enables the 4xx EMAC driver to work too, when dcache is
69460     enabled.
69462     Signed-off-by: Stefan Roese <sr@denx.de>
69464 commit 483e09a223c666269ef81d3573a6591b1046b0ef
69465 Author: Stefan Roese <sr@denx.de>
69466 Date:   Wed Oct 31 17:59:22 2007 +0100
69468     ppc4xx: Add change_tlb function to modify I attribute of TLB(s)
69470     This function is used to either turn cache on or off in a specific
69471     memory area.
69473     Signed-off-by: Stefan Roese <sr@denx.de>
69475 commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79
69476 Author: Stefan Roese <sr@denx.de>
69477 Date:   Wed Oct 31 17:57:52 2007 +0100
69479     ppc4xx: Remove cache definition from 4xx board config files
69481     All 4xx board config files don't need the cache definitions anymore.
69482     These are now defined in common headers.
69484     Signed-off-by: Stefan Roese <sr@denx.de>
69486 commit 9b94ac61d2176185c30adf0793e079ec30e68687
69487 Author: Stefan Roese <sr@denx.de>
69488 Date:   Wed Oct 31 17:55:58 2007 +0100
69490     ppc4xx: Rework 4xx cache support
69492     New cache handling functions added and all existing functions
69493     moved from start.S into seperate cache.S.
69495     Signed-off-by: Stefan Roese <sr@denx.de>
69497 commit 06713773da4ac3d390c63d82641eb553224b27c2
69498 Author: Stefan Roese <sr@denx.de>
69499 Date:   Tue Oct 23 18:03:12 2007 +0200
69501     ppc4xx: Remove compiler warning from previous commit
69503     Signed-off-by: Stefan Roese <sr@denx.de>
69505 commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9
69506 Author: Stefan Roese <sr@denx.de>
69507 Date:   Tue Oct 23 14:40:30 2007 +0200
69509     ppc4xx: Remove temporary TLB entry in POST cache test
69511     Signed-off-by: Stefan Roese <sr@denx.de>
69513 commit 1338e6a81834099ba19733b69aafd8ef5f098094
69514 Author: Stefan Roese <sr@denx.de>
69515 Date:   Tue Oct 23 14:05:08 2007 +0200
69517     ppc4xx: Change autonegotiation timeout from 4 to 5 seconds
69519     I lately noticed, that newer 4xx board with GBit support sometimes don't
69520     finish link autonegotiation in 4 seconds. Changing this timeout to 5
69521     seconds seems fine here.
69523     Signed-off-by: Stefan Roese <sr@denx.de>
69525 commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7
69526 Author: Stefan Roese <sr@denx.de>
69527 Date:   Tue Oct 23 14:03:17 2007 +0200
69529     ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends
69531     This patch changes all in32/out32 calls to use the recommended in_be32/
69532     out_be32 macros instead.
69534     Signed-off-by: Stefan Roese <sr@denx.de>
69536 commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a
69537 Author: Stefan Roese <sr@denx.de>
69538 Date:   Thu Oct 25 12:24:59 2007 +0200
69540     ppc4xx: Fix POST ethernet test for Haleakala
69542     The POST ethernet test needed to be changed to dynamically determine
69543     the count of ethernet devices. This code is cloned from the 4xx
69544     ethernet driver.
69546     Signed-off-by: Stefan Roese <sr@denx.de>
69548 commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a
69549 Author: Stefan Roese <sr@denx.de>
69550 Date:   Tue Oct 23 11:31:05 2007 +0200
69552     ppc4xx: Correct UART input clock calculation and passing to fdt
69554     We now use a value in the gd (global data) structure for the UART input
69555     frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely
69556     in get_sys_info().
69558     Signed-off-by: Stefan Roese <sr@denx.de>
69560 commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124
69561 Author: Stefan Roese <sr@denx.de>
69562 Date:   Tue Oct 23 10:10:08 2007 +0200
69564     ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support
69566     The Haleakala is nearly identical with the Kilauea eval board. The only
69567     difference is that the 405EXr only supports one EMAC and one PCIe
69568     interface. This patch adds support for the Haleakala board by using
69569     the identical image for Kilauea and Haleakala. The distinction is done
69570     by comparing the PVR.
69572     Signed-off-by: Stefan Roese <sr@denx.de>
69574 commit 9f798766aa85e62eb8fa8c721e148df609b78137
69575 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
69576 Date:   Tue Oct 23 08:29:10 2007 +0200
69578     ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM
69580     This patch also adds a note to the fixed DDR setup for Bamboo NAND booting:
69582     Note:
69583     As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
69584     DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
69585     modules are still plugged in. So it is recommended to remove the DIMM
69586     modules while using the NAND booting code with the fixed SDRAM setup!
69588     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
69589     Signed-off-by: Stefan Roese <sr@denx.de>
69591 commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a
69592 Author: Stefan Roese <sr@denx.de>
69593 Date:   Mon Oct 22 16:24:44 2007 +0200
69595     ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards
69597     Signed-off-by: Stefan Roese <sr@denx.de>
69599 commit 3248f63ad89cb031491edb7016587fe6e9a238b9
69600 Author: Stefan Roese <sr@denx.de>
69601 Date:   Mon Oct 22 16:22:40 2007 +0200
69603     ppc4xx: Rework of 4xx serial driver (4)
69605     Change 4xx_uart.c:
69607     - Use in_8/out_8 macros instead of in8/out8
69608     - No need for UART_BASE marco anymore, now really handled via function
69609       parameter
69610     - serial_init_common() introduced
69611     - Further coding style cleanup
69613     Signed-off-by: Stefan Roese <sr@denx.de>
69615 commit e61cb8163a66b8a135696ae232e2bead1ce0a049
69616 Author: Stefan Roese <sr@denx.de>
69617 Date:   Mon Oct 22 15:45:49 2007 +0200
69619     ppc4xx: Rework of 4xx serial driver (3)
69621     Change all linker scripts to reference the changed driver name iop480_uart.o.
69623     Signed-off-by: Stefan Roese <sr@denx.de>
69625 commit 882ae41274921f9016131806bdeb27e19606f47a
69626 Author: Stefan Roese <sr@denx.de>
69627 Date:   Mon Oct 22 15:44:39 2007 +0200
69629     ppc4xx: Rework of 4xx serial driver (2)
69631     Change all linker scripts to reference the changed driver name 4xx_uart.o.
69633     Note: In most cased all these explicit referencing of these object files
69634     in the linker scripts is not neccessary. Only for manually embedded
69635     environment into the U-Boot image, which is not done is most cases.
69637     Signed-off-by: Stefan Roese <sr@denx.de>
69639 commit ad31e40bed042cb670d0036fea96435007afb838
69640 Author: Stefan Roese <sr@denx.de>
69641 Date:   Mon Oct 22 15:09:59 2007 +0200
69643     ppc4xx: Rework of 4xx serial driver (1)
69645     This patch starts the rework of the PPC4xx serial driver. First we split
69646     the file into two seperate files, one 4xx_uart.c with the 405/440 UART
69647     handling code and the other one iop480_uart.c with the UART code for the
69648     PLX-Tech IOP480 PPC (PPC403 based).
69650     Signed-off-by: Stefan Roese <sr@denx.de>
69652 commit 764e7417ee5f6e25b1715720e7d7dd3487109385
69653 Author: Stefan Roese <sr@denx.de>
69654 Date:   Mon Oct 22 10:30:38 2007 +0200
69656     ppc4xx: Correct UART input clock calculation and passing to fdt
69658     Signed-off-by: Stefan Roese <sr@denx.de>
69660 commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa
69661 Author: Stefan Roese <sr@denx.de>
69662 Date:   Mon Oct 22 07:34:34 2007 +0200
69664     ppc4xx: Add initial AMCC Makalu 405EX support
69666     Signed-off-by: Stefan Roese <sr@denx.de>
69668 commit fa8aea20456e6f1dba43f46bcc72024dd9499998
69669 Author: Stefan Roese <sr@denx.de>
69670 Date:   Mon Oct 22 07:33:52 2007 +0200
69672     ppc4xx: Add freqUART to CPU speed detection
69674     This value is needed later for the device tree configuration of
69675     the uart clock.
69677     Signed-off-by: Stefan Roese <sr@denx.de>
69679 commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d
69680 Author: Stefan Roese <sr@denx.de>
69681 Date:   Sun Oct 21 14:26:29 2007 +0200
69683     ppc: Small Kilauea cleanup of config file
69685     Signed-off-by: Stefan Roese <sr@denx.de>
69687 commit 758c037aeead34b49631b8da3a90b1bba14c0410
69688 Author: Stefan Roese <sr@denx.de>
69689 Date:   Sun Oct 21 08:16:12 2007 +0200
69691     rtc: Add Xicor/Intersil X1205 RTC support
69693     This patch adds support for the Xicor/Intersil X1205 RTC used on the
69694     AMCC Makalu eval board. This driver is basically cloned from the Linux
69695     driver version (2.6.23).
69697     This patch also introduces the Linux bcd.h header for the BCD2BIN/
69698     BIN2BCD conversions. In the future some of the other U-Boot RTC driver
69699     should be converted to also use this header instead of implementing
69700     their own local copy of these functions/macros.
69702     Signed-off-by: Stefan Roese <sr@denx.de>
69704 commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6
69705 Author: Stefan Roese <sr@denx.de>
69706 Date:   Sun Oct 21 08:12:41 2007 +0200
69708     ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx
69710     This patch moves some common 4xx macros and the PPC405_SYS_INFO/
69711     PPC440_SYS_INFO structure into the common ppc4xx.h header.
69713     Lot's of other macros are good candidates to be consolidated this way
69714     in the future.
69716     Signed-off-by: Stefan Roese <sr@denx.de>
69718 commit 770c7af5800f598d22730d1f4b70f16c9b33512e
69719 Author: Stefan Roese <sr@denx.de>
69720 Date:   Sun Oct 21 08:05:18 2007 +0200
69722     ppc4xx: Fix size setup in Kilauea DDR2 init routine
69724     The size was initilized wrong. Instead of 256MB, the DDR2 controller
69725     was setup to 512MB. Now the correct values is used.
69727     This patch also does a little cleanup and adds a comment here.
69729     Signed-off-by: Stefan Roese <sr@denx.de>
69731 commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a
69732 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
69733 Date:   Thu Oct 18 17:29:04 2007 +0200
69735     ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors
69737     CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR
69738     number is used to access system registers.
69740     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
69741     Signed-off-by: Stefan Roese <sr@denx.de>
69743 commit c36c68160333ac5fe41ec3db12a728b7075b3912
69744 Author: Stefan Roese <sr@denx.de>
69745 Date:   Thu Oct 18 07:42:27 2007 +0200
69747     ppc4xx: Change inbound PCIe location for endpoint tests on Katmai
69749     On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which
69750     is the internal SRAM. Since I now ported and tested this endpoint mode
69751     on Kilauea successfully to map to 0 (SDRAM), I also changed this for
69752     Katmai.
69754     Yucca will stay at internal SRAM for now. Not sure if somebody relies on
69755     this setup.
69757     Signed-off-by: Stefan Roese <sr@denx.de>
69759 commit 5cb4af4791f61843432155142b6cfac901f66c10
69760 Author: Stefan Roese <sr@denx.de>
69761 Date:   Thu Oct 18 07:39:38 2007 +0200
69763     ppc4xx: Add PCIe endpoint support on Kilauea (405EX)
69765     This patch adds endpoint support for the AMCC Kilauea eval board. It can
69766     be tested by connecting a reworked PCIe cable (only 1x lane singles
69767     connected) to another root-complex.
69769     In this test setup, a 64MB inbound window is configured at BAR0 which maps
69770     to 0 on the PLB side. So accessing this BAR0 from the root-complex will
69771     access the first 64MB of the SDRAM on the PPC side.
69773     Signed-off-by: Stefan Roese <sr@denx.de>
69775 commit d4cb2d17946466740afeb195a57d6cb290bf4cc0
69776 Author: Stefan Roese <sr@denx.de>
69777 Date:   Sat Oct 13 16:43:23 2007 +0200
69779     ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode
69781     This patch adds support for dynamic configuration of PCIe ports for the
69782     AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe
69783     boards Yucca & Katmai and the 405EX board Kilauea.
69785     This dynamic configuration is done via the "pcie_mode" environement
69786     variable. This variable can be set to "EP" or "RP" for endpoint or
69787     rootpoint mode. Multiple values can be joined via the ":" delimiter.
69788     Here an example:
69790     pcie_mode=RP:EP:EP
69792     This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2
69793     as endpoint.
69795     Per default Yucca will be configured as:
69796     pcie_mode=RP:EP:EP
69798     Per default Katmai will be configured as:
69799     pcie_mode=RP:RP:REP
69801     Per default Kilauea will be configured as:
69802     pcie_mode=RP:RP
69804     Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
69805     Signed-off-by: Stefan Roese <sr@denx.de>
69807 commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f
69808 Author: Stefan Roese <sr@denx.de>
69809 Date:   Thu Oct 11 11:15:59 2007 +0200
69811     ppc4xx: Enable device tree support (fdt) on Kilauea per default
69813     This patch enables the fdt support on the AMCC Kilauea eval board.
69814     Additionally now EBC ranges fdt fixup is included to support NOR
69815     FLASH mapping via the Linux physmap_of driver.
69817     This Kilauea port now support booting arch/ppc and arch/powerpc
69818     Linux kernels. The default environment "net_nfs" is for arch/ppc
69819     and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc
69820     support will be removed.
69822     Signed-off-by: Stefan Roese <sr@denx.de>
69824 commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e
69825 Author: Stefan Roese <sr@denx.de>
69826 Date:   Thu Oct 11 11:11:45 2007 +0200
69828     ppc4xx: Add additional debug info to 4xx fdt support
69830     Signed-off-by: Stefan Roese <sr@denx.de>
69832 commit db3232ddb058d0ed0bc31f7c5c296748a1afac67
69833 Author: Stefan Roese <sr@denx.de>
69834 Date:   Fri Oct 5 21:28:58 2007 +0200
69836     ppc4xx: Fix small merge problems with CPCI440 and Acadia boards
69838     Signed-off-by: Stefan Roese <sr@denx.de>
69840 commit 1941cce71b1ae975602854045061e82f94ecd012
69841 Author: Stefan Roese <sr@denx.de>
69842 Date:   Fri Oct 5 17:35:10 2007 +0200
69844     ppc4xx: Fix small merge problem in 4xx_enet.c
69846     Signed-off-by: Stefan Roese <sr@denx.de>
69848 commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf
69849 Author: Stefan Roese <sr@denx.de>
69850 Date:   Fri Oct 5 17:11:30 2007 +0200
69852     ppc4xx: Add initial AMCC Kilauea 405EX support
69854     Signed-off-by: Stefan Roese <sr@denx.de>
69856 commit dbbd125721aea6645fdb962f36bd41f59e272f9d
69857 Author: Stefan Roese <sr@denx.de>
69858 Date:   Fri Oct 5 17:10:59 2007 +0200
69860     ppc4xx: Add PPC405EX support
69862     Signed-off-by: Stefan Roese <sr@denx.de>
69864 commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31
69865 Author: Stefan Roese <sr@denx.de>
69866 Date:   Fri Oct 5 17:09:36 2007 +0200
69868     ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
69870     Signed-off-by: Stefan Roese <sr@denx.de>
69872 commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db
69873 Author: Stefan Roese <sr@denx.de>
69874 Date:   Fri Oct 5 17:07:50 2007 +0200
69876     ppc4xx: Add initial fdt support to 4xx (first needed on 405EX)
69878     Signed-off-by: Stefan Roese <sr@denx.de>
69880 commit a424a8bb2924b90724b944165d3141f1fa8dfe5b
69881 Author: Stefan Roese <sr@denx.de>
69882 Date:   Fri Oct 5 17:04:57 2007 +0200
69884     POST: Add 405EX support to 4xx UART POST test
69886     Signed-off-by: Stefan Roese <sr@denx.de>
69888 commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12
69889 Author: Stefan Roese <sr@denx.de>
69890 Date:   Fri Oct 5 15:10:02 2007 +0200
69892     DTT: Prepare DS1775 driver for use of different I2C addresses
69894     Signed-off-by: Stefan Roese <sr@denx.de>
69896 commit 19e93b1e16d267220440d827b920fbad8abfa70f
69897 Author: Stefan Roese <sr@denx.de>
69898 Date:   Fri Oct 5 14:23:43 2007 +0200
69900     ppc4xx: 4xx_pcie: Change PCIe status output to match common style
69902     Signed-off-by: Stefan Roese <sr@denx.de>
69904 commit ff68f66bcb0da847845aa2fac11eba6c25938c99
69905 Author: Stefan Roese <sr@denx.de>
69906 Date:   Fri Oct 5 09:22:33 2007 +0200
69908     ppc4xx: 4xx_pcie: Disable debug output as default
69910     Signed-off-by: Stefan Roese <sr@denx.de>
69912 commit 97923770cb52b64d69eec958a11b2eda8d46e0f7
69913 Author: Stefan Roese <sr@denx.de>
69914 Date:   Fri Oct 5 09:18:23 2007 +0200
69916     ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added
69918     Signed-off-by: Stefan Roese <sr@denx.de>
69920 commit 4dbee8a90df613eb517aadbecebd70f168913d30
69921 Author: Stefan Roese <sr@denx.de>
69922 Date:   Fri Oct 5 07:57:20 2007 +0200
69924     ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai
69926     128MB seems to be the smallest possible value for the memory size
69927     for on PCIe port. With this change now the BAR's of the PCIe cards
69928     are accessible under U-Boot.
69930     One big note: This only works for PCIe port 0 & 1. For port 2 this
69931     currently doesn't work, since the base address is now 0xc0000000
69932     (0xb0000000 + 2 * 0x08000000), and this is already occupied by
69933     CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean
69934     to change the base addresses completely and this change would have
69935     too much impact right now.
69937     This patch adds debug output to the 4xx pcie driver too.
69939     Signed-off-by: Stefan Roese <sr@denx.de>
69941 commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2
69942 Author: Stefan Roese <sr@denx.de>
69943 Date:   Wed Oct 3 21:16:32 2007 +0200
69945     ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx
69947     Signed-off-by: Stefan Roese <sr@denx.de>
69949 commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a
69950 Author: Stefan Roese <sr@denx.de>
69951 Date:   Wed Oct 3 15:01:02 2007 +0200
69953     ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms
69955     These files were introduced with the IBM 405GP but are currently used on all
69956     4xx PPC platforms. So the name doesn't match the content anymore. This patch
69957     renames the files to 4xx_pci.c/h.
69959     Signed-off-by: Stefan Roese <sr@denx.de>
69961 commit 94276eb0a7a35b9e8c053d589ae225b0f017a237
69962 Author: Stefan Roese <sr@denx.de>
69963 Date:   Wed Oct 3 14:14:58 2007 +0200
69965     ppc4xx: Add a comment for 405EX PCIe endpoint configuration
69967     Signed-off-by: Stefan Roese <sr@denx.de>
69969 commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626
69970 Author: Stefan Roese <sr@denx.de>
69971 Date:   Wed Oct 3 10:38:09 2007 +0200
69973     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3)
69975     (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access
69976         the SDR registers of the PCIe ports. This makes the overall design
69977         clearer, since it removed a lot of switch statements which are not
69978         needed anymore.
69980         Also, the functions ppc4xx_init_pcie_rootport() and
69981         ppc4xx_init_pcie_entport() are merged into a single function
69982         ppc4xx_init_pcie_port(), since most of the code was duplicated.
69983         This makes maintainance and porting to other 4xx platforms
69984         easier.
69986     Signed-off-by: Stefan Roese <sr@denx.de>
69988 commit 026f71106871f31d17d0ea0db9a7547ff92934bc
69989 Author: Stefan Roese <sr@denx.de>
69990 Date:   Wed Oct 3 07:48:09 2007 +0200
69992     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2)
69994     This patch is the first patch of a series to make the 440SPe PCIe code
69995     usable on different 4xx PPC platforms. In preperation for the new 405EX
69996     which is also equipped with PCIe interfaces.
69998     (2) This patch renames the functions from 440spe_ to 4xx_ with a
69999         little additional cleanup
70001     Signed-off-by: Stefan Roese <sr@denx.de>
70003 commit c7c6da23028f146d912514b95aefa3da7cf37699
70004 Author: Stefan Roese <sr@denx.de>
70005 Date:   Wed Oct 3 07:34:10 2007 +0200
70007     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1)
70009     This patch is the first patch of a series to make the 440SPe PCIe code
70010     usable on different 4xx PPC platforms. In preperation for the new 405EX
70011     which is also equipped with PCIe interfaces.
70013     (1) This patch renames the files from 440spe_pcie to 4xx_pcie
70015     Signed-off-by: Stefan Roese <sr@denx.de>
70017 commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502
70018 Author: Marian Balakowicz <m8@semihalf.com>
70019 Date:   Wed Oct 24 01:37:36 2007 +0200
70021     TQM5200: Call usb_cpu_init() during board init
70023     usb_cpu_init() configures GPS USB pins, clocks, etc. and
70024     is required for proper operation of kernel USB subsystem.
70025     This setup was previously done in the kernel by the fixup
70026     code which is being removed, thus low level init must be
70027     done by U-boot now.
70029     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
70030     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
70032 commit b5af773f8d92677e06f3295b45557c9d0a487c24
70033 Author: Zhang Wei <wei.zhang@freescale.com>
70034 Date:   Thu Oct 25 17:51:27 2007 +0800
70036     Fix the issue of usb_kbd driver missing the scan code of key 'z'.
70038     The scan code of the key 'z' is 0x1d, which should be handled.
70040     The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
70041     controller.
70043     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
70044     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
70046 commit 85ac988e86f9414fa645b0148dc66c3520a1eb84
70047 Author: Rodolfo Giometti <giometti@enneenne.com>
70048 Date:   Mon Oct 15 11:59:17 2007 +0200
70050     PXA USB OHCI: "usb stop" implementation.
70052     Some USB keys need to be switched off before loading the kernel
70053     otherwise they can remain in an undefined status which prevents them
70054     to be correctly recognized by the kernel.
70056     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
70057     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
70059 commit 31548249decf18a6b877a18436b6139dd483fe4a
70060 Author: Justin Flammia <jflammia@savantav.com>
70061 Date:   Mon Oct 29 17:40:35 2007 -0400
70063     DHCP Client Fix
70065     This is a multi-part message in MIME format.
70067     commit e6e505eae94ed721e123e177489291fc4544b7b8
70068     Author: Justin Flammia <jflammia@savantav.com>
70069     Date:   Mon Oct 29 17:19:03 2007 -0400
70071         Found a bug in the way the DHCP Request packet is built, where the IP address
70072         that is offered by the server is bound to prematurely. This patch is a fix of
70073         that bug where the IP address offered by the DHCP server is not used until
70074         after the DHCP ACK from the server is received.
70076     Signed-off-by: Justin Flammia <jflammia@savantav.com>
70077     Signed-off-by: Ben Warren <bwarren@qstreams.com>
70079 commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed
70080 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
70081 Date:   Thu Oct 25 17:16:22 2007 -0500
70083     ColdFire 54455: Fix correct boot location for atmel and intel
70085     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
70087 commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb
70088 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
70089 Date:   Thu Oct 25 17:14:00 2007 -0500
70091     ColdFire: Fix build error when CONFIG_WATCHDOG is defined
70093     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
70095 commit c67e12e705b204cfe914e3e3e693d69a445dcabf
70096 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
70097 Date:   Thu Oct 25 17:12:36 2007 -0500
70099     ColdFire 5329: Assign correct SDRAM size and fix cache
70101     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
70103 commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b
70104 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
70105 Date:   Thu Oct 25 17:10:23 2007 -0500
70107     ColdFire 5253: Assign correct SDRAM size
70109     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
70111 commit 2acefa72ee0026f862ab65597ca687428f63a973
70112 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
70113 Date:   Thu Oct 25 17:09:17 2007 -0500
70115     ColdFire 5282: Fix external flash boot and return dramsize
70117     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
70119 commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82
70120 Author: Bartlomiej Sieka <tur@semihalf.com>
70121 Date:   Thu Oct 25 17:20:01 2007 +0200
70123     TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk).
70125     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
70127 commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834
70128 Author: Martin Krause <martin.krause@tqs.de>
70129 Date:   Wed Oct 24 08:42:25 2007 +0200
70131     TQM5200: fix spurious characters on second serial interface
70133     With this patch PSC3 is configured as UART. This is done, because if
70134     the pins of PSC3 are not configured at all (-> all pins are GPI),
70135     due to crosstalk, spurious characters may be send over the RX232_2_TXD
70136     signal line.
70138     Signed-off-by: Martin Krause <martin.krause@tqs.de>
70139     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70141 commit be4a87f11e297a5cededbf7dd71c0248f3874acd
70142 Author: Martin Krause <martin.krause@tqs.de>
70143 Date:   Wed Oct 24 08:41:27 2007 +0200
70145     TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
70147     Some commands for the STK52xx base board try to access the SM501 grafic
70148     controller. But the TQM5200S has no grafic controller (only the TQM5200
70149     and the TQM5200B have). This patch deactivates the commands accessing
70150     the SM501 for the TQM5200S.
70152     Signed-off-by: Martin Krause <martin.krause@tqs.de>
70153     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70155 commit b31f64343ead9482cd439b1adbe4c34026a641b1
70156 Author: Martin Krause <martin.krause@tqs.de>
70157 Date:   Mon Oct 22 16:45:53 2007 +0200
70159     TQM5200: fix spurious characters on second serial interface
70161     With this patch PSC3 is configured as UART. This is done, because if
70162     the pins of PSC3 are not configured at all (-> all pins are GPI),
70163     due to crosstalk, spurious characters may be send over the RX232_2_TXD
70164     signal line.
70166     Signed-off-by: Martin Krause <martin.krause@tqs.de>
70168 commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6
70169 Author: Martin Krause <martin.krause@tqs.de>
70170 Date:   Mon Oct 22 16:40:06 2007 +0200
70172     TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
70174     Some commands for the STK52xx base board try to access the SM501 grafic
70175     controller. But the TQM5200S has no grafic controller (only the TQM5200
70176     and the TQM5200B have). This patch deactivates the commands accessing
70177     the SM501 for the TQM5200S.
70179     Signed-off-by: Martin Krause <martin.krause@tqs.de>
70181 commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227
70182 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70183 Date:   Sun Oct 21 09:14:28 2007 +0200
70185     Mips: Fix string functions differ prototype declaration
70187     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70189 commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2
70190 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
70191 Date:   Fri Oct 19 17:51:40 2007 -0500
70193     fsl_pci_init enable COMMAND_MEMORY if inbound window
70195     Patch 16e23c3f removed PCSRBAR allocation.  But passing zero windows
70196     to pciauto_setup_device has the side effect of not getting
70197     COMMAND_MEMORY set.
70199     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
70201 commit e9d0d527992566ebef9826962ff1745b2f082b92
70202 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70203 Date:   Fri Oct 19 10:55:24 2007 +0200
70205     delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration
70207     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70209 commit 9c4884f54da982ce990c7d1760ac81b0704d3c64
70210 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70211 Date:   Fri Oct 19 08:10:15 2007 +0200
70213     fix warning: no return statement in function returning non-void
70215     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70217 commit e78220f6e514206757acfe247297fc9a328a881f
70218 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70219 Date:   Fri Oct 19 06:33:45 2007 +0200
70221     xsengine: Fix no partition type specified, use DOS as default
70223     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70225 commit 10cdb8dbd67a818823ab9ec88b68fc348903db59
70226 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70227 Date:   Fri Oct 19 00:24:59 2007 +0200
70229     lubbock: Fix no partition type specified, use DOS as default
70231     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70233 commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191
70234 Author: Wolfgang Denk <wd@denx.de>
70235 Date:   Tue Oct 23 16:50:03 2007 +0200
70237     Coding style: keep lists sorted; update CHANGELOG
70239     Signed-off-by: Wolfgang Denk <wd@denx.de>
70241 commit 58b74b05c621e2835ecf4e2d3243042cf4186777
70242 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70243 Date:   Fri Oct 19 00:09:05 2007 +0200
70245     Fix missing drivers makefile entries ds1722.c mw_eeprom.c
70247     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70249 commit 96455bfebc9887837095c9051d216f53c61b5f10
70250 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70251 Date:   Fri Oct 19 00:07:39 2007 +0200
70253     Fix warning differ in signedness in board/innokom/innokom.c
70255     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70257 commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd
70258 Author: Marcel Ziswiler <marcel@ziswiler.com>
70259 Date:   Fri Oct 19 00:25:33 2007 +0200
70261     fix pxa255_idp board
70263     The pxa255_idp being an old unmaintained board showed several issues:
70264     1. CONFIG_INIT_CRITICAL was still defined.
70265     2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined.
70266     3. Symbol flash_addr was undeclared.
70267     4. The boards lowlevel_init function was still called memsetup.
70268     5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000.
70269     6. Using -march=armv5 instead of -march=armv5te resulted in lots of
70270     'target CPU does not support interworking' warnings on recent compilers.
70271     7. The PXA's serial driver redefined FFUART, BTUART and STUART used as
70272     indexes rather than the register definitions from the pxa-regs header
70273     file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to
70274     avoid any ambiguities.
70275     8. There were several redefinition warnings concerning ICMR, OSMR3,
70276     OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file.
70277     9. The board configuration file was rather outdated.
70278     10. The part header file defined the vendor, product and revision arrays
70279     as unsigned chars instead of just chars in the block_dev_desc_t
70280     structure.
70282     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
70284 commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6
70285 Author: Rune Torgersen <runet@innovsys.com>
70286 Date:   Wed Oct 17 11:56:31 2007 -0500
70288     Make MPC8266ADS command selection more robust
70290     Fix MPC8266 command line definition so it won't break when new commands
70291     are added to u-boot.
70292     Signed-off-by Rune Torgersen <runet@innovsys.com>
70294 commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315
70295 Author: Bartlomiej Sieka <tur@semihalf.com>
70296 Date:   Tue Oct 23 13:14:10 2007 +0200
70298     Motion-PRO: Update configuration to accomodate next generation board.
70300     New board has faster oscillator and a different Flash chip. This affects:
70301     - CFG_MPC5XXX_CLKIN
70302     - SDRAM timings
70303     - Flash CS configuration (timings)
70304     - Flash sector size, and thus MTD partition layout
70305     - malloc() arena size (due to bigger Flash sectors)
70306     - smaller memory test range (due to bigger malloc() arena)
70308     This patch also enables more extensive memory testing via "mtest".
70310     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
70312 commit eff501904df2bf1724a750062628ba2c51dbb1f8
70313 Author: Bartlomiej Sieka <tur@semihalf.com>
70314 Date:   Tue Oct 23 11:36:07 2007 +0200
70316     Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration.
70318     Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay
70319     register must be written a value of 0x00000004 as the first step of the
70320     SDRAM contorller configuration.
70322     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
70324 commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54
70325 Author: Peter Pearse <peter.pearse@arm.com>
70326 Date:   Tue Oct 23 10:22:16 2007 +0100
70328     Move PL01* serial drivers to drivers/serial and adjust Makefiles.
70330 commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc
70331 Author: Stefan Roese <sr@denx.de>
70332 Date:   Tue Oct 23 10:17:42 2007 +0200
70334     ppc4xx: lwmon5: Some further GPIO config changes
70336     Signed-off-by: Stefan Roese <sr@denx.de>
70338 commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d
70339 Author: Vlad Lungu <vlad@comsys.ro>
70340 Date:   Sun Oct 21 22:10:10 2007 +0900
70342     [MIPS] Fix UNCACHED_SDRAM
70344     PHYSADDR is for physical address, KSEG1ADDR is for uncached.
70346     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
70347     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70349 commit 00101dd7a32d12f698150123e47e4b3420279f86
70350 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70351 Date:   Sun Oct 21 21:30:42 2007 +0900
70353     [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup
70355     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70357 commit eb700636db017d310edaeb559b13d82588560674
70358 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70359 Date:   Sun Oct 21 10:55:37 2007 +0900
70361     [MIPS] u-boot.lds: Define _gp in a standard manner
70363     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70365 commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0
70366 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70367 Date:   Sun Oct 21 10:55:36 2007 +0900
70369     [MIPS] Fix $gp usage
70371     Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use.
70372     As a general principle, we should use _gp for $gp.
70374     Thanks to linker script's help we fortunately have _gp which equals to
70375     _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not
70376     be able to access to GOT entires, global variables and procedure entry
70377     points. The right thing to do is to use _gp.
70379     This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_'
70380     which holds the offset from _gp. When updating GOT entries, we use this
70381     offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_.
70383     This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then
70384     I made some change to leave over num_got_entries.
70386     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70387     Cc: Vlad Lungu <vlad@comsys.ro>
70389 commit cbf2323b5b8285ea01acba7bbb905a3162d9b021
70390 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70391 Date:   Sun Oct 21 10:55:36 2007 +0900
70393     [MIPS] u-boot.lds: Fix __got_start and __got_end
70395     Ensure that __got_start points to top of the `.got', and __got_end points
70396     to bottom as well, so that we never fail to count num_got_entries.
70398     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70400 commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7
70401 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70402 Date:   Sun Oct 21 10:55:36 2007 +0900
70404     [MIPS] u-boot.lds: Remove duplicated .sdata section
70406     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
70408 commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1
70409 Author: Wolfgang Denk <wd@denx.de>
70410 Date:   Sun Oct 21 01:01:17 2007 +0200
70412     Minor coding style cleanup; update CHANGELOG
70414     Signed-off-by: Wolfgang Denk <wd@denx.de>
70416 commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c
70417 Author: Vlad Lungu <vlad@comsys.ro>
70418 Date:   Thu Oct 4 20:47:10 2007 +0300
70420     Fix NE2000 driver:
70422     Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try
70423     to do anything in eth_stop() if eth_init() was not called.
70424     Simplified RX path in order to avoid timeouts on really really
70425     fast NE2000 cards (read: qemu with internal tftp), NetLoop() is
70426     clever enough to cope with 1 packet per eth_rx().
70428     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
70430 commit df90968b48fb34fa9072fab150db2ac89678f537
70431 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
70432 Date:   Mon Sep 24 13:32:13 2007 -0400
70434     Setting MSR[DE] in do_reset
70436     Hello,
70437        This patch ensures the soft reset of the board for the 85xx boards
70438        by setting the MSR[DE] in the do_reset function.
70440     Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
70442 commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d
70443 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
70444 Date:   Mon Sep 24 13:36:01 2007 -0400
70446     MSR overwrite fix
70448     Hello,
70449       This patch fixes the MSR overwrite in the start.S when moving out of
70450       the last 4K page.
70452     Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
70454 commit 5c7ea64bb74a850a2b2303f853a8270695ad8602
70455 Author: Dan Wilson <dwilson@fulcrummicro.com>
70456 Date:   Fri Oct 19 11:33:48 2007 -0500
70458     tsec driver should clear RHALT on startup
70460     This was causing problems for some people.
70462     Signed-off-by: Alain Gravel <agravel@fulcrummicro.com>
70463     Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com>
70464     Signed-off-by: Andy Fleming <afleming@freescale.com>
70466 commit 7600d47b8f6a10019e537dc9a62aa1498df58d25
70467 Author: Kumar Gala <galak@kernel.crashing.org>
70468 Date:   Thu Oct 11 00:29:18 2007 -0500
70470     Improve handling of PCI interrupt device tree fixup on MPC85xx CDS
70472     On the MPC85xx CDS we have two issues:
70474     1. The device tree fixup code did not check to see if the property we are
70475     trying to update is actually found.  Its possible that it would update
70476     random memory starting at 0.
70478     2. Newer Linux kernel's have moved the location of the PCI nodes to be
70479     sibilings of the soc node and not children.  The explicit PATH to the PCI
70480     node would not be found for these device trees.  Add the ability to handle
70481     both paths.  In the future we shouldn't handle such fixups by explicit path.
70483     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
70485 commit a3063eec775719b7e91023bbec3f64b3118791df
70486 Author: Kumar Gala <galak@kernel.crashing.org>
70487 Date:   Thu Oct 11 00:18:48 2007 -0500
70489     Set OF_STDOUT_PATH to match the default console on MPC8568 MDS
70491     On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured
70492     console.  Make it so we match that config what we tell Linux as the early
70493     STDOUT console.
70495     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
70497 commit e1ce3cb617bb06f91f82f98915391175addf3e82
70498 Author: Kumar Gala <galak@kernel.crashing.org>
70499 Date:   Tue Oct 2 11:12:27 2007 -0500
70501     Remove magic numbers from cache related operations for mpc85xx
70503     The mpc85xx start code uses some magic numbers that we actually
70504     have #defines for in <config.h> so use those instead.
70506     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
70508 commit 5441f61a3d8b7034f19fc1361183e936198e6dbb
70509 Author: Detlev Zundel <dzu@denx.de>
70510 Date:   Fri Oct 19 16:47:26 2007 +0200
70512     Fix two typos.
70514     Signed-off-by: Detlev Zundel <dzu@denx.de>
70516 commit 281df457c1aa50d2752165d0c5c3282d4027b974
70517 Author: Tony Li <tony.li@freescale.com>
70518 Date:   Thu Oct 18 17:47:19 2007 +0800
70520     mpc83xx: Add configure entry for MPC83xx ATM support
70522     Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into
70523     Makfile and MAKEALL
70525     Signed-off-by: Tony Li <tony.li@freescale.com>
70526     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
70528 commit d2646554f529a9577515eceb0ec5eceee18244ba
70529 Author: Tony Li <tony.li@freescale.com>
70530 Date:   Thu Oct 18 17:44:38 2007 +0800
70532     mpc83xx: pq-mds-pib.c typo error
70534     Correct to val8 from val.
70536     Signed-off-by: Tony Li <tony.li@freescale.com>
70537     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
70539 commit 3e11ae80fec1ee12194940955431186abf6009c2
70540 Author: Stefan Roese <sr@denx.de>
70541 Date:   Wed Oct 17 15:40:19 2007 +0200
70543     ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command
70545     Signed-off-by: Stefan Roese <sr@denx.de>
70547 commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c
70548 Author: Jon Loeliger <jdl@freescale.com>
70549 Date:   Tue Oct 16 15:27:43 2007 -0500
70551     Initial mpc8610hpcd Makefile files.
70553     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
70554     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
70555     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
70556     Signed-off-by: Jon Loeliger <jdl@freescale.com>
70558 commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7
70559 Author: Jon Loeliger <jdl@freescale.com>
70560 Date:   Tue Oct 16 15:26:51 2007 -0500
70562     Initial mpc8610hpcd cpu/, README and include/ files.
70564     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
70565     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
70566     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
70567     Signed-off-by: Jon Loeliger <jdl@freescale.com>
70569 commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e
70570 Author: Jon Loeliger <jdl@freescale.com>
70571 Date:   Tue Oct 16 13:54:01 2007 -0500
70573     Initial mpc8610hpcd board files.
70575     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
70576     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
70577     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
70578     Signed-off-by: Jon Loeliger <jdl@freescale.com>
70580 commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd
70581 Author: runet@innovsys.com <runet@innovsys.com>
70582 Date:   Tue Oct 16 14:50:40 2007 -0500
70584     Make MPC8266ADS board compile again.
70586     Signed-off-by: Runet Torgersen <runet@innovsys.com>
70588 commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a
70589 Author: Jon Loeliger <jdl@freescale.com>
70590 Date:   Mon Aug 27 12:41:03 2007 -0500
70592     86xx: Allow for fewer DDR slots per memory controller.
70594     As a direct correlation exists between DDR DIMM slots
70595     and SPD EEPROM addresses used to configure them, use
70596     the individually defined SPD_EEPROM_ADDRESS* values to
70597     determine if a DDR DIMM slot should have its SPD
70598     configuration read or not.
70600     Effectively, this now allows for 1 or 2 DIMM slots
70601     per memory controller.
70603     Signed-off-by: Jon Loeliger <jdl@freescale.com>
70605 commit 4d4a945e189a2f384c66432316da2788a0ac1607
70606 Author: Rodolfo Giometti <giometti@enneenne.com>
70607 Date:   Mon Oct 15 11:59:17 2007 +0200
70609     PXA USB OHCI: "usb stop" implementation.
70611     Some USB keys need to be switched off before loading the kernel
70612     otherwise they can remain in an undefined status which prevents them
70613     to be correctly recognized by the kernel.
70615     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
70617 commit e2e93442e558cf1500e92861f99713b2f045ea22
70618 Author: Stefan Roese <sr@denx.de>
70619 Date:   Mon Oct 15 11:39:00 2007 +0200
70621     ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier
70623     The I2C bootstrap values that can be setup via the "bootstrap" command,
70624     were setup incorrect regarding the generation of the internal sync PCI
70625     clock. The values for PLB clock == 133MHz were slighly incorrect and the
70626     values for PLB clock == 166MHz were totally incorrect. This could
70627     lead to a hangup upon booting while PCI configuration scan.
70629     This patch fixes this issue and configures valid PCI divisor values
70630     for the sync PCI clock, with respect to the provided external async
70631     PCI frequency.
70633     Here the values of the formula in the chapter 14.2 "PCI clocking"
70634     from the 440EPx users manual:
70636     AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz
70638     33MHz async PCI frequency:
70639     PLB = 133:
70640     =>      32 <= 44.3 <= 65        (div = 3)
70642     PLB = 166:
70643     =>      32 <= 55.3 <= 65        (div = 3)
70645     66MHz async PCI frequency:
70646     PLB = 133:
70647     =>      65 <= 66.5 <= 132       (div = 2)
70649     PLB = 166:
70650     =>      65 <= 83 <= 132         (div = 2)
70652     Signed-off-by: Stefan Roese <sr@denx.de>
70654 commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587
70655 Author: Stefan Roese <sr@denx.de>
70656 Date:   Mon Oct 15 11:29:33 2007 +0200
70658     ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite
70660     The BCSR status bit for the 66MHz PCI operation was correctly
70661     addressed (MSB/LSB problem). Now the correct currently setup
70662     PCI frequency is displayed upon bootup.
70664     This patch also fixes this problem on Rainier & Yellowstone, since these
70665     boards use the same souce code as Sequoia & Yosemite do.
70667     Signed-off-by: Stefan Roese <sr@denx.de>
70669 commit da3aad55cbde80ab6e301aafa82a2c411aa53eff
70670 Author: Martin Krause <martin.krause@tqs.de>
70671 Date:   Wed Sep 26 17:55:56 2007 +0200
70673     TQM860M: adjust for doubled flash sector size.
70675     Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
70676     doubled sector size.
70678     Signed-off-by: Martin Krause <martin.krause@tqs.de>
70680 commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d
70681 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
70682 Date:   Wed Sep 26 17:55:54 2007 +0200
70684     TQM8xx: Fix CAN timing.
70686     Signed-off-by: Martin Krause <martin.krause@tqs.de>
70688 commit d43e489baf02afae49077791fb22332d240d8656
70689 Author: Martin Krause <martin.krause@tqs.de>
70690 Date:   Thu Sep 27 14:54:36 2007 +0200
70692     TQM866M: fix SDRAM refresh
70694     At 133 MHz the current SDRAM refresh rate is too fast
70695     (measured 4 * 1.17 us).
70696     CFG_MAMR_PTA changes from 39 to 97. This result
70697     in a refresh rate of 4 * 7.8 us at the default clock
70698     50 MHz. At 133 MHz the value will be then 4 * 2.9 us.
70699     This is a compromise until a new method is found to
70700     adjust the refresh rate.
70702     Signed-off-by: Martin Krause <martin.krause@tqs.de>
70704 commit 9ef57bbee1c67cc01da2026c242c4692db32be36
70705 Author: Martin Krause <martin.krause@tqs.de>
70706 Date:   Wed Sep 26 17:55:55 2007 +0200
70708     TQM866M: adjust for doubled flash sector size.
70710     Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
70711     doubled sector size.
70713     Signed-off-by: Martin Krause <martin.krause@tqs.de>
70715 commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763
70716 Author: Michal Simek <monstr@monstr.eu>
70717 Date:   Sun Oct 14 16:12:29 2007 +0200
70719     [FIX] XUPV2P change command handling
70720     and remove code violation
70722 commit 636400198228d96983c06657b17f760f5989958e
70723 Author: Wolfgang Denk <wd@denx.de>
70724 Date:   Sun Oct 14 00:13:19 2007 +0200
70726     Prepare for 1.3.0-rc3 release
70728     Signed-off-by: Wolfgang Denk <wd@denx.de>
70730 commit 68f14f77ca5fe5f9cc025c8cae101671f628309f
70731 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70732 Date:   Sat Sep 29 13:41:37 2007 +0200
70734     Fix warning differ in signedness in cpu/pxa/mmc.c
70736     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70738 commit fc19e36f741e8bc727c0a330170b3b5db90399ef
70739 Author: Wolfgang Denk <wd@denx.de>
70740 Date:   Sat Oct 13 23:51:14 2007 +0200
70742     Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
70744     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70745     Signed-off-by: Wolfgang Denk <wd@denx.de>
70747 commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296
70748 Author: Wolfgang Denk <wd@denx.de>
70749 Date:   Sat Oct 13 21:15:39 2007 +0200
70751     Coding Style cleanup.
70753     Signed-off-by: Wolfgang Denk <wd@denx.de>
70755 commit e1893815b0999410d7a327589611c7b38e95299e
70756 Author: Wolfgang Denk <wd@denx.de>
70757 Date:   Fri Oct 12 15:49:39 2007 +0200
70759     GP3 SSA: enable RTC
70761     Signed-off-by: Wolfgang Denk <wd@denx.de>
70763 commit 8002012041f1ff9f997a5727abe5015f70cd2e46
70764 Author: Grzegorz Bernacki <gjb@semihalf.com>
70765 Date:   Tue Oct 9 13:58:24 2007 +0200
70767     [ads5121] EEPROM support added.
70769     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
70771 commit 7b624ad254b97e5a25dca2304a398b64aeedaffe
70772 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
70773 Date:   Sat Oct 6 18:55:35 2007 +0200
70775     AVR32: Initialize bi_flash* in board_init_r
70777     The ATSTK1000-specific flash driver intializes bi_flashstart,
70778     bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI
70779     driver, don't.
70781     Initialize these in board_init_r instead so that things will still be
70782     set up correctly when we switch to the CFI driver.
70784     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
70786 commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8
70787 Author: Marian Balakowicz <m8@semihalf.com>
70788 Date:   Fri Oct 5 10:40:54 2007 +0200
70790     tqm5200: Fix CONFIG_CMD_PCI typo in board config file.
70792     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
70794 commit 92869195ef8210758d2176230c0a36897afd50ed
70795 Author: Bartlomiej Sieka <tur@semihalf.com>
70796 Date:   Fri Oct 5 09:46:06 2007 +0200
70798     CM5200: Fix missing null-termination in hostname manipulation code
70800     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
70802 commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87
70803 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
70804 Date:   Tue Oct 2 19:09:01 2007 +0200
70806     Fix memtest breakage
70808     CFG_MEMTEST_START uses weird magic involving gd, which fails to
70809     compile. Use hardcoded values instead (we actually know how much RAM
70810     we have on board.)
70812     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
70814 commit 738815c0cc44aa329097f868dc1efc49ede9c5ba
70815 Author: Stefan Roese <sr@denx.de>
70816 Date:   Tue Oct 2 11:44:46 2007 +0200
70818     ppc4xx: Coding style cleanup
70820     Signed-off-by: Stefan Roese <sr@denx.de>
70822 commit 87c1833a39e944db66385286fd5e28f9b3fcdd50
70823 Author: Stefan Roese <sr@denx.de>
70824 Date:   Tue Oct 2 11:44:19 2007 +0200
70826     ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet
70828     Signed-off-by: Stefan Roese <sr@denx.de>
70830 commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670
70831 Author: Grzegorz Bernacki <gjb@semihalf.com>
70832 Date:   Mon Oct 1 09:51:50 2007 +0200
70834     Program EPLD to force full duplex mode for PHY.
70836     EPLD forces modes of PHY operation. By default full duplex is turned off.
70837     This fix turns it on.
70839     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
70841 commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818
70842 Author: Timo Ketola <timo.ketola@exertus.fi>
70843 Date:   Mon Sep 24 14:50:32 2007 +0300
70845     Bugfix: Use only one PTD for one endpoint
70847     Original isp116x-hcd code prepared multiple PTDs for longer than 16
70848     byte transfers for one endpoint. That is unnecessary because the
70849     ISP116x is able to split long data from one PTD into multiple
70850     transactions based on the buffer size of the endpoint. It also caused
70851     serious problems if the endpoint NAKed some of the transactions. In
70852     that case ISP116x wouldn't notice that the other PTDs were for the same
70853     endpoint and would try the other PTDs possibly out of order. That would
70854     break the whole transfer.
70856     This patch makes isp116x_submit_job to use one PTD for one transfer.
70858     Signed-off-by: Timo Ketola <timo.ketola@exertus.fi>
70859     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
70861 commit 86ec86c04326c3913178a7679aa910de071da75d
70862 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70863 Date:   Thu Sep 27 23:27:47 2007 +0200
70865     Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial
70867     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
70869 commit 3e954beb614b5b190d7f4f4c3b641437a0132e35
70870 Author: Stefan Roese <sr@denx.de>
70871 Date:   Tue Sep 11 14:12:55 2007 +0200
70873     ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test)
70875     Signed-off-by: Stefan Roese <sr@denx.de>
70877 commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a
70878 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
70879 Date:   Wed Sep 26 16:35:54 2007 -0500
70881     85xx io out functions need sync after write.
70883     This fixes the mc146818 rtc_read/write functions for 85xx.
70885     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
70887 commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae
70888 Author: Grant Likely <grant.likely@secretlab.ca>
70889 Date:   Tue Sep 25 15:48:05 2007 -0600
70891     Fpga: fix incorrect test of CFG_FPGA_XILINX macro
70893     CFG_FPGA_XILINX is a bit value used to test against the value in
70894     CONFIG_FPGA.  Testing for a value will always return TRUE.  I don't
70895     think that is the intention in this code.
70897     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70899 commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166
70900 Author: Michal Simek <monstr@monstr.eu>
70901 Date:   Mon Sep 24 00:41:30 2007 +0200
70903     [FIX] change command handling and removing code violation
70905 commit f240356507038e5ce55e8a24cb2607e9eae6d10c
70906 Author: Michal Simek <monstr@monstr.eu>
70907 Date:   Mon Sep 24 00:36:06 2007 +0200
70909     [FIX] change sets of commands
70910     because changing of command handling brings
70911     compilation problems
70913 commit cb1bc63b75a232571eb69aa2c8aa919321655845
70914 Author: Michal Simek <monstr@monstr.eu>
70915 Date:   Mon Sep 24 00:30:42 2007 +0200
70917     [FIX] Email reparation & Copyright
70918     Both codes are written by myself without any
70919     support from CTU
70921 commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852
70922 Author: Michal Simek <monstr@monstr.eu>
70923 Date:   Mon Sep 24 00:25:11 2007 +0200
70925     [PATCH] Change macro name for UartLite
70926     because PowerPC 405 can use UartLite as console
70928 commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716
70929 Author: Michal Simek <monstr@monstr.eu>
70930 Date:   Mon Sep 24 00:21:19 2007 +0200
70932     [PATCH] Add support for design without interrupt controller
70933     Polling timer
70935 commit 0731933ec8ec45d02ba89b52df673d526873cdde
70936 Author: Michal Simek <monstr@monstr.eu>
70937 Date:   Mon Sep 24 00:19:48 2007 +0200
70939     [FIX] resolve problem with cpu without barrel shifter
70941 commit db14d77995ce515b728b178b63f82babe60e3d56
70942 Author: Michal Simek <monstr@monstr.eu>
70943 Date:   Mon Sep 24 00:18:46 2007 +0200
70945     [FIX] repair email address
70947 commit 481d4328618804add1f818a6c96296121cd0528e
70948 Author: Michal Simek <monstr@monstr.eu>
70949 Date:   Mon Sep 24 00:17:42 2007 +0200
70951     [FIX] repair MFSL commands
70953 commit b90c045f035c3cc9b5d2edaed6048dfb74e40763
70954 Author: Michal Simek <monstr@monstr.eu>
70955 Date:   Mon Sep 24 00:08:37 2007 +0200
70957     synchronizition with mainline
70959 commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13
70960 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70961 Date:   Sun Sep 23 02:42:38 2007 +0900
70963     sh: Add support command of ide with sh
70965     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70967 commit d91ea45d15cf8e0987456bd211ffbb650824b6f1
70968 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70969 Date:   Sun Sep 23 02:38:42 2007 +0900
70971     sh: Update Makefile
70973     Add support MS7722SE01 to Makefile.
70975     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70977 commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6
70978 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70979 Date:   Sun Sep 23 02:31:13 2007 +0900
70981     sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
70983     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70985 commit 047375bfa4c3052fa50a748da7ff89e9dad3b364
70986 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70987 Date:   Sun Sep 23 02:19:24 2007 +0900
70989     sh: Update MS7750SE01 platform
70991     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70993 commit 516ad760db3553766267ada01b7d5d727faa4bbd
70994 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
70995 Date:   Sun Sep 23 02:17:08 2007 +0900
70997     sh: Remove comment out code from include/asm-sh/cpu_sh4.h
70999     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
71001 commit b02bad128669e567fce87d8df823b06a0144b8db
71002 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
71003 Date:   Sun Sep 23 02:12:30 2007 +0900
71005     sh: Update core code of SuperH.
71007     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
71009 commit 66dcad3a9a53e0766d90e0084123bd8529522fb0
71010 Author: Wolfgang Denk <wd@denx.de>
71011 Date:   Thu Sep 20 00:04:14 2007 +0200
71013     v1.3.0-rc2
71015     Signed-off-by: Wolfgang Denk <wd@denx.de>
71017 commit 135e19bc2773ebca487e9a8371f67e1ba202313a
71018 Author: Wolfgang Denk <wd@denx.de>
71019 Date:   Tue Sep 18 21:36:35 2007 +0200
71021     Avoid compiler warning.
71023     Signed-off-by: Wolfgang Denk <wd@denx.de>
71025 commit 8a783a65851bc7421ab69f442261215e21b8891a
71026 Author: Grant Likely <grant.likely@secretlab.ca>
71027 Date:   Tue Sep 18 12:24:57 2007 -0600
71029     Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config
71031     /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded
71032     nulls in a string differently.  For example, the following statement:
71033         echo "this is a string\0" > afile
71034     Will produce the following with /bin/bash:
71035         "this is a string\0"
71036     But with /bin/dash, will produce:
71037         "this is a string
71039     Bug fixed by moving the embedded null out of the makefile and into the
71040     config header.  Also renamed the macro to avoid usage colision with the same
71041     macro used by other board ports.
71043     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71045 commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35
71046 Author: Wolfgang Denk <wd@denx.de>
71047 Date:   Tue Sep 18 17:40:27 2007 +0200
71049     MCC200: fix build warning
71051     The MCC200 board config file includes version.h for some customer-
71052     specific setting, which causes warnings with "make depend"; build
71053     version.h before depend.
71055     Signed-off-by: Wolfgang Denk <wd@denx.de>
71057 commit bd86220f58b99d6896198c385fda132f0c980915
71058 Author: Peter Pearse <peter.pearse@arm.com>
71059 Date:   Tue Sep 18 13:07:54 2007 +0100
71061     Move coloured led API to status_led.h
71062     Improve indentation in drivers/at45.c
71064 commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7
71065 Author: Eirik Aanonsen <eaa@wprmedical.com>
71066 Date:   Tue Sep 18 08:47:20 2007 +0200
71068     Update atstk1002 bootargs.
71070     Updates to atstk1002 U-Boot header file:
71071     - Changed bootargs:
71072         * Set the bootargs for at1002 to point to the SD-card partition instead
71073         * ... of the boot flash.
71074         * Removing the rootfstype since that argument are not needed.
71076     Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com>
71077     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
71079 commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225
71080 Author: Eirik Aanonsen <eaa@wprmedical.com>
71081 Date:   Wed Sep 12 13:32:37 2007 +0200
71083     Add some comments to clocks in atstk1002.h
71085     This patch applies some clarifying comments to how the different
71086     clocks are setup according to atstk1002.h Some of the previous
71087     comments where stating wrongful information.
71089     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
71091 commit 97213f32416ead885deafea86774e912ffd60ad0
71092 Author: David Saada <David.Saada@ecitele.com>
71093 Date:   Mon Sep 17 17:04:47 2007 +0200
71095     Description: Add NEC's PCI OHCI module ID to the USB OHCI driver
71097     Signed-off-by: David Saada <david.saada@ecitele.com>
71099 commit 30363e98fa470fbecea5e8bc0f1443352754f303
71100 Author: Stefan Roese <sr@denx.de>
71101 Date:   Mon Sep 17 08:20:47 2007 +0200
71103     Small whitespace cleanup of OneNAND patch
71105     Signed-off-by: Stefan Roese <sr@denx.de>
71107 commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1
71108 Author: Kyungmin Park <kmpark@infradead.org>
71109 Date:   Mon Sep 10 17:15:14 2007 +0900
71111     OneNAND support (take #2)
71113     [PATCH 3/3] OneNAND support (take #2)
71115     OneNAND support at U-Boot
71117     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
71119 commit 17aa2800457df0c06b41516f46f126712c196219
71120 Author: Kyungmin Park <kmpark@infradead.org>
71121 Date:   Mon Sep 10 17:14:34 2007 +0900
71123     OneNAND support (take #2)
71125     [PATCH 2/3] OneNAND support (take #2)
71127     OneNAND support at U-Boot
71129     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
71131 commit 916527f4809a7bcd811f1f1daf34af184e31dd8c
71132 Author: Kyungmin Park <kmpark@infradead.org>
71133 Date:   Mon Sep 10 17:13:49 2007 +0900
71135     OneNAND support (take #2)
71137     [PATCH 1/3] OneNAND support (take #2)
71139     OneNAND support at U-Boot
71141     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
71143 commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5
71144 Author: Michal Simek <monstr@monstr.eu>
71145 Date:   Sun Sep 16 20:51:57 2007 +0200
71147     [FIX] remove files form repository
71149 commit 67c31036acaaaa992fc346cc89db0909a7e733c4
71150 Author: Wolfgang Denk <wd@denx.de>
71151 Date:   Sun Sep 16 17:10:04 2007 +0200
71153     TQM8xx[LM]: Fix broken environment alignment.
71155     With recent toolchains, the environment sectors were no longer aligned to
71156     sector boundaries. The reason was a combination of two bugs:
71158     1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
71159        for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
71160        this gets defined, is not included here (and cannot be included
71161        without causing lots of problems).
71163        Added a new #define CFG_USE_PPCENV for all boards which really
71164        want to put the environment is a ".ppcenv" section.
71166     2) The linker scripts just include environment.o, silently assuming
71167        that the objects in that file are really in the order in which
71168        they are coded in the C file, i. e. "environment" first, then
71169        "redundand_environment", and "env_size" last. However, current
71170        toolchains (GCC-4.x) reorder the objects, causing the environment
71171        data not to start on a flash sector boundary:
71173        Instead of:                                      we got:
71175         40008000 T environment                  40008000 T env_size
71176         4000c000 T redundand_environment        40008004 T redundand_environment
71177         40010000 T env_size                     4000c004 T environment
71179        Note: this patch fixes just the first part, and cures the alignment
71180        problem by making sure that "env_size" gets placed correctly. However,
71181        we still have a potential issue because primary and redundant
71182        environment sectors are actually swapped, i. e. we have now:
71184         40008000 T redundand_environment
71185         4000c000 T environment
71186         40010000 T env_size
71188        This shall be fixed in the next version.
71190     Signed-off-by: Wolfgang Denk <wd@denx.de>
71192 commit eb6da8050797c204c9d010548424186c7ce32fc1
71193 Author: Wolfgang Denk <wd@denx.de>
71194 Date:   Sun Sep 16 02:39:35 2007 +0200
71196     TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels
71198     Signed-off-by: Wolfgang Denk <wd@denx.de>
71200 commit cd2d1602c54cc6957bdef3872272a4b264893960
71201 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
71202 Date:   Mon Sep 10 14:54:56 2007 -0400
71204     Typo fix in tsec.c
71206     Fixup for the break statement in wrong place.
71208     [Patch by urwithsughosh@gmail.com]
71209     Acked-by: Andy Fleming <afleming@freescale.com>
71210     Signed-off-by:      Wolfgang Denk <wd@denx.de>
71212 commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7
71213 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
71214 Date:   Tue Sep 11 17:04:00 2007 +0200
71216     Fix do_div() usage in nand process output
71218     Fix usage of do_div() in nand erase|read|write process output.
71220     The last patch to nand_util.c introduced do_div() instead of libgcc's
71221     implementation. But do_div() returns the quotient in its first
71222     macro parameter and not as result.
71224     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
71226 commit c750d2e6692a000a82f29de7bf24e3dc21239161
71227 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
71228 Date:   Wed Sep 12 12:36:53 2007 +0200
71230     NAND: Add CFG_NAND_QUIET option
71232     This config option sets the default for the progress information
71233     output behavior that can also be configured through the 'quiet'
71234     environment variable.
71236     The legacy NAND code does not print the current progress info
71237     on the console. So this option is for backward compatibility for
71238     units that are in the field and where setting the quiet variable
71239     is not an option. With CFG_NAND_QUIET set to '1' the console
71240     progress info is turned off. This can still be overwritten
71241     through the environment variable.
71243     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
71245 commit dcb88630290d2bcd803386dd4c2be73142994c4f
71246 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
71247 Date:   Thu Sep 13 16:06:05 2007 -0700
71249     ColdFire: fix build error becasue of bad type of mii_init()
71251     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
71253 commit 314d5b6ce52a4ed19dd295d1364e246c5e605017
71254 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
71255 Date:   Thu Sep 13 16:04:05 2007 -0700
71257     ColdFire: Fix build error caused by pixis.c
71259     Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
71261     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
71263 commit e21659e30660a1377c42af135a6114efe39801d9
71264 Author: Sam Sparks <SSparks@twacs.com>
71265 Date:   Fri Sep 14 11:14:42 2007 -0600
71267     Update MPC8349ITX*_config to place config.tmp in right place.
71269     MPC834ITX*_config does not store config.tmp at the correct locatation,
71270     causing MPC8349ITXGP to have the wrong TEXT_BASE.
71272     Signed-off-by: Sam Sparks <SSparks@twacs.com>
71273     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71275 commit 1218abf1b5817a39a82399b4b928b00750575bda
71276 Author: Wolfgang Denk <wd@denx.de>
71277 Date:   Sat Sep 15 20:48:41 2007 +0200
71279     Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
71281     Signed-off-by: Wolfgang Denk <wd@denx.de>
71283 commit 66b3f24d665be678a9dbb125b1e84185400f63b5
71284 Author: Dirk Behme <dirk.behme@googlemail.com>
71285 Date:   Sat Sep 15 11:55:42 2007 +0200
71287     Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
71289     As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
71290     function local.
71292     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
71294     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
71296 commit 991b089d1ce5ad945725e3657a8f106dfa02a38e
71297 Author: Michal Simek <monstr@monstr.eu>
71298 Date:   Sat Sep 15 00:03:35 2007 +0200
71300     Synchronize with U-BOOT mainline
71302 commit d7fee32b7e61fe11c64e371cde79faa4768e8350
71303 Author: Sam Sparks <SSparks@twacs.com>
71304 Date:   Fri Sep 14 11:14:42 2007 -0600
71306     Update MPC8349ITX*_config to place config.tmp in right place.
71308     MPC834ITX*_config does not store config.tmp at the correct locatation,
71309     causing MPC8349ITXGP to have the wrong TEXT_BASE.
71311     Signed-off-by: Sam Sparks <SSparks@twacs.com>
71312     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71313     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71315 commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c
71316 Author: Bartlomiej Sieka <tur@semihalf.com>
71317 Date:   Thu Sep 13 18:21:48 2007 +0200
71319     cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9
71321     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
71323 commit e1f601b572db5de9aa81a0b77c68a86994fe24c4
71324 Author: Bartlomiej Sieka <tur@semihalf.com>
71325 Date:   Thu Sep 13 16:33:59 2007 +0200
71327     tqm5200: Restore customary env. variable boot commands for powerpc kernels
71329     - update default definitions of kernel_addr and fdt_addr env. variables
71330     - make arch/powerpc booting the default scenario
71331     - update MTD partition layout to match the above
71333     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
71335 commit f34024d4a328e6edd906456da98d2c537155c4f7
71336 Author: Wolfgang Denk <wd@denx.de>
71337 Date:   Wed Sep 12 00:48:57 2007 +0200
71339     Fix memory corruption problem on STX GP3 SSA Board.
71341     Signed-off-by: Wolfgang Denk <wd@denx.de>
71343 commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc
71344 Author: Peter Pearse <peter.pearse@arm.com>
71345 Date:   Tue Sep 11 15:35:01 2007 +0100
71347     Final tidy
71349 commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e
71350 Author: Grzegorz Bernacki <gjb@semihalf.com>
71351 Date:   Tue Sep 11 15:42:11 2007 +0200
71353     [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
71354     scan on second pci bus.
71356     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71358 commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0
71359 Author: Grzegorz Bernacki <gjb@semihalf.com>
71360 Date:   Tue Sep 11 12:57:52 2007 +0200
71362     [ppc4xx] Individual handling of sdram.c for bamboo_nand build
71364     Bamboo has a file sdram.c which needs special treatment when building in
71365     separate directory. It has to be linked to build directory otherwise it is
71366     not seen.
71368     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71370 commit d45963854eff39d575124d859419bb4953ce2c87
71371 Author: Michal Simek <monstr@monstr.eu>
71372 Date:   Tue Sep 11 00:37:04 2007 +0200
71374     [FIX] Microblaze ML401 - repare FLASH handling
71376 commit 38c1ef728d19950414a8ab1ccfc53767848fa346
71377 Author: Sean MCGOOGAN <sean.mcgoogan@st.com>
71378 Date:   Mon Sep 10 16:55:59 2007 +0100
71380     Allocate CPU Architecture Code for STMicroelectronics' ST200.
71382     Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
71383     ---------------------------------------------------
71385 commit 754bac48156f8958d8f6a53a51eda88ab5758929
71386 Author: Wolfgang Denk <wd@denx.de>
71387 Date:   Mon Sep 10 20:42:31 2007 +0200
71389     Update version to match current state.
71391     Signed-off-by: Wolfgang Denk <wd@denx.de>
71393 commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b
71394 Author: Grzegorz Bernacki <gjb@semihalf.com>
71395 Date:   Mon Sep 10 17:39:08 2007 +0200
71397     [MPC512x] Streamline frame handling in the FEC driver
71399     - convert frame size settings to be derived from a single base
71400     - set frame size to the recommended default value
71402     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71404 commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2
71405 Author: Kyungmin Park <kmpark@infradead.org>
71406 Date:   Mon Sep 10 11:34:00 2007 +0900
71408     Remove compiler warning: target CPU does not support interworking
71410     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
71412 commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2
71413 Author: Wolfgang Denk <wd@denx.de>
71414 Date:   Sun Sep 9 21:21:33 2007 +0200
71416     Fix compile error in spc1920 config.
71418     Signed-off-by: Markus Klotzbücher <mk@denx.de>
71419     Signed-off-by: Wolfgang Denk <wd@denx.de>
71421 commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622
71422 Author: Grant Likely <grant.likely@secretlab.ca>
71423 Date:   Fri Sep 7 09:25:07 2007 -0600
71425     Bugfix: make bootm+libfdt compile on boards with no flash
71427     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71429 commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778
71430 Author: Grzegorz Bernacki <gjb@semihalf.com>
71431 Date:   Fri Sep 7 18:35:37 2007 +0200
71433     [PPC440SPe] PCIe environment settings for Katmai and Yucca
71435     - 'pciconfighost' is set by default in order to be able to scan bridges
71436     behind the primary host/PCIe
71438     - 'pciscandelay' env variable is recognized to allow for user-controlled
71439     delay before the PCIe bus enumeration; some peripheral devices require a
71440     significant delay before they can be scanned (e.g. LSI8408E); without the
71441     delay they are not detected
71443     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71445 commit 7f1913938984ef6c6a46cb53e003719196d9c5de
71446 Author: Grzegorz Bernacki <gjb@semihalf.com>
71447 Date:   Fri Sep 7 18:20:23 2007 +0200
71449     [PPC440SPe] Improve PCIe configuration space access
71451     - correct configuration space mapping
71452     - correct bus numbering
71453     - better access to config space
71455     Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
71456     first device on the first bus. We now allow to configure up to 16 buses;
71457     also, scanning for devices behind the PCIe-PCIe bridge is supported, so
71458     peripheral devices farther in hierarchy can be identified.
71460     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71462 commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427
71463 Author: Grzegorz Bernacki <gjb@semihalf.com>
71464 Date:   Fri Sep 7 17:46:18 2007 +0200
71466     [PPC440SPe] Convert machine check exceptions handling
71468     Convert using fixup mechanism to suppressing MCK for the duration of config
71469     read/write transaction: while fixups work fine with the case of a precise
71470     exception, we identified a major drawback with this approach when there's
71471     an imprecise case. In this scenario there is the following race condition:
71472     the fixup is (by design) set to catch the instruction following the one
71473     actually causing the exception; if an interrupt (e.g. decrementer) happens
71474     between those two instructions, the ISR code is executed before the fixup
71475     handler the machine check is no longer protected by the fixup handler as it
71476     appears as within the ISR code. In consequence the fixup approach is being
71477     phased out and replaced with explicit suppressing of MCK during a PCIe
71478     config read/write cycle.
71480     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71482 commit ff7640c9ead8806b5d827f2b29f9cb2632add729
71483 Author: Wolfgang Denk <wd@denx.de>
71484 Date:   Fri Sep 7 17:43:36 2007 +0200
71486     Fix typo in MAKEALL script.
71488     Signed-off-by: Wolfgang Denk <wd@denx.de>
71490 commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810
71491 Author: Grzegorz Bernacki <gjb@semihalf.com>
71492 Date:   Fri Sep 7 17:09:21 2007 +0200
71494     [MPC512x] Proper handling of larger frames in the FEC driver
71496     When frame larger than local RX buffer is received, it is split and handled
71497     by two buffer descriptors. Prior to this patch the FEC driver discarded
71498     contents of a buffer descriptor without the 'LAST' bit set, so the first
71499     part of the frame was lost in case of larger frames. This fix allows to
71500     safely combine the two pieces into the whole frame.
71502     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71504 commit 8d17979d0359492a822a0a409d26e3a3549b4cd4
71505 Author: Rafal Jaworowski <raj@semihalf.com>
71506 Date:   Fri Sep 7 17:05:36 2007 +0200
71508     [MPC512x] Correct fixup relocation
71510     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
71512 commit a89cbbd27a60e6740772000fd0688ffba1c2576a
71513 Author: Wolfgang Denk <wd@denx.de>
71514 Date:   Fri Sep 7 01:21:25 2007 +0200
71516     Update CHANGELOG, minor coding style cleanup.
71518 commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3
71519 Author: stefano babic <sbabic@denx.de>
71520 Date:   Thu Aug 30 23:01:49 2007 +0200
71522     PXA270: Added support for TrizepsIV board.
71524     This patch add support for the Trizeps IV module (520Mhz).
71526     Signed-off-by: Stefano Babic <sbabic@denx.de>
71528 commit 80172c6181c912fbb34ea3ba0c22b232b419b47f
71529 Author: stefano babic <sbabic@denx.de>
71530 Date:   Thu Aug 30 22:57:04 2007 +0200
71532     PXA270: Add support for multiple serial ports.
71534     This patch adds support for multiple serial ports to the PXA target.
71535     FFUART, BTUART and STUART are supported.
71537     Signed-off-by: Stefano Babic <sbabic@denx.de>
71539 commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e
71540 Author: stefano babic <sbabic@denx.de>
71541 Date:   Thu Aug 30 22:48:47 2007 +0200
71543     PXA270: fix compile issue (invalid lvalue)
71545     Code is broken for PXA270 due to "invalid lvalue in assignment".
71547     This patch fix it in pxa-regs.h
71549     Signed-off-by: Stefano Babic <sbabic@denx.de>
71551 commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8
71552 Author: Jason Jin <Jason.jin@freescale.com>
71553 Date:   Thu Aug 30 18:19:05 2007 +0800
71555     Add BUILD_DIR support for bios emulator.
71557     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
71559 commit b4d8a55145442f136982634862341a3e02002bda
71560 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
71561 Date:   Fri Aug 31 14:41:51 2007 +0900
71563     [MIPS] Remove inline asm string functions
71565     Stop using inline string functions on MIPS as other ARCHs do so,
71566     since the optimized inline asm versions are not small.
71568     This change is triggered by a following MIPS build error:
71569     common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
71570     common/exports.c:32: undefined reference to `strcmp'
71571     make: *** [u-boot] Error 1
71573     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
71575 commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5
71576 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
71577 Date:   Fri Aug 31 14:41:45 2007 +0900
71579     [MIPS] Update asm string header
71581     This patches contains several bugfixes and cleanups in the latest upstream:
71583      - Don't include linux/config.h
71584      - Remove buggy inline version of memscan.
71585      - Merge with Linux 2.6.11-rc3.
71586      - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
71587      - Goodbye mips64.  31704 lines of code bite the dust.
71588      - Replace extern inline with static inline.
71589      - Fix return value of strncpy.
71590      - Remove a bunch more "$1" clobbers.
71592     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
71594 commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2
71595 Author: Bartlomiej Sieka <tur@semihalf.com>
71596 Date:   Tue Sep 4 17:31:22 2007 +0200
71598     Fix do_bootm_linux() so that multi-file images with FDT blob boot.
71600     Fix incorrect blob address calculation in do_bootm_linux() that prevents
71601     booting the kernel from a multi-file image (kernel + initrd + blob).
71603     Also, make minor updates to the U-Boot's output and to the coding style.
71605     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
71607 commit 041a2554ad619e80dce520c1a33210affcb6a3f2
71608 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
71609 Date:   Fri Aug 31 14:29:04 2007 +0200
71611     Add support for Sil680 IDE controller.
71613     o add drivers/sil680.c to support the Sil680 IDE-controller.
71614     o drivers/Makefile: add sil680.o.
71616     Signed-off-by: Gary Jennejohn <garyj@denx.de>
71618 commit e79021223bc339df655e360645a52c457a74b067
71619 Author: Grant Likely <grant.likely@secretlab.ca>
71620 Date:   Thu Sep 6 09:47:40 2007 -0600
71622     bootm/fdt: Only process the fdt if an fdt address was provided
71624     Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style
71625     kernels using the board info structure (instead of passing a device tree)
71626     This change allows the old style booting to be used if the fdt argument
71627     was not passed to 'bootm'.
71629     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71630     Acked-by: Kim Phillips <kim.phillips@freescale.com>
71632 commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43
71633 Author: Grant Likely <grant.likely@secretlab.ca>
71634 Date:   Thu Sep 6 09:46:23 2007 -0600
71636     Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
71638     Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
71640     Tested on: lite5200b
71642     Note: the fixup functions have not been moved to a common place.  This
71643     patch is targeted for immediate merging as in solves a build issue, but
71644     the final name/location of the fixups is still subject to debate.  I
71645     propose to merge this now, and move the fixups in the next merge window
71646     to be usable by all targets.
71648     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71650 commit 41bb76e941929f54a73206fb132f7a4c275543a3
71651 Author: Grant Likely <grant.likely@secretlab.ca>
71652 Date:   Thu Sep 6 09:46:17 2007 -0600
71654     libfdt: add convenience function fdt_find_and_setprop()
71656     Given the path to a node, fdt_find_and_setprop() allows a property value
71657     to be set directly.
71659     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71661 commit 80767a6cead9990d9e77e62be947843c2c72f469
71662 Author: Peter Pearse <peter.pearse@arm.com>
71663 Date:   Wed Sep 5 16:04:41 2007 +0100
71665     Changed API name to coloured_led.h
71666     Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
71667     Tidied other cpu/arm920t/start.S code
71669 commit 56a9270521baaa00e12639a978302a67f61ef060
71670 Author: Kumar Gala <galak@kernel.crashing.org>
71671 Date:   Thu Aug 30 16:18:18 2007 -0500
71673     Fix ULI RTC support on MPC8544 DS
71675     The RTC on the M1575 ULI chipset requires a dummy read before
71676     we are able to talk to the RTC.  We accomplish this by adding a
71677     second memory region to the PHB the ULI is on and read from it.
71679     The second region is added to maintain compatiabilty with Linux's
71680     view of the PCI memory map.
71682     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
71684 commit f75e89e9b5714db2b0e80074071dfbdd6f59488a
71685 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
71686 Date:   Thu Aug 30 01:58:48 2007 -0500
71688     ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
71690     pcie is now differentiated from pci.  Add 8641 bus-range updates.
71692     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
71694 commit 9f5c3d3720e777a572dcdc8af2008b44c7243885
71695 Author: Peter Pearse <peter.pearse@arm.com>
71696 Date:   Tue Sep 4 16:18:38 2007 +0100
71698     Add coloured led interface for ARM boards.
71699     Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
71701 commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb
71702 Author: Peter Pearse <peter.pearse@arm.com>
71703 Date:   Tue Sep 4 14:49:28 2007 +0100
71705     Move include/led.h to board/at91rm9200dk
71707 commit 6e4bf9b24e57c15abc6542e685d06380bc64af27
71708 Author: Peter Pearse <peter.pearse@arm.com>
71709 Date:   Tue Sep 4 14:25:51 2007 +0100
71711     Ran Lindent on drivers/at45.c
71713 commit 557ab89d294f08dd532f21d19861b40093200a33
71714 Author: Peter Pearse <peter.pearse@arm.com>
71715 Date:   Tue Sep 4 14:23:50 2007 +0100
71717     Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX
71719 commit 81b73dec16fd1227369a191e725e10044a9d56b8
71720 Author: Gary Jennejohn <garyj@denx.de>
71721 Date:   Fri Aug 31 15:21:46 2007 +0200
71723     ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
71725     The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
71726     set to non-zero, because it doesn't support MRM (memory-read-
71727     multiple) correctly. We now added the possibility to configure
71728     this register in the board config file, so that the default value
71729     of 8 can be overridden.
71731     Here the details of this patch:
71733     o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
71734       board-specific settings. As an example the sequoia board requires 0.
71735       Idea from Stefan Roese <sr@denx.de>.
71736     o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
71737       PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
71738     o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
71739       CFG_PCI_CACHE_LINE_SIZE to 0.
71741     Signed-off-by: Gary Jennejohn <garyj@denx.de>
71742     Signed-off-by: Stefan Roese <sr@denx.de>
71744 commit 60174746c668b309378a91488dded898e9553eae
71745 Author: Wolfgang Denk <wd@denx.de>
71746 Date:   Fri Aug 31 10:01:51 2007 +0200
71748     Fix TFTP OACK code for short packets.
71750     The old code had a loop limit overflow bug which caused a semi-
71751     infinite loop for small packets, because in "i<len-8", "i" was signed,
71752     but "len" was unsigned, and "len-8" became a huge number for small
71753     values of "len".
71755     This is a workaround which replaces broken commit 8f1bc284.
71757     Signed-off-by: Wolfgang Denk <wd@denx.de>
71759 commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee
71760 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
71761 Date:   Thu Aug 30 15:03:05 2007 +0200
71763     Reduce BOOTDELAY variable to 1 second by default for STK1002
71765     Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
71766     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
71768 commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a
71769 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
71770 Date:   Thu Aug 30 15:03:04 2007 +0200
71772     Remove double quotation marks around MAC address for STK1002
71774     Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
71775     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
71777 commit ff13ac8c7bbebb238e339592de765c546dba1073
71778 Author: Wolfgang Denk <wd@denx.de>
71779 Date:   Thu Aug 30 14:42:15 2007 +0200
71781     Backout commit 8f1bc284 as it causes TFTP to fail.
71783     Signed-off-by: Wolfgang Denk <wd@denx.de>
71785 commit 1900fbf255acba8b94fb442a16408ea85a1d46a6
71786 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
71787 Date:   Thu Aug 30 02:26:17 2007 -0500
71789     Revert "Fix MPC8544DS PCIe3 scsi."
71791     This reverts commit 9468e680.
71792     Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient.
71794     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
71796 commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774
71797 Author: Grant Likely <grant.likely@secretlab.ca>
71798 Date:   Wed Aug 29 18:26:24 2007 -0600
71800     tftp: don't implicity trust the format of recevied packets
71802     The TFTP OACK code trusts that the incoming packet is formated as
71803     ASCII text and can be processed by string functions. It also has a
71804     loop limit overflow bug where if the packet length is less than 8, it
71805     ends up looping over *all* of memory to find the 'blksize' string.
71807     This patch solves the problem by forcing the packet to be null
71808     terminated and using strstr() to search for the sub string.
71810     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71812 commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143
71813 Author: Stefan Roese <sr@denx.de>
71814 Date:   Wed Aug 29 16:31:18 2007 +0200
71816     ppc4xx: Change lwmon5 default environment to support Linux RTC
71818     The Linux PCF8563 RTC driver doesn't do autoprobing, so we need
71819     to supply the RTC I2C address as bootline parameter. This patch
71820     adds support for this rtc probing parameter to the bootargs:
71822     "rtc-pcf8563.probe=0,0x51"
71824     Signed-off-by: Stefan Roese <sr@denx.de>
71826 commit 2602a5c40ae37ab965a4e240854fdaffb51328a4
71827 Author: Kim Phillips <kim.phillips@freescale.com>
71828 Date:   Wed Aug 29 09:06:05 2007 -0500
71830     sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
71832     this had slipped through the cracks, since the sbc board was added
71833     after I wrote the original patch to remove all these symbols, and
71834     before it was merged.
71836     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71838 commit c5bded3c88e48ae648a75d357dc81a8255fa81f1
71839 Author: Wolfgang Denk <wd@denx.de>
71840 Date:   Wed Aug 29 14:05:30 2007 +0200
71842     Add mii_init() prototype
71844     to get rid of a *lot* of compiler warnings.
71846     Signed-off-by: Wolfgang Denk <wd@denx.de>
71848 commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f
71849 Author: Wolfgang Denk <wd@denx.de>
71850 Date:   Wed Aug 29 13:35:03 2007 +0200
71852     Disable network support on cmi_mpc5xx board
71854     ..because it caused compiler errors and there seems to be no
71855     board maintainer to take care of this.
71857     Signed-off-by: Wolfgang Denk <wd@denx.de>
71859 commit 9468e6804b7e25b0f6f52e53f47bce3175400a16
71860 Author: Kumar Gala <galak@kernel.crashing.org>
71861 Date:   Mon Aug 20 09:44:00 2007 -0500
71863     Fix MPC8544DS PCIe3 scsi.
71865     <ed.swarthout@freescale.com>
71867     The problem is pciauto_setup_device() getting called from fsl_pci_init.c
71868     is allocating memory space it doesn't need.
71870     Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
71871     Signed-off-by: Andy Fleming <afleming@freescale.com>
71873 commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a
71874 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
71875 Date:   Tue Aug 21 09:38:59 2007 -0500
71877     8548cds fixes
71879     Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
71880     correct consoledev needed for linux boot.
71881     Standardize on fdt{file,addr} var to hold dtb file name.
71883     Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
71885     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
71887 commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933
71888 Author: Haiying Wang <Haiying.Wang@freescale.com>
71889 Date:   Thu Aug 23 15:20:54 2007 -0400
71891     Enable L2 cache for MPC8568MDS board
71893     The L2 cache size is 512KB for 8568, print out the correct informaiton.
71895     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
71897 commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b
71898 Author: Jason Jin <Jason.jin@freescale.com>
71899 Date:   Wed Aug 22 17:54:49 2007 +0800
71901     Remove the bios emulator binary files from MAI board
71903     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
71905 commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f
71906 Author: Kim Phillips <kim.phillips@freescale.com>
71907 Date:   Tue Aug 21 17:00:17 2007 -0500
71909     support board vendor-common makefiles
71911     if a board/$(VENDOR)/common/Makefile exists, build it.
71913     also add the first such case, board/freescale/common/Makefile, to
71914     handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
71915     dictated by board configuration.
71917     thusly get rid of alternate build dir errors such as:
71919     FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
71921     by putting the common/ mkdir command in its proper place (the common
71922     Makefile). Common bits from existing individual board Makefiles have
71923     been removed.
71925     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71927 commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd
71928 Author: stefano babic <sbabic@denx.de>
71929 Date:   Tue Aug 21 15:52:33 2007 +0200
71931     Fix: TFTP is not working on little endian systems
71933     TFTP does not work anymore after multicast tftp
71934     patch was applied on little endian systems.
71935     This patch fix it.
71937     Signed-off-by: Stefano Babic <sbabic@denx.de>
71939 commit 5f470948570526e9186f053a3003da7719604e90
71940 Author: stefano babic <sbabic@denx.de>
71941 Date:   Tue Aug 21 15:50:33 2007 +0200
71943     Fix MAC address setting in DM9000 driver.
71945     The logic to check if there is a correct MAC address in the DM9000
71946     EEPROM, added in the last patch, is wrong. Now the MAC address is
71947     always taken from the environment, even if a suitable MAC is present
71948     in the EEPROM.
71950     Signed-off-by: Stefano Babic <sbabic@denx.de>
71952 commit 4a8527ef086ec7c89f40674ef024ae6f988a614a
71953 Author: Martin Krause <martin.krause@tqs.de>
71954 Date:   Tue Aug 21 12:40:34 2007 +0200
71956     MPC5xxx: fix some compiler warnings in USB code
71958     Fix the following warnings:
71959     - usb.c:xx: warning: function declaration isn't a prototype
71960     - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
71961       from pointer wihtout a cast
71963     Signed-off-by: Martin Krause <martin.krase@tqs.de>
71965 commit 16e23c3f5dab6937f5109365416808c7f15c122b
71966 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
71967 Date:   Mon Aug 20 23:55:33 2007 -0500
71969     fsl_pci_init - Remove self PCSRBAR allocation
71971     CPU physical address space was being wasted by allocating a
71972     PCSRBAR PCI inbound region to it's memory space.
71974     As a rule, PCSRBAR should be left alone since it does not affect
71975     transactions from self and other masters may have changed it.
71977     Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
71979 commit 0e700ce03a23bb1921149bc77008ace7103d5289
71980 Author: Martin Krause <martin.krause@tqs.de>
71981 Date:   Mon Aug 20 13:56:47 2007 +0200
71983     Fix compiler warning in include/s3c2410.h
71985     This patch fixes the "type qualifiers ignored on fuction return tpye"
71986     warning for include/s3c2410.h
71988     Signed-off-by: Martin Krause <martin.krause@tqs.de>
71990 commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea
71991 Author: Dirk Behme <dirk.behme@googlemail.com>
71992 Date:   Mon Aug 20 07:09:05 2007 +0200
71994     Fix compilation error for omap2420h4_config.
71996     omap2420h4 switched to cfi, so remove old (already disabled) flash.c
71997     and flash_probe() calls in env_flash.c.
71999     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
72001 commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f
72002 Author: Kim Phillips <kim.phillips@freescale.com>
72003 Date:   Fri Aug 10 14:34:14 2007 -0500
72005     fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
72007     and make some minor corrections to the FDT part of the README.
72009     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72011 commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de
72012 Author: Wolfgang Denk <wd@denx.de>
72013 Date:   Wed Aug 29 01:32:05 2007 +0200
72015     Minor coding style cleanup.
72017     Signed-off-by: Wolfgang Denk <wd@denx.de>
72019 commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3
72020 Author: Heiko Schocher <hs@pollux.denx.de>
72021 Date:   Tue Aug 28 17:40:33 2007 +0200
72023     [UC101] Fix: if no CF in the board, U-Boot resets sometimes.
72025     Signed-off-by: Heiko Schocher <hs@denx.de>
72027 commit f98984cb194bb34dbe1db9429d3b51133af30d07
72028 Author: Heiko Schocher <hs@pollux.denx.de>
72029 Date:   Tue Aug 28 17:39:14 2007 +0200
72031     IDE:        - make ide_inb () and ide_outb () "weak", so boards can
72032               define there own I/O functions.
72033               (Needed for the pcs440ep board).
72034             - The default I/O Functions are again 8 Bit accesses.
72035             - Added CONFIG_CMD_IDE for the pcs440ep Board.
72037     Signed-off-by: Heiko Schocher <hs@denx.de>
72039 commit 2c05fd125744981e5f2828d24e66ccc20a77d25d
72040 Author: Semih Hazar <semih.hazar@indefia.com>
72041 Date:   Mon Aug 20 19:00:01 2007 +0300
72043     AVR32: Change prototype of memset
72045     Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
72046     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72048 commit 9c02defc29b57945b600714cf61ddfd02b02fb14
72049 Author: Yuri Tikhonov <yur@emcraft.com>
72050 Date:   Sat Aug 25 05:07:16 2007 +0200
72052     POST: limit memory test area to not touch global data anymore
72054     As experienced on lwmon5, on some boards the POST memory test can
72055     corrupt the global data buffer (bd). This patch fixes this issue
72056     by checking and limiting this area.
72058     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
72059     Signed-off-by: Stefan Roese <sr@denx.de>
72061 commit 75e1a84d483e36be10e206e539b028c4889e1158
72062 Author: Stefan Roese <sr@denx.de>
72063 Date:   Fri Aug 24 15:41:42 2007 +0200
72065     ppc4xx: Add RTC POST test to lwmon5 board configuration
72067     Since this RTC POST test is taking quite a while to complete
72068     it's only initiated upon special keypress same as the complete
72069     memory POST.
72071     Signed-off-by: Stefan Roese <sr@denx.de>
72073 commit d7bfa620037a6d2210159387571bdf93aa32c162
72074 Author: Stefan Roese <sr@denx.de>
72075 Date:   Fri Aug 24 15:19:10 2007 +0200
72077     ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
72079     Signed-off-by: Stefan Roese <sr@denx.de>
72081 commit c25dd8fc25e9ca3695db996a257d9ba4dab414db
72082 Author: Stefan Roese <sr@denx.de>
72083 Date:   Thu Aug 23 11:02:37 2007 +0200
72085     ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
72087     This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
72088     board. Now the "eeprom" command can be used to read/write from/to this
72089     device. Additionally a new command was added "eepromwp" to en-/disable
72090     the write-protect of this 2nd EEPROM.
72092     The 1st EEPROM is not affected by this write-protect command.
72094     Signed-off-by: Stefan Roese <sr@denx.de>
72096 commit c64fb30e4c5976007d56fc1789c7a0666082b536
72097 Author: Stefan Roese <sr@denx.de>
72098 Date:   Wed Aug 22 08:56:09 2007 +0200
72100     ppc4xx: Remove unused option CFG_INIT_RAM_OCM
72102     Signed-off-by: Stefan Roese <sr@denx.de>
72104 commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7
72105 Author: Stefan Roese <sr@denx.de>
72106 Date:   Tue Aug 21 16:27:57 2007 +0200
72108     ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
72110     This patch adds support for the matrix keyboard on the lwmon5 board.
72111     Since the implementation in the dsPCI is kind of compatible with the
72112     "old" lwmon board, most of the code is copied from the lwmon
72113     board directory.
72115     Signed-off-by: Stefan Roese <sr@denx.de>
72117 commit 3e66c078003607a7d1d214c15a5f262bc1b4032f
72118 Author: Wolfgang Denk <wd@denx.de>
72119 Date:   Sun Aug 19 10:27:34 2007 +0200
72121     Fix some build errors.
72123     Signed-off-by: Wolfgang Denk <wd@denx.de>
72125 commit 05675735ef77dc23b5e0eb782bad1ff477b55e86
72126 Author: Wolfgang Denk <wd@denx.de>
72127 Date:   Sat Aug 18 22:00:38 2007 +0200
72129     Update CHANGELOG.
72131 commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57
72132 Author: Kim Phillips <kim.phillips@freescale.com>
72133 Date:   Thu Aug 16 22:52:39 2007 -0500
72135     lib_ppc: make board_add_ram_info weak
72137     platforms wishing to display RAM diagnostics in addition to size,
72138     can do so, on one line, in their own board_add_ram_info()
72139     implementation.
72141     this consequently eliminates CONFIG_ADD_RAM_INFO.
72143     Thanks to Stefan for the hint.
72145     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72147 commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6
72148 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
72149 Date:   Fri Aug 17 12:43:44 2007 +0900
72151     PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
72153     This patch has been sent on:
72154     - 6 Jun 2007
72156     Many users of PCI config read routines tend to ignore the function
72157     ret value, and are only concerned about the contents of *val. Based
72158     on this, pci_hose_read_config_{byte,word}_via_dword should initialize
72159     the *val on dword read error.
72161     Without this fix, for example, we'll go on scanning bus with vendor or
72162     header_type uninitialized. This brings many unnecessary config trials.
72164     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
72166 commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367
72167 Author: Stefan Roese <sr@denx.de>
72168 Date:   Sat Aug 18 14:37:52 2007 +0200
72170     ColdFire: Fix some remaining problems with CFG_CMD_
72172     Signed-off-by: Stefan Roese <sr@denx.de>
72174 commit 8280f6a1c43247616b68224675188e5ccd124650
72175 Author: Stefan Roese <sr@denx.de>
72176 Date:   Sat Aug 18 14:33:02 2007 +0200
72178     Coding style cleanup
72180     Signed-off-by: Stefan Roese <sr@denx.de>
72182 commit 4a442d3186b31893b4f77c6e82f63c4517a5224b
72183 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72184 Date:   Thu Aug 16 19:23:50 2007 -0500
72186     ColdFire: Add M5235EVB Platform for MCF523x
72188     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72190 commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa
72191 Author: Kim Phillips <kim.phillips@freescale.com>
72192 Date:   Fri Aug 17 09:30:00 2007 -0500
72194     mpc83xx: fix typo in DDR2 programming
72196     introduced in the implement board_add_ram_info patch as I was cleaning out the
72197     magic numbers.  sorry.
72199     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72201 commit e58fe95784d2514fc9c21028dc59f2b319a35d80
72202 Author: Kim Phillips <kim.phillips@freescale.com>
72203 Date:   Thu Aug 16 22:53:09 2007 -0500
72205     mpc83xx: move freescale boards to boards/freescale
72207     includes build fixes.
72209     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72211 commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47
72212 Author: Kim Phillips <kim.phillips@freescale.com>
72213 Date:   Thu Aug 16 22:52:59 2007 -0500
72215     mpc83xx: suppress unused variable 'val8' warning
72217     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72219 commit bbea46f76f767b919070b4829bf34c86bd223248
72220 Author: Kim Phillips <kim.phillips@freescale.com>
72221 Date:   Thu Aug 16 22:52:48 2007 -0500
72223     mpc83xx: implement board_add_ram_info
72225     add board_add_ram_info, to make memory diagnostic output more
72226     consistent. u-boot banner output now looks like:
72228     DRAM:  256 MB (DDR1, 64-bit, ECC on)
72230     and for boards with SDRAM on the local bus, a line such as this is
72231     added:
72233     SDRAM: 64 MB (local bus)
72235     also replaced some magic numbers with their equivalent define names.
72237     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72239 commit 14778585d1389d86d5846efec29e5fce892680ce
72240 Author: Tony Li <tony.li@freescale.com>
72241 Date:   Fri Aug 17 10:35:59 2007 +0800
72243     mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
72245     The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
72246     And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
72248     Signed-off-by Tony Li <tony.li@freescale.com>
72250 commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7
72251 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72252 Date:   Thu Aug 16 15:05:11 2007 -0500
72254     ColdFire: Add M54455EVB for MCF5445x
72256     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72258 commit a1436a842654a8d3927d082a8ae9ee0a10da62d7
72259 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72260 Date:   Thu Aug 16 13:20:50 2007 -0500
72262     ColdFire: Add M5253EVBE platform for MCF52x2
72264     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72266 commit a605aacd8324094199402816cc6d9124aba57b8d
72267 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72268 Date:   Thu Aug 16 05:04:31 2007 -0500
72270     ColdFire: Add M5249EVB platform for MCF52x2
72272     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72274 commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e
72275 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72276 Date:   Wed Aug 15 20:32:06 2007 -0500
72278     ColdFire: Update Freescale MCF52x2 platforms
72280     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72282 commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c
72283 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72284 Date:   Wed Aug 15 19:55:10 2007 -0500
72286     ColdFire: Update EB+MCF-EV123 platform
72288     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72290 commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b
72291 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72292 Date:   Wed Aug 15 19:46:38 2007 -0500
72294     ColdFire: update TASREG platform for MCF52x2
72296     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72298 commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2
72299 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72300 Date:   Wed Aug 15 19:45:51 2007 -0500
72302     ColdFire: update r5200 platform for MCF52x2
72304     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72306 commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c
72307 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72308 Date:   Wed Aug 15 19:43:20 2007 -0500
72310     ColdFire: idmr platform MCF52x2 update
72312     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72314 commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0
72315 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72316 Date:   Wed Aug 15 19:41:06 2007 -0500
72318     ColdFire: cobra5272 platform for MCF52x2 update
72320     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72322 commit 56115665b4a64c10c01440c57749b265e0908fa4
72323 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72324 Date:   Wed Aug 15 19:38:15 2007 -0500
72326     ColdFire: MCF52x2 Header files update
72328     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72330 commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d
72331 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72332 Date:   Wed Aug 15 19:21:21 2007 -0500
72334     ColdFire: MCF52x2 update
72336     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72338 commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf
72339 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72340 Date:   Wed Aug 15 18:46:11 2007 -0500
72342     ColdFire: MCF5329 update cache
72344     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72346 commit 7171977fb8fd77cfb6676953fa9a05789c450513
72347 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72348 Date:   Wed Aug 15 15:40:20 2007 -0500
72350     ColdFire: MCF5329 header file clean up
72352     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72354 commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723
72355 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72356 Date:   Wed Aug 15 15:39:17 2007 -0500
72358     ColdFire: MCF5329 Update and cleanup
72360     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
72362 commit 10327dc5541f947c0cf7e31fef86c4706169607a
72363 Author: Andy Fleming <afleming@freescale.com>
72364 Date:   Thu Aug 16 16:35:02 2007 -0500
72366     Add CONFIG_HAS_ETH0 to all boards with TSEC
72368     The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether
72369     to update TSEC1's device-tree node, so we need to add it
72370     to all the boards with TSECs.  Do this for 83xx and 86xx, too,
72371     since they will eventually do something similar.
72373     Signed-off-by: Andy Fleming <afleming@freescale.com>
72375 commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666
72376 Author: Kumar Gala <galak@kernel.crashing.org>
72377 Date:   Thu Aug 16 15:05:04 2007 -0500
72379     Update MPC8544 DS PCI memory map
72381     The PCIe bus that the ULI M1575 is connected to has no possible way of
72382     needing more than the fixed amount of IO & Memory space needed by the ULI.
72384     So make it use far less IO & memory space and have it use the shared LAW.  This
72385     free's up a LAW for PCIe1 IO space.  Also reduce the amount of IO space needed
72386     by each bus.
72388     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
72390 commit ea5877e31ed63ade948fd1293895ec23fe01472e
72391 Author: Kumar Gala <galak@kernel.crashing.org>
72392 Date:   Thu Aug 16 11:01:21 2007 -0500
72394     Fix up some fdt issues on 8544DS
72396     It looks like we had a merge issue that duplicated a bit of code
72397     in ft_board_setup.  Also, we need to set CONFIG_HAS_ETH0 to get
72398     the MAC address properly set in the device tree on boot for TSEC1
72400     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
72402 commit 07bc20560cb9d3d186cca268c05c82762e8c55ad
72403 Author: Niklaus Giger <niklaus.giger@netstal.com>
72404 Date:   Thu Aug 16 15:16:03 2007 +0200
72406     PPC4xx:HCU4/5 cleanup
72408     Minor cleanups to confirm to the u-boot coding style.
72409     Some german expressions -> english.
72410     HCU5 enforces a unique IP adress for a given slot in the rack.
72412     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
72414 commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb
72415 Author: Niklaus Giger <niklaus.giger@netstal.com>
72416 Date:   Thu Aug 16 15:16:02 2007 +0200
72418     PPC4xx:HCU4/5 cleanup ecc/sdram init
72420     Make ecc initialisation robust, as DDR2-ECC errors may be generated
72421     while zeroing the RAM.
72423     Return 16 bytes (a cacheline) less than the available memory, as the
72424     board and/or PPC440EPx might have problems accessing the last bytes.
72426     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
72428 commit d35b508a55508535b6e8445b718585d27df733d3
72429 Author: Kim Phillips <kim.phillips@freescale.com>
72430 Date:   Wed Aug 15 22:29:56 2007 -0500
72432     fdt: suppress unused variable 'bd' warning
72434     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72436 commit 82bd9ee77490588d4da785d75829ca63d0176baf
72437 Author: Andy Fleming <afleming@freescale.com>
72438 Date:   Wed Aug 15 20:06:50 2007 -0500
72440     Fix warnings from of_data copy fix
72442     Forgot to cast of_flat_tree to ulong.
72444     Signed-off-by: Andy Fleming <afleming@freescale.com>
72446 commit 7613afda77d5eec0f47d303025b0c661b70e4c73
72447 Author: Andy Fleming <afleming@freescale.com>
72448 Date:   Wed Aug 15 20:03:44 2007 -0500
72450     Don't wait for disconnected TSECs
72452     The TSEC driver's PHY code waits a long time for autonegotiation to
72453     complete, even if the link is down.  The PHY knows the link is
72454     down or up before autonegotiation completes, so we can short-circuit
72455     the process if the link is down.
72457     Signed-off-by: Andy Fleming <afleming@freescale.com>
72459 commit b96c83d4ae475a70ef2635cd0e748174c44c8601
72460 Author: Andy Fleming <afleming@freescale.com>
72461 Date:   Wed Aug 15 20:03:34 2007 -0500
72463     Fix numerous bugs in the 8568 UEC support
72465     Actually, fixed a large bug in the UEC for *all* platforms.
72466     How did this ever work?
72468     uec_init() did not follow the spec for eth_init(), and returned
72469     0 on success.  Switch it to return the link like tsec_init()
72470     (and 0 on error)
72472     The immap for the 8568 was defined based on MPC8568, rather than
72473     CONFIG_MPC8568
72475     CONFIG_QE was off
72477     CONFIG_ETHPRIME was set to "Freescale GETH".  Now is "FSL UEC0"
72479     Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is
72480     enabled
72482     Signed-off-by: Andy Fleming <afleming@freescale.com>
72484 commit 3a79013e2adda53332dfd0b511066a805e929a9d
72485 Author: Andy Fleming <afleming@freescale.com>
72486 Date:   Wed Aug 15 20:03:25 2007 -0500
72488     Define tsec flag values in config files
72490     The tsec_info structure and array has a "flags" field for each
72491     ethernet controller.  This field is the only reason there are
72492     settings.  Switch to defining TSECn_FLAGS for each controller
72493     in the config header, and we can greatly simplify the array, and
72494     also simplify the addition of future boards.
72496     Signed-off-by: Andy Fleming <afleming@freescale.com>
72498 commit ec7238229507e7f47533a611ea8c53319d234cf3
72499 Author: Andy Fleming <afleming@freescale.com>
72500 Date:   Wed Aug 15 20:03:13 2007 -0500
72502     Add support for building all boards with a TSEC
72504     Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
72505     Now we can do a MAKEALL test on all of them!
72507     Signed-off-by: Andy Fleming <afleming@freescale.com>
72509 commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8
72510 Author: Andy Fleming <afleming@freescale.com>
72511 Date:   Wed Aug 15 17:30:56 2007 -0500
72513     Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards
72515     The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed"
72516     neglected to *also* put the code inside the similar #ifdef
72517     for CONFIG_OF_FLAT_TREE.
72519     Signed-off-by: Andy Fleming <afleming@freescale.com>
72521 commit 78f9fef7f406078c8bf7191e665a73f795157746
72522 Author: Scott Wood <scottwood@freescale.com>
72523 Date:   Wed Aug 15 15:46:46 2007 -0500
72525     mpc885ads: Don't define CONFIG_BZIP2.
72527     bzip2 requires a significant chunk of malloc space, and there isn't
72528     enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area
72529     and a downloaded image at 0x400000.
72531     Signed-off-by: Scott Wood <scottwood@freescale.com>
72533 commit 002275a3ed8b114885f6702d6d544d0780dfe689
72534 Author: Michal Simek <Monstr@seznam.cz>
72535 Date:   Thu Aug 16 08:54:10 2007 +0200
72537     Bios emulator - fix microblaze toolchain problem
72539     microblaze CPU have problem with bios_emulator code.
72540     Microblaze toolchain doesn't support PRAGMA PACK.
72542     Signed-off-by: Michal Simek <monstr@monstr.eu>
72544 commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b
72545 Author: Wolfgang Denk <wd@denx.de>
72546 Date:   Thu Aug 16 11:51:04 2007 +0200
72548     Minor Coding Style fix; Update CHANGELOG file.
72550     Signed-off-by: Wolfgang Denk <wd@denx.de>
72552 commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991
72553 Author: Stefan Roese <sr@denx.de>
72554 Date:   Thu Aug 16 11:21:49 2007 +0200
72556     ppc4xx: Remove #warning in esd auto_update.c
72558     Signed-off-by: Stefan Roese <sr@denx.de>
72560 commit 2d78074d2e806edc380c1464eb9e5df335ece65e
72561 Author: Stefan Roese <sr@denx.de>
72562 Date:   Fri Jun 22 17:32:28 2007 +0200
72564     ppc7xx: Update CPCI750 board
72566     This small CPCI750 update extends the board specific command
72567     "show_config" to display the Marvell strapping registers and
72568     extends the PCI IDE controller.
72570     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
72571     Signed-off-by: Stefan Roese <sr@denx.de>
72573 commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e
72574 Author: Michal Simek <monstr@monstr.eu>
72575 Date:   Thu Aug 16 10:46:28 2007 +0200
72577     [FIX] Changes for bios_emulator code for others architecture
72579 commit 6e0e2253f039344f8ebd2787285fdba90e6714e8
72580 Author: Michal Simek <monstr@monstr.eu>
72581 Date:   Thu Aug 16 10:45:09 2007 +0200
72583     [FIX] Remove unused include file
72585 commit 9de469bd960cc1870bb40d6672ed42726b8b50d7
72586 Author: Stefan Roese <sr@denx.de>
72587 Date:   Thu Aug 16 10:18:33 2007 +0200
72589     ppc4xx: Only enable POST FPU test on Sequoia and not Rainier
72591     Signed-off-by: Stefan Roese <sr@denx.de>
72593 commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c
72594 Author: Stefan Roese <sr@denx.de>
72595 Date:   Thu Aug 16 09:54:51 2007 +0200
72597     Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files
72599     Signed-off-by: Stefan Roese <sr@denx.de>
72601 commit 02ba7022f62bb75908296c58c63866e1d294b69a
72602 Author: Stefan Roese <sr@denx.de>
72603 Date:   Thu Aug 16 09:52:29 2007 +0200
72605     ppc4xx: Update Sequoia/Rainier bootstrap command
72607     As suggested by David Mitchell, here an update for the Sequoia/Rainier
72608     bootstrap command.
72610     Signed-off-by: Stefan Roese <sr@denx.de>
72612 commit 35cc4e4823668e8745854899cfaedd4489beb0ef
72613 Author: Kim Phillips <kim.phillips@freescale.com>
72614 Date:   Wed Aug 15 22:30:39 2007 -0500
72616     mpc83xx: enable libfdt by default on freescale boards
72618     this enables libfdt code by default for the
72619     freescale mpc8313erdb, mpc832xemds, mpc8349emds,
72620     mpc8349itx and gp boards.
72622     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72624 commit 3fde9e8b22cfbd7af489214758f9839a206576cb
72625 Author: Kim Phillips <kim.phillips@freescale.com>
72626 Date:   Wed Aug 15 22:30:33 2007 -0500
72628     mpc83xx: migrate remaining freescale boards to libfdt
72630     this adds libfdt support code for the freescale
72631     mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx,
72632     and gp boards.
72634     Boards remain compatible with OF_FLAT_TREE.
72636     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72638 commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1
72639 Author: Kim Phillips <kim.phillips@freescale.com>
72640 Date:   Wed Aug 15 22:30:26 2007 -0500
72642     mpc83xx: move common /memory node update mechanism to cpu.c
72644     also adds common prototypes to include/common.h.
72646     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72648 commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85
72649 Author: Kim Phillips <kim.phillips@freescale.com>
72650 Date:   Wed Aug 15 22:30:19 2007 -0500
72652     mpc83xx: remaining 8360 libfdt fixes
72654     PCI clocks and QE frequencies weren't being updated, and the core clock
72655     was being updated incorrectly.  This patch also adds a /memory node if
72656     it doesn't already exist prior to update.
72658     plus some cosmetic trimming to single line comments.
72660     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72662 commit f4b2ac5ed9aaff9920d487bff8a59696c083a524
72663 Author: Kim Phillips <kim.phillips@freescale.com>
72664 Date:   Wed Aug 15 22:30:12 2007 -0500
72666     mpc83xx: fix UEC2->1 typo in libfdt setup code
72668     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72670 commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3
72671 Author: Kim Phillips <kim.phillips@freescale.com>
72672 Date:   Wed Aug 15 22:30:05 2007 -0500
72674     mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
72676     and reorder the existing 83xx maintainers alpha.
72678     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72680 commit 5b4de9309d7a03aa1db2e5391ab696363391f460
72681 Author: Michal Simek <monstr@monstr.eu>
72682 Date:   Wed Aug 15 21:15:05 2007 +0200
72684     [FIX] Resolve problem with warnings
72685     microblaze toolchain don't support PRAGMA PACK.
72687 commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4
72688 Author: Michal Simek <monstr@monstr.eu>
72689 Date:   Wed Aug 15 21:05:07 2007 +0200
72691     [FIX] Correction command setting for Microblaze boards
72693 commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5
72694 Author: Michal Simek <monstr@monstr.eu>
72695 Date:   Wed Aug 15 21:03:41 2007 +0200
72697     [FIX] Correction command definition
72699 commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8
72700 Author: Jon Loeliger <jdl@freescale.com>
72701 Date:   Wed Aug 15 11:55:35 2007 -0500
72703     86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
72705     Remove a leftover in net/tftp.c while we're at it.
72707     Signed-off-by: Jon Loeliger <jdl@freescale.com>
72709 commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44
72710 Author: Jon Loeliger <jdl@freescale.com>
72711 Date:   Wed Aug 15 12:20:40 2007 -0500
72713     Move the MPC8641HPCN board under board/freescale.
72715     Minor path corrections needed to ensure buildability.
72717     Signed-off-by: Jon Loeliger <jdl@freescale.com>
72719 commit 8662577fe36fdb6a44b55b998d9daac6392a736a
72720 Author: Jon Loeliger <jdl@freescale.com>
72721 Date:   Wed Aug 15 11:46:22 2007 -0500
72723     86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
72725     Remove a leftover in net/tftp.c while we're at it.
72727     Signed-off-by: Jon Loeliger <jdl@freescale.com>
72729 commit 210f463c71917b7a4495c2103c228b9c179ae64d
72730 Author: Jerry Van Baren <gvb.uboot@gmail.com>
72731 Date:   Wed Aug 15 11:13:15 2007 -0400
72733     Fix where the #ifdef CFG_BOOTMAPSZ is placed.
72735     Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb
72736     interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT)
72737     when it should have gone inside of the conditional.  As a result, it
72738     broke non-LIBFDT board builds.
72740     Also added a missing "not." to the comment.
72742     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
72744 commit 0e19209767194a97cec6d93dba9e64d1da8d548e
72745 Author: Niklaus Giger <niklaus.giger@netstal.com>
72746 Date:   Wed Aug 15 12:14:23 2007 +0200
72748     PPC4xx:HCU4/5-Board fix compile warning
72750     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
72752 commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7
72753 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
72754 Date:   Tue Aug 14 14:06:45 2007 -0500
72756     Fix malloc size error in ahci_init_one.
72758     Typically this causes scsi init to corrupt the
72759     devlist and break the coninfo command.
72760     Fix a compiler size warning.
72762     Signed-off-by: Jason Jin <jason.jin@freescale.com>
72763     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72764     Acked-by: Andy Fleming <afleming@freescale.com>
72766 commit b361acd64fd2525c081b9b288b0804efe209c0e9
72767 Author: ksi@koi8.net <ksi@koi8.net>
72768 Date:   Tue Aug 14 10:02:16 2007 -0700
72770     TI DaVinci - fix unsupported %hhx format
72772     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
72774 commit f01dbb5424a81453c81190dd30e945891466f621
72775 Author: Wolfgang Denk <wd@denx.de>
72776 Date:   Tue Aug 14 18:42:36 2007 +0200
72778     Coding style cleanup. Update CHANGELOG.
72780     Signed-off-by: Wolfgang Denk <wd@denx.de>
72782 commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924
72783 Author: Andy Fleming <afleming@freescale.com>
72784 Date:   Tue Aug 14 10:32:59 2007 -0500
72786     Fix initrd/dtb interaction
72788     The original code would wrongly relocate the blob to be right before
72789     the initrd if it existed.  The blob *must* be within CFG_BOOTMAPSZ,
72790     if it is defined.  So we make two changes:
72792     1) flag the blob for relocation whenever its address is above BOOTMAPSZ
72794     2) If the blob is being relocated, relocate it before kbd, not initrd
72796     Signed-off-by: Andy Fleming <afleming@freescale.com>
72798 commit e54b970173769307a116bd34028b6d0c2eea2a4e
72799 Author: Peter Pearse <peter.pearse@arm.com>
72800 Date:   Tue Aug 14 15:40:00 2007 +0100
72802     Supply spi interface in at45.c
72804 commit 4ce846ec59f36b85d6644a769690ad3feb667575
72805 Author: Stefan Roese <sr@denx.de>
72806 Date:   Tue Aug 14 15:12:01 2007 +0200
72808     POST: Fix merge problem
72810     Signed-off-by: Stefan Roese <sr@denx.de>
72812 commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c
72813 Author: Stefan Roese <sr@denx.de>
72814 Date:   Tue Aug 14 15:03:17 2007 +0200
72816     Coding style cleanup
72818     Signed-off-by: Stefan Roese <sr@denx.de>
72820 commit 779e975117a75e91fcebe226a63104dbfb924ab1
72821 Author: Stefan Roese <sr@denx.de>
72822 Date:   Tue Aug 14 14:44:41 2007 +0200
72824     ppc4xx: Add initial Zeus (PPC405EP) board support
72826     Signed-off-by: Stefan Roese <sr@denx.de>
72828 commit c5a172a5fd636c12467429e3f7910e53773979c6
72829 Author: Stefan Roese <sr@denx.de>
72830 Date:   Tue Aug 14 14:41:55 2007 +0200
72832     POST: Add option for external ethernet loopback test
72834     When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST
72835     is not done using an internal loopback connection, but by assuming
72836     that an external loopback connector is plugged into the board.
72838     Signed-off-by: Stefan Roese <sr@denx.de>
72840 commit eb2b4010ae426245172988804ee8d9193fb41038
72841 Author: Stefan Roese <sr@denx.de>
72842 Date:   Tue Aug 14 14:39:44 2007 +0200
72844     POST: Add ppc405 support to cache and UART POST
72846     Signed-off-by: Stefan Roese <sr@denx.de>
72848 commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c
72849 Author: Peter Pearse <peter.pearse@arm.com>
72850 Date:   Tue Aug 14 10:46:32 2007 +0100
72852     Replace lost end of at45.c.
72854 commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2
72855 Author: Peter Pearse <peter.pearse@arm.com>
72856 Date:   Tue Aug 14 10:30:06 2007 +0100
72858     Update Makefiles for merged and split at45.c.
72860 commit 3454cece2db57cb9eb7087995f7e73066a163f71
72861 Author: Peter Pearse <peter.pearse@arm.com>
72862 Date:   Tue Aug 14 10:21:06 2007 +0100
72864     Delete the merged files.
72866 commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225
72867 Author: Peter Pearse <peter.pearse@arm.com>
72868 Date:   Tue Aug 14 10:14:05 2007 +0100
72870     Add the files.
72872 commit d4fc6012fd0a5c211b825691f44b06f8032c0551
72873 Author: Peter Pearse <peter.pearse@arm.com>
72874 Date:   Tue Aug 14 10:10:52 2007 +0100
72876     Add MACH_TYPE records for several AT91 boards.
72877     Merge to two at45.c files into a common file, split to at45.c and spi.c
72878     Fix spelling error in DM9161 PHY Support.
72879     Initialize at91rm9200 board (and set LED).
72880     Add PIO control for at91rm9200dk LEDs and Mux.
72881     Change dataflash partition boundaries to be compatible with Linux 2.6.
72883     Signed-off-by:      Peter Pearse <peter.pearse@arm.com>
72884     Signed-off-by:      Ulf Samuelsson <ulf@atmel.com>
72886 commit 4ef35e53c693556c54b0c22d6f873de87bade253
72887 Author: Wolfgang Denk <wd@denx.de>
72888 Date:   Tue Aug 14 09:54:46 2007 +0200
72890     Coding style cleanup, update CHANGELOG
72892     Signed-off-by: Wolfgang Denk <wd@denx.de>
72894 commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7
72895 Author: Wolfgang Denk <wd@denx.de>
72896 Date:   Tue Aug 14 09:47:27 2007 +0200
72898     Coding style cleanup; rebuild CHANGELOG
72900 commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a
72901 Author: Randy Vinson <rvinson@linuxbox.(none)>
72902 Date:   Tue Feb 27 19:42:22 2007 -0700
72904     85xxCDS: Add make targets for legacy systems.
72906     The PCI ID select values on the Arcadia main board differ depending
72907     on the version of the hardware. The standard configuration supports
72908     Rev 3.1. The legacy target supports Rev 2.x.
72910     Signed-off-by Randy Vinson <rvinson@mvista.com>
72912 commit e41094c7e38177c755fbd9b182018069614f080d
72913 Author: Andy Fleming <afleming@freescale.com>
72914 Date:   Tue Aug 14 01:50:09 2007 -0500
72916     85xxCDS: Enable the VIA PCI-to-ISA bridge.
72918     Author: Randy Vinson <rvinson@linuxbox.(none)>
72920     Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
72921     Arcadia main board.
72923     Signed-off-by: Randy Vinson <rvinson@mvista.com>
72924     Signed-off-by: York Sun <yorksun@freescale.com>
72926 commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71
72927 Author: Andy Fleming <afleming@freescale.com>
72928 Date:   Tue Aug 14 00:14:25 2007 -0500
72930     Add support for UEC to 8568
72932     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
72933     Signed-off-by: Andy Fleming <afleming@freescale.com>
72935 commit c59e4091ffe0148398b9e9ff14a019ea038b7432
72936 Author: Haiying Wang <Haiying.Wang@freescale.com>
72937 Date:   Tue Jun 19 14:18:34 2007 -0400
72939     Add PCI support for MPC8568MDS board
72941     This patch is against u-boot-mpc85xx.git of www.denx.com
72943     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
72944     Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
72946 commit d111d6382c99fdea08c2312eeeae8786945e189a
72947 Author: Haiying Wang <Haiying.Wang@freescale.com>
72948 Date:   Tue Jun 19 14:18:32 2007 -0400
72950     Empirically set cpo and clk_adjust for mpc85xx DDR2 support
72952     This patch is against u-boot-mpc85xx.git of www.denx.com
72954     Setting cpo to 0x9 for frequencies higher than 333MHz is verified on
72955     both MPC8548CDS board and MPC8568MDS board, especially for supporting
72956     533MHz DDR2.
72958     Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for
72959     DDR2 on all current board versions especially ver 1.92 or later to bring
72960     up.
72962     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
72964 commit 3db0bef59eab1155801618cef5c481e97553b597
72965 Author: Kumar Gala <galak@kernel.crashing.org>
72966 Date:   Tue Aug 7 18:07:27 2007 -0500
72968     Use an absolute address when jumping out of 4k boot page
72970     On e500 when we leave the 4k boot page we should use an absolute address since
72971     we don't know where the board code may want us to be really running at.
72973     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
72975 commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a
72976 Author: Andy Fleming <afleming@freescale.com>
72977 Date:   Mon Aug 13 14:49:59 2007 -0500
72979     MPC85xx BA bits not set for 3-bit bank address DIMM
72981     The current implementation does not set the number of bank address bits
72982     (BA) in the processor. The default assumes 2 logical bank bits. This
72983     works fine for a DIMM that uses devices with 4 internal banks (SPD
72984     byte17 = 0x4) but needs to be set appropriately for a DIMM that uses
72985     devices with 8 internal banks (SPD byte17 = 0x8).
72987     Signed-off-by: Greg Davis <DavisG@embeddedplanet.com>
72989 commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1
72990 Author: Andy Fleming <afleming@freescale.com>
72991 Date:   Mon Aug 13 14:38:06 2007 -0500
72993     Fix minor 85xx warnings
72995     Some patches had inserted warnings into the build:
72996     * mpc8560ads declared data without using it
72997     * cpu_init declared ecm and immap without using it in all CONFIGs
72998     * MPC8548CDS.h had its default filenames changed so that they contained
72999       "\m" in the paths.  Made the defaults not Windows-specific (or
73000       anything-specific)
73002     Signed-off-by: Andy Fleming <afleming@freescale.com>
73004 commit f2cff6b104f82b993bef6086ce0c97159bbe1add
73005 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
73006 Date:   Fri Jul 27 01:50:52 2007 -0500
73008     8548cds PCIE support.
73010     Make the early L1 cache stack region guarded to prevent speculative
73011     fetches outside the locked range.
73013     Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions.
73014     init.S whitespace cleanup.
73016     Allow TEXT_BASE value to be specified on command line.  This allows it
73017     to be set to 0xfffc0000 which cuts the uboot binary in half.
73019     Clear and enable lbc and ecm errors.
73021     Update last_busno in device-tree for pci and pcie.
73023     Remove load of obsolete cpu/mpc85xx/pci.0
73025     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
73026     Acked-by: Andy Fleming <afleming@freescale.com>
73028 commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962
73029 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
73030 Date:   Fri Jul 27 01:50:51 2007 -0500
73032     8544ds PCIE support
73034     PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address.
73036     Enable LBC and ECM errors and clear error registers.
73038     Add tftpflash env var to get uboot from tftp server and flash it.
73040     Add pci/pcie convenience env vars to display register space:
73041       "run pcie3regs" to see all pcie3 ccsr registers
73042       "run pcie3cfg" to see all cfg registers
73043     Whitespace cleanup and MPC8544DS.h
73045     Enable CONFIG_INTERRUPTS.
73047     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
73048     Acked-by: Andy Fleming <afleming@freescale.com>
73050 commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85
73051 Author: Andy Fleming <afleming@freescale.com>
73052 Date:   Tue Aug 14 01:34:21 2007 -0500
73054     85xx start.S cleanup and exception support
73056     From: Ed Swarthout <Ed.Swarthout@freescale.com>
73058     Support external interrupts from platform to eliminate system hangs.
73059     Define CONFIG_INTERRUPTS board configure option to enable.
73060     Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC.
73062     Remove extra cpu initialization redundant with hardware initialization.
73063     Whitespace cleanup.
73065     Define and use _START_OFFSET consistent with other processors using
73066     ppc_asm.tmpl
73068     Move additional code from .text to boot page to make room for
73069     exception vectors at start of image.
73071     Handle Machine Check, External and Critical exceptions.
73073     Fix e500 machine check error determination in traps.c
73075     TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half.
73077     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
73078     Acked-by: Andy Fleming <afleming@freescale.com>
73080 commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47
73081 Author: Andy Fleming <afleming@freescale.com>
73082 Date:   Tue Aug 14 01:33:18 2007 -0500
73084     Add MPC8544DS README
73086     Signed-off-by: Andy Fleming <afleming@freescale.com>
73088 commit 40c7f9b0de4e300370adfc704128fa0f79a143b6
73089 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
73090 Date:   Fri Jul 27 01:50:48 2007 -0500
73092     85xx allow debugger to configure ddr.
73094     Only check for mpc8548 rev 1 when compiled for 8548.
73096     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
73097     Acked-by: Andy Fleming <afleming@freescale.com>
73099 commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704
73100 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
73101 Date:   Fri Jul 27 01:50:47 2007 -0500
73103     mpc85xx L2 cache reporting and SRAM relocation option.
73105     Allow debugger to override flash cs0/cs1 settings to enable alternate
73106     boot regions
73108     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
73109     Acked-by: Andy Fleming <afleming@freescale.com>
73111 commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f
73112 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
73113 Date:   Fri Jul 27 01:50:46 2007 -0500
73115     e500 needs ppc_asm.tmp MCK_EXCEPTION
73117     Always define MCK_EXCEPTION macro - so e500 can use it too.
73119     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
73120     Acked-by: Andy Fleming <afleming@freescale.com>
73122 commit 53a5c424bf8655b7b4e2c305a441963259a26a81
73123 Author: David Updegraff <dave@cray.com>
73124 Date:   Mon Jun 11 10:41:07 2007 -0500
73126     multicast tftp: RFC2090
73128     Implemented IETF RFC2090, Multicast TFTP.  Initial implementation
73129     on Realtek RTL8139 and Freescale TSEC.
73131     Signed-off-by: David Updegraff <dave@cray.com>
73132     Signed-off-by: Ben Warren <bwarren@qstreams.com>
73134 commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1
73135 Author: Wilson Callan <wcallan@savantav.com>
73136 Date:   Sat Jul 28 10:56:13 2007 -0400
73138     New CONFIG_BOOTP_SERVERIP option
73140     Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different
73141     from the bootp server
73143     Signed-off-by: Wilson Callan <wcallan@savantav.com>
73144     Signed-off-by: Ben Warren <bwarren@qstreams.com>
73146 commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1
73147 Author: Mike Rapoport <mike@compulab.co.il>
73148 Date:   Sun Aug 12 08:48:27 2007 +0300
73150     Add ability to take MAC address from the environment to DM9000 driver
73152     Signed-off-by: Mike Rapoport <mike@compulab.co.il>
73153     Signed-off-by: Ben Warren <bwarren@qstreams.com>
73155 commit be5d72d10d47609326226225181e301fb9a33b58
73156 Author: Wolfgang Denk <wd@denx.de>
73157 Date:   Mon Aug 13 21:57:53 2007 +0200
73159     Minor coding style cleanup. Update CHANGELOG.
73161     Signed-off-by: Wolfgang Denk <wd@denx.de>
73163 commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05
73164 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
73165 Date:   Sat Aug 11 06:54:58 2007 -0500
73167     Modify SBC8641D to use new Freescale PCI routines
73169     PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT
73170     adapter.
73172     Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
73173     Signde-off-by: Jon Loeliger <jdl@freescale.com>
73175 commit a08458303e7f9db67f296980036d3292c35cb45c
73176 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
73177 Date:   Fri Jun 29 18:38:51 2007 +0200
73179     atmel_mci: Fix data timeout value
73181     Calculate the data timeout based on values from the CSD instead of
73182     just using a hardcoded DTOR value. This is a backport of a similar fix
73183     in BSP 2.0, with one additional fix: the DTOCYC value is rounded up
73184     instead of down.
73186     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
73188 commit 0ba8eed28b575626b17e0a7882f923b83e0d7584
73189 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
73190 Date:   Mon Aug 13 17:22:31 2007 +0200
73192     AVR32: Include <div64.h> instead of <asm/div64.h>
73194     include/asm-avr32/div64.h was recently moved to include/div64.h, but
73195     cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of
73196     the patch was merged perhaps?)
73198     This patch updates cpu/at32ap/interrupts.c so that the avr32 port
73199     compiles again.
73201     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
73203 commit f0d1246ed7cb5a88522244c596d7ae7e6f161283
73204 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
73205 Date:   Wed Jun 27 13:34:26 2007 +0200
73207     atmel_mci: Use 512 byte blocksize if possible
73209     Instead of always using the largest blocksize the card supports, check
73210     if it can support smaller block sizes and use 512 bytes if possible.
73211     Most cards do support this, and other parts of u-boot seem to have
73212     trouble with block sizes different from 512 bytes.
73214     Also enable underrun/overrun protection.
73216     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
73217     Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
73219 commit 273db7e1bdd1937e32f1d4507321bb721ebd3118
73220 Author: Stefan Roese <sr@denx.de>
73221 Date:   Mon Aug 13 09:05:33 2007 +0200
73223     ppc4xx: Fix problem in PLL clock calculation
73225     This patch was originall provided by David Mitchell <dmitchell@amcc.com>
73226     and fixes a bug in the PLL clock calculation.
73228     Signed-off-by: Stefan Roese <sr@denx.de>
73230 commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b
73231 Author: Wolfgang Denk <wd@denx.de>
73232 Date:   Sun Aug 12 21:34:50 2007 +0200
73234     Update CHANGELOG
73236 commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a
73237 Author: Wolfgang Denk <wd@denx.de>
73238 Date:   Sun Aug 12 21:34:34 2007 +0200
73240     Minor alignment of output, 2nd try.
73241     Also update CHANGELOG
73243     Signed-off-by: Wolfgang Denk <wd@denx.de>
73245 commit 6b309f22a724fad8418e811751a0741b893419cf
73246 Author: Wolfgang Denk <wd@denx.de>
73247 Date:   Sun Aug 12 20:35:49 2007 +0200
73249     Minor alignment of output
73251     Signed-off-by: Wolfgang Denk <wd@denx.de>
73253 commit 6f6d7b9c8559e241e8d232621542b8b59699b07b
73254 Author: Wolfgang Denk <wd@denx.de>
73255 Date:   Sun Aug 12 18:28:18 2007 +0200
73257     Cleanup output on ADS5121 board
73259     Signed-off-by: Wolfgang Denk
73261 commit a4d2636f2a859245ed3a401f26189da2dfda4ceb
73262 Author: Wolfgang Denk <wd@denx.de>
73263 Date:   Sun Aug 12 15:11:38 2007 +0200
73265     Adapt board configuration and fix kernel crash on MCC200 board.
73267     The update procedure was modified to turn off the USB subsystem
73268     before exit for MCC200 and TRAB. This is necessary as otherwise the
73269     USB controller continues to write periodically to system memory!
73271     MCC200-specific notes:
73272     - the patch disables the magic key check for MCC200
73273     - the patch contains the configuration changes made
73274       for the new revision of the board.
73276     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
73277     Signed-off-by: Wolfgang Denk <wd@denx.de>
73279 commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf
73280 Author: Wolfgang Denk <wd@denx.de>
73281 Date:   Sun Aug 12 14:47:54 2007 +0200
73283     Adjust default configuration of ADS5121 board.
73285     Signed-off-by: Wolfgang Denk <wd@denx.de>
73287 commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9
73288 Author: Wolfgang Denk <wd@denx.de>
73289 Date:   Sun Aug 12 14:27:39 2007 +0200
73291     Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues.
73293     Signed-off-by: Wolfgang Denk <wd@denx.de>
73295 commit 5fe6be6208dda852c3564e384bd78d75784dea3e
73296 Author: Gerald Van Baren <vanbaren@cideas.com>
73297 Date:   Tue Aug 7 21:14:22 2007 -0400
73299     Improve error print messages.
73301     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73303 commit 99dffca3b7590a16a00bc475c860b67b2a3f1462
73304 Author: Kim Phillips <kim.phillips@freescale.com>
73305 Date:   Tue Jul 17 13:57:04 2007 -0500
73307     fdt: allow for builds that don't want env and bd_t nodes
73309     protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the
73310     area.
73312     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73314 commit 91148bf7aeba142d6f348805db7625db7da64d6f
73315 Author: Kim Phillips <kim.phillips@freescale.com>
73316 Date:   Tue Jul 17 13:56:53 2007 -0500
73318     fdt: do board setup based on fdt address specified on bootm line
73320     The last fdt patch to bootm did board setup based on the address
73321     specified by a prior fdt address command invocation.  The bootm
73322     code, as its call to fdt_chosen does, should use the fdt specified
73323     by the user on the bootm command.  Note this restores full
73324     functionality for the 8360's existing default boot environment
73325     values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr'
73326     before booting a kernel).
73328     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73330 commit e125a2ffc209dd34794e326c7175658253beadf3
73331 Author: Gerald Van Baren <vanbaren@cideas.com>
73332 Date:   Tue Jul 10 20:40:39 2007 -0400
73334     Call ft_board_setup() from the bootm command.
73336     In the patch titled "Create new fdt boardsetup command..." I removed the
73337     call to ft_board_setup() from the routine fdt_chosen(), but I forgot
73338     to add a direct call back into cmd_bootm.c
73340     This fixes the oversight by adding the direct call to the bootm command.
73342     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73344 commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845
73345 Author: Gerald Van Baren <vanbaren@cideas.com>
73346 Date:   Mon Jun 25 23:25:28 2007 -0400
73348     Create new fdt boardsetup command, fix bug parsing [] form of set values.
73350     Previously ft_board_setup() was called by fdt_chosen() which was not
73351     really correctly structured.  This splits ft_board_setup() out by creating
73352     a new fdt boardsetup command.
73354     Fix a bug when parsing fdt set command values which have the square
73355     bracket form [00 11 22 33] - the length was updated incorrectly in when
73356     parsing that form.
73358     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73360 commit 6f35ded9e85493595e0eb66a82b502a95326d049
73361 Author: Gerald Van Baren <vanbaren@cideas.com>
73362 Date:   Mon Jun 25 20:55:58 2007 -0400
73364     Tighten up the error messages.
73366     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73368 commit c45874b05aae897a6c29d1a97d4bb708fca2756c
73369 Author: Gerald Van Baren <vanbaren@cideas.com>
73370 Date:   Mon Jun 25 19:52:23 2007 -0400
73372     Asthetic improvements: error messages and line lengths.
73374     Tighten up the error messages, split overlength lines.
73376     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73378 commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1
73379 Author: Gerald Van Baren <vanbaren@cideas.com>
73380 Date:   Fri May 25 22:08:57 2007 -0400
73382     Fix fdt_chosen() to call ft_board_setup(), clean up long lines.
73384     The fdt_chosen() function was adding/seting some properties ad-hoc
73385       improperly and duplicated (poorly) what was done in ft_board_setup()
73387     Clean up long lines (setting properties, printing errors).
73389     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73391 commit 06e19a07701c968f15d72c083b5872a1a11c7b01
73392 Author: Gerald Van Baren <vanbaren@cideas.com>
73393 Date:   Mon May 21 23:27:16 2007 -0400
73395     For fdt_find_node_by_path(), handle the root path properly.
73397     Also removes the special case root path detection in cmd_fdt.c since it
73398     is no longer necessary.
73400     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73402 commit 9675ee7208ab965d13ea8d8262d77ac4160ef549
73403 Author: Gerald Van Baren <vanbaren@cideas.com>
73404 Date:   Thu May 17 23:54:36 2007 -0400
73406     Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
73408     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
73409     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
73411 commit 1a861169bc3758f9de3aead62b058736c6891246
73412 Author: Gerald Van Baren <vanbaren@cideas.com>
73413 Date:   Wed Jun 6 22:47:58 2007 -0400
73415     Replace fdt_node_offset() with fdt_find_node_by_path().
73417     The new name matches more closely the kernel's name, which is also
73418     a much better description.
73420     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
73421     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
73423 commit addd8ce83078c25f0eca5f23adbdfc64ca50a243
73424 Author: Gerald Van Baren <vanbaren@cideas.com>
73425 Date:   Wed May 16 22:39:59 2007 -0400
73427     Fix cmd_fdt line lengths, refactor code.
73429     Break lines that were greater than 80 characters in length.
73430     Move the fdt print and property parsing code to separate static functions
73431       to reduce coding clutter in the fdt_cmd handling body.
73433     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73435 commit 25114033ab21788810c48ba4df103b649da1223b
73436 Author: Gerald Van Baren <vanbaren@cideas.com>
73437 Date:   Sat May 12 09:47:25 2007 -0400
73439     FDT command improvements.
73441     Fix "fdt set" so that it will create a non-existing property.
73442     Add "fdt mknode" to create nodes.
73444     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73446 commit 38eb508e8e811e2e57628f445de3a24a23c7d804
73447 Author: Gerald Van Baren <vanbaren@cideas.com>
73448 Date:   Sat May 12 09:45:46 2007 -0400
73450     Reorganize and fix problems (returns) in the bootm command.
73452     Do *NOT* return after the "point of no return" has been passed.
73453       If something goes wrong, the board must be reset after that point.
73454     Move the "Transferring control to Linux" debug message back to where it
73455       belongs: just before transferring control to linux.
73457     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73459 commit 89c8757d8f213c47709bdc4efe0695263a6080a6
73460 Author: Gerald Van Baren <vanbaren@cideas.com>
73461 Date:   Tue May 8 21:27:35 2007 -0400
73463     Fix bugs in the CONFIG_OF_LIBFDT
73465     Stupid coding mistakes (identified by Timur Tabi, thanks).
73467     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73469 commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec
73470 Author: Gerald Van Baren <vanbaren@cideas.com>
73471 Date:   Wed Apr 25 22:47:15 2007 -0400
73473     Improve fdt move length handling.
73475     Make the length parameter optional: if not specified, do the move using
73476     the current size unchanged.
73478     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73480 commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d
73481 Author: Gerald Van Baren <vanbaren@cideas.com>
73482 Date:   Wed Apr 25 22:23:36 2007 -0400
73484     Minor code clean up.
73486     Declare the variable fdt properly as extern.
73487     Call the "set_fn" function pointer the "short way" without the full
73488       dereferencing syntax.
73490     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73492 commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6
73493 Author: Gerald Van Baren <vanbaren@cideas.com>
73494 Date:   Wed Apr 25 21:24:27 2007 -0400
73496     Improve error messages, more informative.
73498     Print more than the raw libfdt error message strings.  This is especially
73499     useful for cluing in the user when the bootm command aborts due to
73500     blob problems.
73502     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73504 commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4
73505 Author: Gerald Van Baren <vanbaren@cideas.com>
73506 Date:   Fri Apr 20 22:46:53 2007 -0400
73508     libfdt: Conditionally compile based on CONFIG_OF_LIBFDT
73510     This is the way u-boot reduces configured-out code.  At Wolfgang
73511     Grandegger and Wolfgang Denk's request, make libfdt conform.
73513     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73515 commit 923efd286411ed052d9e074f59f8986d6081061c
73516 Author: Bruce Adler <bruce.adler@ccpu.com>
73517 Date:   Fri Aug 10 14:54:47 2007 -0700
73519     add image size and descriptors for Spartan 3E FPGA chips
73521     Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1)
73523     Signed-off by: Bruce Adler <bruce.adler@ccpu.com>
73525 commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70
73526 Author: Kim Phillips <kim.phillips@freescale.com>
73527 Date:   Fri Aug 10 15:34:48 2007 -0500
73529     make MAKEALL more immune to merge conflicts
73531     ..by placing board entries one per line, as suggested by jdl.
73533     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73535 commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f
73536 Author: Kim Phillips <kim.phillips@freescale.com>
73537 Date:   Fri Aug 10 13:28:25 2007 -0500
73539     README: Remove outdated cpu type, board type, and NAME_config lists
73541     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73543 commit 49bb59912d21aacb507eb81fd21fb7af650c706c
73544 Author: Dave Liu <r63238@freescale.com>
73545 Date:   Fri Aug 10 15:48:59 2007 +0800
73547     mpc83xx: Suppress the warning 'burstlen'
73549     suppress the warning 'burstlen' of spd_sdram.
73551     Signed-off-by: Dave Liu <daveliu@freescale.com>
73553 commit c646bba6465a45c60746d4cc1602cd06c1960f2d
73554 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
73555 Date:   Thu Aug 9 15:11:03 2007 -0500
73557     Add support for SBC8641D. Config files.
73559     Add support for Wind River's SBC8641D reference board.
73561     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
73562     Acked-by: Wolfgang Denk <wd@denx.de>
73563     Acked-by: Jon Loeliger <jdl@freescale.com>
73565 commit 8ac273271d57321f90505c7a51cdb1ef2113b628
73566 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
73567 Date:   Thu Aug 9 15:10:53 2007 -0500
73569     Add support for SBC8641D.  Board files.
73571     Add support for Wind River's SBC8641D reference board.
73573     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
73574     Acked-by: Wolfgang Denk <wd@denx.de>
73575     Acked-by: Jon Loeliger <jdl@freescale.com>
73577 commit c2c0ab4aff86622b837a48a0e560351f9afafb95
73578 Author: Stefan Roese <sr@denx.de>
73579 Date:   Fri Aug 10 20:34:58 2007 +0200
73581     Conding style cleanup
73583     Signed-off-by: Stefan Roese <sr@denx.de>
73585 commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e
73586 Author: Sergey Kubushyn <ksi@koi8.net>
73587 Date:   Fri Aug 10 20:26:18 2007 +0200
73589     [ARM] TI DaVinci support, hopefully final
73591     Add support for the following DaVinci boards:
73592     - DV_EVM
73593     - SCHMOOGIE
73594     - SONATA
73596     Changes:
73598     - Split into separate board directories
73599     - Removed changes to MTD_DEBUG (or whatever it's called)
73600     - New CONFIG_CMD party line followed
73601     - Some cosmetic fixes, cleanup etc.
73602     - Patches against the latest U-Boot tree as of now.
73603     - Fixed CONFIG_CMD_NET in net files.
73604     - Fixed CONFIG_CMD_EEPROM for schmoogie.
73605     - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and
73606        DV_EVM. Can't check if it works on SONATA, don't have a board any more,
73607        but it at least compiles.
73609     Here is an excerpt from session log on SCHMOOGIE...
73611     U-Boot 1.2.0-g6c33c785-dirty (Aug  7 2007 - 13:07:17)
73613     DRAM:  128 MB
73614     NAND:  128 MiB
73615     In:    serial
73616     Out:   serial
73617     Err:   serial
73618     ARM Clock : 297MHz
73619     DDR Clock : 162MHz
73620     ETH PHY   : DP83848 @ 0x01
73621     U-Boot > iprobe
73622     Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F
73623     U-Boot > ping 192.168.253.10
73624     host 192.168.253.10 is alive
73625     U-Boot >
73627     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
73628     Acked-by: Dirk Behme <dirk.behme@gmail.com>
73629     Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
73630     Acked-by: Stefan Roese <sr@denx.de>
73632 commit 2e4d94f1e3c2961428967a33b6ff2520568391b3
73633 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
73634 Date:   Fri Jul 27 01:50:45 2007 -0500
73636     fsl_pci_init cleanup.
73638     Do not enable normal errors created during probe (master abort, perr,
73639     and pcie Invalid Configuration access).
73641     Add CONFIG_PCI_NOSCAN board option to prevent bus scan.
73643     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
73644     Acked-by: Andy Fleming <afleming@freescale.com>
73646 commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a
73647 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
73648 Date:   Fri Jul 27 01:50:44 2007 -0500
73650     pciauto_setup_device bars_num fix
73652     Passing bars_num=0 to pciauto_setup_device should assign no bars.
73654     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
73655     Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
73656     Acked-by: Andy Fleming <afleming@freescale.com>
73658 commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4
73659 Author: Jon Loeliger <jdl@freescale.com>
73660 Date:   Mon Aug 6 17:39:44 2007 -0500
73662     8641hpcn: Do correct sized pointer math.
73664     When I rebased Ed's patch and cleaned up a few compilation
73665     problems, I apparently rebased my brain on crack first.
73666     Fix that by doing (char *) sized pointer math as needed.
73668     Signed-off-by: Jon Loeliger <jdl@freescale.com>
73670 commit cfc7a7f5bb3273c9951173c788001d45118f141f
73671 Author: Jon Loeliger <jdl@freescale.com>
73672 Date:   Thu Aug 2 14:42:20 2007 -0500
73674     cpu/86xx fixes.
73676     Remove rev 1 fixes.
73677     Always set PICGCR_MODE.
73678     Enable machine check and provide board config option
73679     to set and handle SoC error interrupts.
73681     Include MSSSR0 in error message.
73683     Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.
73685     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
73686     Signed-off-by: Jon Loeliger <jdl@freescale.com>
73688 commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42
73689 Author: Stefan Roese <sr@denx.de>
73690 Date:   Fri Aug 10 10:42:25 2007 +0200
73692     Coding style cleanup
73694     Signed-off-by: Stefan Roese <sr@denx.de>
73696 commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f
73697 Author: Dirk Behme <dirk.behme@googlemail.com>
73698 Date:   Thu Aug 2 17:42:08 2007 +0200
73700     Make use of generic 64bit division in nand_util.c
73702     Use generic 64bit division in nand_util.c. This makes nand_util.c
73703     independent of any toolchain 64bit division.
73705     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
73707 commit f7c086e94e8ce9aad7268af97f73aa6884686f27
73708 Author: Dirk Behme <dirk.behme@googlemail.com>
73709 Date:   Thu Aug 2 17:41:14 2007 +0200
73711     Move 64bit division from avr32 to generic lib
73713     Move the 64bit division from lib_avr32 to lib_generic. With this, all
73714     boards can do_div/__div64_32 if needed, not only avr one. Code is put
73715     to lib_generic, so no larger memory footprint if not used. No code
73716     modifications. Thanks for proposal by HÃ¥vard Skinnemoen.
73718     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
73720 commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894
73721 Author: Niklaus Giger <niklausgiger@gmx.ch>
73722 Date:   Fri Jul 27 11:31:22 2007 +0200
73724     Add PPC4xx-HCU4 and HCU5 boards: HCU5 files
73726     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73728 commit 6e5de26c6e7580faf16e87745cd488b92b492d0c
73729 Author: Niklaus Giger <niklausgiger@gmx.ch>
73730 Date:   Fri Jul 27 11:30:33 2007 +0200
73732     Add PPC4xx-HCU4 and HCU5 boards: HCU4 files
73734     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73736 commit e8397fc78c9394d71de233a4d810fbc9047e4c76
73737 Author: Niklaus Giger <niklausgiger@gmx.ch>
73738 Date:   Fri Jul 27 11:38:26 2007 +0200
73740     Add PPC4xx-HCU4 and HCU5 boards: common files
73742     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73744 commit ac982ea5a4f2f993efcf52dca122f5a59df047d8
73745 Author: Niklaus Giger <niklausgiger@gmx.ch>
73746 Date:   Fri Jul 27 11:28:44 2007 +0200
73748     Add PPC4xx-HCU4 and HCU5 boards: make related
73750     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73752 commit 137fdd9f474ecb853efdace5200576308c67f18d
73753 Author: Niklaus Giger <niklausgiger@gmx.ch>
73754 Date:   Fri Jul 27 11:28:03 2007 +0200
73756     Add PPC4xx-HCU4 and HCU5 boards: HCU5 config
73758     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73760 commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2
73761 Author: Niklaus Giger <niklausgiger@gmx.ch>
73762 Date:   Fri Jul 27 11:27:15 2007 +0200
73764     Add PPC4xx-HCU4 and HCU5 boards: HCU4 config
73766     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73768 commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421
73769 Author: Niklaus Giger <niklausgiger@gmx.ch>
73770 Date:   Fri Jul 27 11:25:31 2007 +0200
73772     Add PPC4xx-HCU4 and HCU5 boards: READMEs
73774     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73776 commit 641cca9569ce351ddb287fd3343d8b1dcb591db4
73777 Author: Niklaus Giger <niklausgiger@gmx.ch>
73778 Date:   Fri Jul 27 11:37:40 2007 +0200
73780     Add PPC4xx-HCU4 and HCU5 boards: Infrastructure
73782     This series of patches adds support for 2 boards from Netstal Maschinen.
73784     The HCU4 has a PPC405Gpr and
73785     the HCU5 has a PPC440EPX.
73787     The HCU4 has a somehow complicated flash setup, as the booteprom is
73788     only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more
73789     elegant solution.
73791     The HCU5 has only a booteprom as the whole code will be downloaded from a
73792     different board which has HD, CD-ROM, etc and where all code is stored.
73794     This is my third try. I incorporated all suggestions made by Wolfgang and Stefan.
73795     Thanks them a lot.
73797     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
73799 commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171
73800 Author: Stefan Roese <sr@denx.de>
73801 Date:   Fri Aug 10 08:42:55 2007 +0200
73803     ppc4xx: Update lwmon5 POST configuration
73805     Signed-off-by: Stefan Roese <sr@denx.de>
73807 commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4
73808 Author: Yuri Tikhonov <yur@emcraft.com>
73809 Date:   Fri Aug 10 08:25:22 2007 +0200
73811     POST: Add ppc4xx UART POST support without external uart clock (lwmon5)
73813     The patch adds support for UART POST on ppc44x-based boards with no
73814     external serial clocks installed.
73816     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
73817     Acked-by: Stefan Roese <sr@denx.de>
73819 commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f
73820 Author: Kim Phillips <kim.phillips@freescale.com>
73821 Date:   Mon Aug 6 18:18:34 2007 -0500
73823     mpc83xx: fix ITX[GP] O=builddir builds
73825     make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'.  Stop.
73827     Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or
73828     "BUILD_DIR=<some dir> ./MAKEALL ..."
73830     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73832 commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3
73833 Author: Dave Liu <r63238@freescale.com>
73834 Date:   Wed Aug 1 15:00:59 2007 +0800
73836     mpc83xx: Correct the README for DDR ECC
73838     Update the README for DDR ECC, change the name
73839     to README.mpc83xx.ddrecc.
73841     Signed-off-by: Dave Liu <daveliu@freescale.com>
73842     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73844 commit daab8c67d2defef73dc26ab07f0c3afd1b05d019
73845 Author: Dave Liu <r63238@freescale.com>
73846 Date:   Wed Aug 1 15:00:15 2007 +0800
73848     mpc83xx: Consolidate the ECC support of 83xx
73850     Remove the duplicated source code of ecc command on the <board>.c,
73851     for reused, move these code to cpu/mpc83xx directory.
73853     Signed-off-by: Dave Liu <daveliu@freescale.com>
73854     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73856 commit 036575c544cf1b69654d8fb334bda69c6ff3da36
73857 Author: Dave Liu <r63238@freescale.com>
73858 Date:   Sat Aug 4 13:37:39 2007 +0800
73860     mpc83xx: Correct the burst length for DDR2 with 32 bits
73862     The burst length should be 4 for DDR2 with 32 bits bus
73864     Signed-off-by: Dave Liu <daveliu@freescale.com>
73866 commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed
73867 Author: Kim Phillips <kim.phillips@freescale.com>
73868 Date:   Wed Jul 25 19:25:33 2007 -0500
73870     mpc83xx: add support for the MPC8323E RDB
73872     MPC8323E based board with 64MB fixed SDRAM, 16MB flash,
73873     five 10/100 ethernet ports connected via an ICPlus IP175C
73874     switch, one PCI slot, and serial.  Features not supported
73875     in this patch are SD card interface, 2 USB ports, and the
73876     two phone ports.
73878     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
73879     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73881 commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359
73882 Author: Kim Phillips <kim.phillips@freescale.com>
73883 Date:   Wed Jul 25 19:25:28 2007 -0500
73885     mpc83xx: fixup generic pci for libfdt
73887     add libfdt support to the generic 83xx pci code
73889     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73891 commit f57ac7a7b37109245b69db80839ebee26179966a
73892 Author: Kim Phillips <kim.phillips@freescale.com>
73893 Date:   Wed Jul 25 19:25:22 2007 -0500
73895     mpc83xx: fix 8360 and cpu functions to update fdt being passed
73897     ..and not the global fdt. Rename local fdt vars to blob so as not to
73898     be confused with the global var with the same three-letter name.
73900     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73902 commit 8be404459a6b7395415a57bb35e8377e3b2b5acb
73903 Author: Jerry Van Baren <gvb.uboot@gmail.com>
73904 Date:   Wed Jul 4 21:34:24 2007 -0400
73906     mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
73908     Several node strings were not correct (trailing slashes and properties
73909       in the strings)
73910     Added setting of the timebase-frequency.
73911     Improved error messages and use debug() instead of printf().
73913     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
73914     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73916 commit 26d02c9bbac1751c5e19294f000100b48d43a920
73917 Author: Jerry Van Baren <gvb.uboot@gmail.com>
73918 Date:   Wed Jul 4 21:27:30 2007 -0400
73920     mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path().
73922     The new name matches more closely the kernel's name, which is also
73923     a much better description.
73925     These are the mpc83xx changes made necessary by the function name change.
73927     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
73928     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
73929     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73931 commit 9be39a67c9f8fef7107f5df09d673005f04d0963
73932 Author: Dave Liu <daveliu@freescale.com>
73933 Date:   Mon Jun 25 10:41:56 2007 +0800
73935     mpc83xx: Add support for the display of reset status
73937     83xx processor family has many reset sources, such as
73938     power on reset, software hard reset, software soft reset,
73939     JTAG, bus monitor, software watchdog, check stop reset,
73940     external hard reset, external software reset.
73941     sometimes, to figure out the fault of system, we need to
73942     know the cause of reset early before the prompt of
73943     u-boot present.
73945     Signed-off-by: Dave Liu <daveliu@freescale.com>
73946     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73948 commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d
73949 Author: Dave Liu <daveliu@freescale.com>
73950 Date:   Mon Jun 25 10:41:04 2007 +0800
73952     mpc83xx: Fix the align bug of SDMA buffer
73954     According to the latest user manual, the SDMA temporary
73955     buffer base address must be 4KB aligned.
73957     Signed-off-by: Dave Liu <daveliu@freescale.com>
73958     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73960 commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476
73961 Author: Dave Liu <daveliu@freescale.com>
73962 Date:   Mon Jun 25 13:21:12 2007 +0800
73964     mpc83xx: Revise the MPC8360EMDS readme doc
73966     When the rev2.x silicon mount on the MPC8360EMDS baord,
73967     and if you are using the u-boot version after the commit
73968     3fc0bd159103b536e1c54c6f4457a09b3aba66ca.
73969     to make the ethernet interface usable, we have to setup
73970     the jumpers correctly.
73972     Signed-off-by: Dave Liu <daveliu@freescale.com>
73973     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73975 commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c
73976 Author: Timur Tabi <timur@freescale.com>
73977 Date:   Tue Jul 3 13:46:32 2007 -0500
73979     FSL I2C driver programs the two I2C busses differently
73981     The i2c_init() function in fsl_i2c.c programs the two I2C busses differently.
73982     The second I2C bus has its slave address programmed incorrectly and is
73983     missing a 5-us delay.
73985     Signed-off-by: Timur Tabi <timur@freescale.com>
73986     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73988 commit df33f6b4d6d63693dd9200808b242de1b86cb8e8
73989 Author: Timur Tabi <timur@freescale.com>
73990 Date:   Tue Jul 3 13:04:34 2007 -0500
73992     Update SCCR programming in cpu_init_f() to support all 83xx processors
73994     Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the
73995     bitfields for all 83xx processors.  The code to update some bitfields was
73996     compiled only on some processors.  Now, the bitfields are programmed as long
73997     as the corresponding CFG_SCCR option is defined in the board header file.
73998     This means that the board header file should not define any CFG_SCCR macros
73999     for bitfields that don't exist on that processor, otherwise the SCCR will be
74000     programmed incorrectly.
74002     Signed-off-by: Timur Tabi <timur@freescale.com>
74003     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
74005 commit 9546266999f0b9b51372636614211b88d90f0f25
74006 Author: Martin Krause <martin.krause@tqs.de>
74007 Date:   Fri Jun 22 13:04:22 2007 +0200
74009     TQM834x: cleanup configuraton
74011     Remove irritating #undef DEBUG
74013     Signed-off-by: Martin Krause <martin.krause@tqs.de>
74014     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
74016 commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc
74017 Author: david.saada <David.Saada@ecitele.com>
74018 Date:   Mon Jun 18 09:09:53 2007 -0700
74020     MPC83xx: Fix makefile to generate config.h file in the build directory
74022     MPC83xx: Fix the Makefile config sections to generate the include/config.h
74023     file in the build directory instead of the source directory.
74025     Signed-off-by: David Saada <david.saada@ecitele.com>
74026     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
74028 commit 1ded0242e437259366792d52b7e9d1e1931d8fa5
74029 Author: Lee Nipper <Lee.Nipper@freescale.com>
74030 Date:   Thu Jun 14 20:07:33 2007 -0500
74032     mpc83xx: Add support for 8360 silicon revision 2.1
74034     This change adds 8360 silicon revision 2.1 support to u-boot.
74036     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
74037     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
74039 commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4
74040 Author: Kumar Gala <galak@kernel.crashing.org>
74041 Date:   Wed Aug 8 04:14:28 2007 -0500
74043     Treat ppc64 host as ppc
74045     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
74047 commit 0dc4279b08ff82472bec2e2c90858602459febe8
74048 Author: Jason Jin <Jason.jin@freescale.com>
74049 Date:   Wed Aug 8 09:01:46 2007 +0800
74051     Minor fix for bios emulator makefile
74053     Add $(obj) to LIB avoiding objects be built in the source dir
74055     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
74057 commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6
74058 Author: Jason Jin <Jason.jin@freescale.com>
74059 Date:   Wed Aug 8 08:33:11 2007 +0800
74061     Add CONFIG_BIOSEMU define to guard all the bios emulator code
74063     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
74065     This patch fix the compile issue on the board that did not enable the bios emulator
74067 commit ed8106433522f2ea8933e9808346860d061d7731
74068 Author: Zach Sadecki <Zach.Sadecki@ripcode.com>
74069 Date:   Tue Jul 31 12:27:25 2007 -0500
74071     tsec: fix multiple PHY support
74073     The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx"
74074     broke multiple PHY support in tsec.c.  This fixes it.
74076     Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
74077     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
74079 commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede
74080 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
74081 Date:   Thu Aug 9 09:08:18 2007 -0500
74083     tsec: Allow Ten Bit Interface address to be configurable
74085     Allow the address of the Ten Bit Interface (TBI) to be changed in the
74086     event of a conflict with another device.
74088     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
74090 commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6
74091 Author: Stefan Roese <sr@denx.de>
74092 Date:   Wed Aug 8 09:54:26 2007 +0200
74094     Coding style cleanup
74096     Signed-off-by: Stefan Roese <sr@denx.de>
74098 commit a41de1f0d373e09c782dea558385a06247111ba5
74099 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74100 Date:   Sun Aug 5 05:15:18 2007 -0500
74102     Port enabled for I2C signals and chipselects port configuration.
74104     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74106 commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f
74107 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74108 Date:   Sun Aug 5 04:31:18 2007 -0500
74110     Added NAND support
74112     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74114 commit eaf9e447beb3e498818ef8ad0b8c1597cd506149
74115 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74116 Date:   Sun Aug 5 04:11:20 2007 -0500
74118     Added I2C support
74120     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74122 commit 99c03c175d2689093176facf17c58ce2cb320001
74123 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74124 Date:   Sun Aug 5 03:58:52 2007 -0500
74126     Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c
74128     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74130 commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731
74131 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74132 Date:   Sun Aug 5 03:55:21 2007 -0500
74134     Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()
74136     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74138 commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630
74139 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74140 Date:   Sun Aug 5 03:43:30 2007 -0500
74142     Moved sync() from board file to include/asm-m68k/io.h
74144     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74146 commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2
74147 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74148 Date:   Sun Aug 5 03:30:44 2007 -0500
74150     Declared attributes of void __mii_init(void) as an alias for int mii_init(void)
74152     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74154 commit 9998bd37ead85e93953559720710d3b0685c81e6
74155 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74156 Date:   Sun Aug 5 03:19:10 2007 -0500
74158     Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART
74160     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74162 commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c
74163 Author: Jason Jin <Jason.jin@freescale.com>
74164 Date:   Tue Aug 7 16:17:06 2007 +0800
74166     Add CONFIG_BIOSEMU define to guard all the bios emulator code
74168     This patch fix the compile issue on the board that did not enable the bios emulator
74170 commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053
74171 Author: Wolfgang Denk <wd@denx.de>
74172 Date:   Tue Aug 7 16:02:13 2007 +0200
74174     Fix missing brace error in fs/fat/fat.c
74175     [pointed out by Roderik Wildenburg]
74177     Signed-off-by: Wolfgang Denk <wd@denx.de>
74179 commit 706714d97a0d08d59eda4de2268c39f504688329
74180 Author: Michal Simek <monstr@monstr.eu>
74181 Date:   Mon Aug 6 23:41:53 2007 +0200
74183     [FIX] remove cute code
74185 commit f500d9fdeb576288656dac427052ad2c5ca0ad1a
74186 Author: Michal Simek <monstr@monstr.eu>
74187 Date:   Mon Aug 6 23:35:26 2007 +0200
74189     [FIX] Fix romfs code
74191 commit ab4b956d3143f8f8174089053f5dfabbb04762b0
74192 Author: Michal Simek <monstr@monstr.eu>
74193 Date:   Mon Aug 6 23:31:49 2007 +0200
74195     [FIX] Coding style cleanup - Wolfgang's suggestions
74197 commit 6c33c78557ca6f8da68c01ce33e278695197d3f4
74198 Author: Wolfgang Denk <wd@denx.de>
74199 Date:   Mon Aug 6 23:21:05 2007 +0200
74201     Fixed typo in README (pointed out by Martin Jost).
74203     Signed-off-by: Wolfgang Denk <wd@denx.de>
74205 commit 537223afa61f64480df31ce440a9cb386df4a814
74206 Author: Stefan Roese <sr@denx.de>
74207 Date:   Mon Aug 6 21:10:17 2007 +0200
74209     ppc4xx: Update AMCC Bamboo README doc/README.bamboo
74211     As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>,
74212     here an updated Bamboo README.
74214     Signed-off-by: Stefan Roese <sr@denx.de>
74216 commit 9c7e4b06214db61bb21f1bcbe57c97519669baae
74217 Author: Wolfgang Denk <wd@denx.de>
74218 Date:   Mon Aug 6 02:17:36 2007 +0200
74220     Coding style cleanup. Update CHANGELOG.
74222     Signed-off-by: Wolfgang Denk <wd@denx.de>
74224 commit 221838cc7eb178370ff62aa05920a582e12ac322
74225 Author: Jason Jin <Jason.jin@freescale.com>
74226 Date:   Tue Jul 10 09:03:22 2007 +0800
74228     Remove the bios emulator from MAI board.
74230     The bios emulator in the MAI board can not pass compile
74231     and have a lot of crap in it. remove it and will have a
74232     clean and small bios emulator in the drivers directory
74233     which can be uesed for every board.
74235     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
74237 commit 5618332409bb96f4448d1712899369fc80c0b489
74238 Author: Jason Jin <Jason.jin@freescale.com>
74239 Date:   Fri Jul 13 12:14:59 2007 +0800
74241     Fix some compile issues for MAI board.
74243     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
74245 commit 0f460a1ee148b648ee242c3157650287d4296260
74246 Author: Jason Jin <Jason.jin@freescale.com>
74247 Date:   Fri Jul 13 12:14:58 2007 +0800
74249     Configurations for ATI video card BIOS emulator
74251     This patch add definition of the BIOS emulator and the ATI framebuffer
74252     driver for MPC8641HPCN board.
74254     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
74255     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
74257 commit ece92f85053b8df613edcf05b26a416cbc3d629c
74258 Author: Jason Jin <Jason.jin@freescale.com>
74259 Date:   Fri Jul 6 08:34:56 2007 +0800
74261     This is a BIOS emulator, porting from SciTech for u-boot, mainly for
74262     ATI video card BIOS. and can be used for x86 code emulation by some
74263     modifications.
74265     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
74267 commit 5072188acabde3178fac7f5a597150e6e74fd40c
74268 Author: Jason Jin <Jason.jin@freescale.com>
74269 Date:   Fri Jul 6 08:33:33 2007 +0800
74271     This is a framebuffer driver for ATI video card, can work for PCI9200,
74272     X300, X700, X800 ATI video cards.
74274     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
74275     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
74277 commit 5728be389e65fd47f34b33c2596271eb4db751ae
74278 Author: Wolfgang Denk <wd@denx.de>
74279 Date:   Mon Aug 6 01:01:49 2007 +0200
74281     Coding style cleanup. Update CHANGELOG.
74283     Signed-off-by: Wolfgang Denk <wd@denx.de>
74285 commit 8092fef4c29b395958bb649647da7e3775731517
74286 Author: Martin Krause <Martin.Krause@tqs.de>
74287 Date:   Tue Dec 12 14:26:01 2006 +0100
74289     Add functions to list of exported functions
74291     Additionally export the following fuctions (to make trab_config build again):
74292     - simple_strtol()
74293     - strcmp()
74295     Also bump the ABI version to reflect this change
74297     Signed-off-by: Martin Krause <martin.krause@tqs.de>
74299 commit 63cec5814fab5d2b1c86982327433807a5ac0249
74300 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
74301 Date:   Thu Aug 2 14:09:49 2007 -0500
74303     Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.
74305     All of the PCI/PCI-Express driver and initialization code that
74306     was in the MPC8641HPCN port has now been moved into the common
74307     drivers/fsl_pci_init.c.  In a subsequent patch, this will be
74308     utilized by the 85xx ports as well.
74310     Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.
74312     Also enable the second PCI-Express controller on 8641
74313     by getting its BATS and CFG_ setup right.
74315     Fixed a u16 vendor compiler warning in AHCI driver too.
74317     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
74318     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
74319     Signed-off-by: Jon Loeliger <jdl@freescale.com>
74321 commit a274ca4f6d68830e7c916f897561cff8c4101c38
74322 Author: Michal Simek <monstr@monstr.eu>
74323 Date:   Sun Aug 5 22:33:05 2007 +0200
74325     [FIX] Coding style cleanup
74327 commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f
74328 Author: Michal Simek <monstr@monstr.eu>
74329 Date:   Sun Aug 5 16:13:31 2007 +0200
74331     [FIX] Xilinx Uartlite driver
74332     Because PPC405 can use UARTLITE serial interface and
74333     Microblaze can use Uart16550 serial interface not only Uartlite.
74335 commit 98889edd50aadf862071eb5664747ad0d568a20e
74336 Author: Michal Simek <monstr@monstr.eu>
74337 Date:   Sun Aug 5 15:54:53 2007 +0200
74339     [FIX] Change configuration for XUPV2P Microblaze board
74341 commit 537091b4eed9302865d03fef3f7212b4fe5cf28f
74342 Author: Michal Simek <monstr@monstr.eu>
74343 Date:   Sun Aug 5 15:53:50 2007 +0200
74345     [PATCH] Added support for Xilinx Emac community driver
74347 commit 86b116b1b1e165ca4840daefed36d2e3b8460173
74348 Author: Bartlomiej Sieka <tur@semihalf.com>
74349 Date:   Fri Aug 3 12:08:16 2007 +0200
74351     cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family.
74353     Add the ability for modules from the Schindler cm5200 family to use a
74354     single U-Boot image:
74355     - rename cm1_qp1 to cm5200
74356     - add run-time module detection
74357     - parametrize SDRAM configuration according to the module we are running on
74359     Few minor, board-specific fixes included in this patch:
74360     - better MAC address handling
74361     - updated default environment ('update' command uses +{filesize} now)
74362     - improved error messages in the auto-update code
74363     - allow booting U-Boot from RAM (CFG_RAMBOOT)
74365     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
74366     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
74367     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
74369 commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779
74370 Author: Andy Fleming <afleming@freescale.com>
74371 Date:   Fri Aug 3 04:05:25 2007 -0500
74373     Add Marvell 1149 PHY support to the TSEC
74375 commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86
74376 Author: Wolfgang Denk <wd@denx.de>
74377 Date:   Thu Aug 2 21:27:46 2007 +0200
74379     Coding style cleanup, update CHANGELOG
74381     Signed-off-by: Wolfgang Denk <wd@denx.de>
74383 commit 63e22764d2f8653f68888c667eb65b3996b52680
74384 Author: Wolfgang Denk <wd@denx.de>
74385 Date:   Thu Aug 2 10:11:18 2007 +0200
74387     Minor cleanup of <board>_nand build rules.
74389 commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef
74390 Author: Stefan Roese <sr@denx.de>
74391 Date:   Thu Aug 2 08:33:56 2007 +0200
74393     ppc4xx: Code cleanup
74395     Signed-off-by: Stefan Roese <sr@denx.de>
74397 commit c92409812206ac67a7fa7aae298539a9c3804a46
74398 Author: Grzegorz Bernacki <gjb@semihalf.com>
74399 Date:   Tue Jul 31 18:51:48 2007 +0200
74401     [ppc440SPe] Graceful recovery from machine check during PCIe configuration
74403     During config transactions on the PCIe bus an attempt to scan for a
74404     non-existent device can lead to a machine check exception with certain
74405     peripheral devices. In order to avoid crashing in such scenarios the
74406     instrumented versions of the config cycle read routines are introduced, so
74407     the exceptions fixups framework can gracefully recover.
74409     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
74410     Acked-by: Rafal Jaworowski <raj@semihalf.com>
74412 commit dec99558b9ea75a37940d07f41a3565a50b54ad1
74413 Author: Rafal Jaworowski <raj@semihalf.com>
74414 Date:   Tue Jul 31 18:19:54 2007 +0200
74416     [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A
74418     This brings back separate settings for PCIe bus numbers depending on chip
74419     revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa
74420     commit. 440SPe rev. A does NOT work properly with the same settings as for
74421     the rev. B (no devices are seen on the bus during enumeration).
74423     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
74425 commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197
74426 Author: Wolfgang Denk <wd@denx.de>
74427 Date:   Thu Aug 2 00:48:45 2007 +0200
74429     Fix build errors and warnings / code cleanup.
74431     Signed-off-by: Wolfgang Denk <wd@denx.de>
74433 commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68
74434 Author: Eugene OBrien <eugene.obrien@advantechamt.com>
74435 Date:   Tue Jul 31 10:24:56 2007 +0200
74437     ppc4xx: Update AMCC Bamboo 440EP support
74439     Changed storage type of cfg_simulate_spd_eeprom to const
74440     Changed storage type of gpio_tab to stack storage
74441     (Cannot access global data declarations in .bss until afer code relocation)
74443     Improved SDRAM tests to catch problems where data is not uniquely addressable
74444     (e.g. incorrectly programmed SDRAM row or columns)
74446     Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
74447     Fixed AM29LV320DT (OpCode Flash) sector map
74449     Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com>
74450     Signed-off-by: Stefan Roese <sr@denx.de>
74452 commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574
74453 Author: Stefan Roese <sr@denx.de>
74454 Date:   Tue Jul 31 08:37:01 2007 +0200
74456     ppc4xx: Update 440EPx lwmon5 board support
74458     - Clear ECC status regs after ECC POST test
74459     - Set dcbz for ECC generation with caches enabled as default
74460     - Code cleanup
74462     Signed-off-by: Stefan Roese <sr@denx.de>
74464 commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724
74465 Author: Stefan Roese <sr@denx.de>
74466 Date:   Mon Jul 30 11:04:57 2007 +0200
74468     ppc4xx: Only print ECC related info when the error bis are set
74470     Signed-off-by: Stefan Roese <sr@denx.de>
74472 commit e36220a4baf1f188ba60f17e9d0f043069b1362a
74473 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
74474 Date:   Fri Jul 27 16:44:31 2007 +0200
74476     new FPGA image for PLU405 board
74478     new FPGA image for PLU405 board with improved CompactFlash timing
74480     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
74482 commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6
74483 Author: Rafal Jaworowski <raj@semihalf.com>
74484 Date:   Fri Jul 27 14:43:59 2007 +0200
74486     [ADS5121] Support for the ADS5121 board
74488     The following MPC5121e subsystems are supported:
74490     - low-level CPU init
74491     - NOR Boot Flash (common CFI driver)
74492     - DDR SDRAM
74493     - FEC
74494     - I2C
74495     - Watchdog
74497     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
74498     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
74499     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
74501 commit 1863cfb7b100ba0ee3401799457a01dc058745f8
74502 Author: Rafal Jaworowski <raj@semihalf.com>
74503 Date:   Fri Jul 27 14:22:04 2007 +0200
74505     [PPC] Remove unused MSR_USER definition
74507     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
74509 commit d4024bb72dd81695ec099b2199eda0d27c623e62
74510 Author: John Otken <john@softadvances.com>
74511 Date:   Thu Jul 26 17:49:11 2007 +0200
74513     ppc4xx: Add support for AMCC 405EP Taihu board
74515     Signed-off-by: John Otken <john@softadvances.com>
74517 commit b66091de6c7390620312c2501db23d8391e7cabb
74518 Author: Anatolij Gustschin <agust@denx.de>
74519 Date:   Thu Jul 26 15:08:01 2007 +0200
74521     ppc4xx: lwmon5: Update Lime initialization
74523     Change Lime SDRAM initialization to now support 100MHz and
74524     133MHz (if enabled). Also the framebuffer is initialized to
74525     display a blue rectangle with a white border.
74527     Signed-off-by: Anatolij Gustschin <agust@denx.de>
74528     Signed-off-by: Stefan Roese <sr@denx.de>
74530 commit 9f24a808f17fc0f37b7fb4805f734741335caecc
74531 Author: Stefan Roese <sr@denx.de>
74532 Date:   Tue Jul 24 09:52:52 2007 +0200
74534     ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added
74536     The used Intel NOR FLASH chips have internally two dies, and are now
74537     treated as two seperate chips.
74539     Signed-off-by: Stefan Roese <sr@denx.de>
74541 commit aedf5bde179ecfbd0a96130d18996a96518b785f
74542 Author: Stefan Roese <sr@denx.de>
74543 Date:   Tue Jul 24 07:20:09 2007 +0200
74545     ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...)
74547     As suggested by Hakan Eryigit, here an updated setup for the lwmon5
74548     interrupt controller.
74550     Signed-off-by: Stefan Roese <sr@denx.de>
74552 commit a71d96eac8130b53a91f93cd10c70fca0db18d52
74553 Author: Stefan Roese <sr@denx.de>
74554 Date:   Fri Jul 20 15:03:44 2007 +0200
74556     ppc4xx: Fix bug with default GPIO output value
74558     As spotted by Matthias Fuchs, the default output values for all GPIO1
74559     outputs were not setup correctly. This patch fixes this issue.
74561     Signed-off-by: Stefan Roese <sr@denx.de>
74563 commit 531e3e8b831f357056448fa573137d5fb37000fd
74564 Author: Pavel Kolesnikov <concord@emcraft.com>
74565 Date:   Fri Jul 20 15:03:03 2007 +0200
74567     POST: Add ECC POST for the lwmon5 board
74569     This patch adds ECC Post test for the Lwmon5 board based
74570     on PPC440EPx to U-Boot.
74572     Signed-off-by: Pavel Kolesnikov <concord@emcraft.com>
74573     Acked-by: Yuri Tikhonov <yur@emcraft.com>
74574     Acked-by: Stefan Roese <sr@denx.de>
74576 commit cc3023b9f95d7ac959a764471a65001062aecf41
74577 Author: Rafal Jaworowski <raj@semihalf.com>
74578 Date:   Thu Jul 19 17:12:28 2007 +0200
74580     Fix breakage of 8xx boards from recent commit.
74582     This patch fixes the negative consequences for 8xx of the recent
74583     "ppc4xx: Clean up 440 exceptions handling" commit.
74585     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
74587 commit c883f6ea32dce91f07670b3aafecf6c99b1e5341
74588 Author: Stefan Roese <sr@denx.de>
74589 Date:   Mon Jul 16 13:11:12 2007 +0200
74591     Coding style cleanup
74593     Signed-off-by: Stefan Roese <sr@denx.de>
74595 commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf
74596 Author: Stefan Roese <sr@denx.de>
74597 Date:   Mon Jul 16 10:02:12 2007 +0200
74599     ppc4xx: Code cleanup
74601     Signed-off-by: Stefan Roese <sr@denx.de>
74603 commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8
74604 Author: Stefan Roese <sr@denx.de>
74605 Date:   Mon Jul 16 10:01:38 2007 +0200
74607     ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup
74609     Signed-off-by: Stefan Roese <sr@denx.de>
74611 commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9
74612 Author: Stefan Roese <sr@denx.de>
74613 Date:   Mon Jul 16 10:00:43 2007 +0200
74615     ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c
74617     The new boardspecific DDR2 controller configuration is used for the Yucca
74618     board. Now the Yucca board with 440SPe Rev. A chips is also supported.
74620     Signed-off-by: Stefan Roese <sr@denx.de>
74622 commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e
74623 Author: Stefan Roese <sr@denx.de>
74624 Date:   Mon Jul 16 09:57:00 2007 +0200
74626     ppc4xx: Add new weak functions to support boardspecific DDR2 configuration
74628     The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better
74629     support non default, boardspecific DDR(2) controller configuration.
74631     Signed-off-by: Stefan Roese <sr@denx.de>
74633 commit 5743a9207a370b90f09b20ebd61167c806b937f3
74634 Author: Stefan Roese <sr@denx.de>
74635 Date:   Mon Jul 16 08:53:51 2007 +0200
74637     ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup
74639     The new function remove_tlb() can be used to remove the TLB's used to
74640     map a specific memory region. This is especially useful for the DDR(2)
74641     setup routines which configure the SDRAM area temporarily as a cached
74642     area (for speedup on auto-calibration and ECC generation) and later
74643     need this area uncached for normal usage.
74645     Signed-off-by: Stefan Roese <sr@denx.de>
74647 commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae
74648 Author: Michal Simek <monstr@monstr.eu>
74649 Date:   Mon Jul 16 00:31:07 2007 +0200
74651     [PATCH] Support for Xilinx EmacLite controller
74653 commit 3a6cab844cf74f76639d795e0be8717e02c86af7
74654 Author: Wolfgang Denk <wd@denx.de>
74655 Date:   Sat Jul 14 22:51:02 2007 +0200
74657     Update CHANGELOG
74659     Signed-off-by: Wolfgang Denk <wd@denx.de>
74661 commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1
74662 Author: Michal Simek <monstr@monstr.eu>
74663 Date:   Sat Jul 14 13:11:28 2007 +0200
74665     [FIX] support for simply measuring time
74667 commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43
74668 Author: Michal Simek <monstr@monstr.eu>
74669 Date:   Sat Jul 14 12:41:23 2007 +0200
74671     [FS] Added support for ROMFS
74673 commit 011595307731a7a67a7445d107c279d031e8ab97
74674 Author: Heiko Schocher <hs@pollux.denx.de>
74675 Date:   Sat Jul 14 01:06:58 2007 +0200
74677     [PCS440EP]  - fix compile error, if BUILD_DIR is used
74679 commit 5a2f1098d81ad58b309e5e558d0492643166a799
74680 Author: Michal Simek <monstr@monstr.eu>
74681 Date:   Sat Jul 14 00:18:48 2007 +0200
74683     [PATCH] Support time without timer
74685 commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0
74686 Author: Michal Simek <monstr@monstr.eu>
74687 Date:   Fri Jul 13 21:43:55 2007 +0200
74689     [PATCH] Remove problem with disabled BARREL SHIFTER
74691 commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94
74692 Author: Michal Simek <monstr@monstr.eu>
74693 Date:   Fri Jul 13 21:41:44 2007 +0200
74695     [FIX] correct help for rspr
74697 commit fad63407154f46246ce80d53a9c669a44362ac67
74698 Author: Heiko Schocher <hs@pollux.denx.de>
74699 Date:   Fri Jul 13 09:54:17 2007 +0200
74701     make show_boot_progress () weak.
74703     Signed-off-by: Heiko Schocher <hs@denx.de>
74705 commit 907902472391b6ca1876ec300687562ecaf459b1
74706 Author: Heiko Schocher <hs@pollux.denx.de>
74707 Date:   Fri Jul 13 08:26:05 2007 +0200
74709     [PCS440EP]  - The DIAG LEDs are now blinking, if an error occur
74710                 - fix compile error, if BUILD_DIR is used
74712     Signed-off-by: Heiko Schocher <hs@denx.de>
74714 commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578
74715 Author: Stefan Roese <sr@denx.de>
74716 Date:   Thu Jul 12 16:32:08 2007 +0200
74718     ppc4xx: Change receive buffer handling in the 4xx emac driver
74720     This change fixes a bug in the receive buffer handling, that
74721     could lead to problems upon high network traffic (broadcasts...).
74723     Signed-off-by: Stefan Roese <sr@denx.de>
74725 commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360
74726 Author: Wolfgang Denk <wd@denx.de>
74727 Date:   Thu Jul 12 01:45:34 2007 +0200
74729     Update CHANGELOG, minor coding style cleanup.
74731     Signed-off-by: Wolfgang Denk <wd@denx.de>
74733 commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654
74734 Author: Andy Fleming <afleming@freescale.com>
74735 Date:   Fri Jun 8 16:41:18 2007 -0500
74737     Remove erroneous errata code from Marvel 88E1111S driver
74739     The Marvel 88E1111S driver for the TSEC was copied from the
74740     88E1101 driver, and included a fix for an erratum which does not
74741     exist on that part.  Now it is removed
74743     Signed-off-by: Andy Fleming <afleming@freescale.com>
74745 commit 982efcf23fd03647e01e2fbe28a7a36239156cc0
74746 Author: Andy Fleming <afleming@freescale.com>
74747 Date:   Tue Jun 5 16:38:44 2007 -0500
74749     From: eran liberty <eran.liberty@gmail.com>
74751     adds the reset register to 85xx immap
74753     Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
74754     Signed-off-by: Andy Fleming <afleming@freescale.com>
74756 commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7
74757 Author: Andy Fleming <afleming@freescale.com>
74758 Date:   Thu May 10 17:50:01 2007 -0500
74760     Polished the 85xx ADS config files
74762     Made the boot commands use device trees by default.
74763     Also moved the ramdisk to 1000000 (I think the previous address
74764     was getting overridden during boot).
74766     Signed-off-by: Andy Fleming <afleming@freescale.com>
74768 commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038
74769 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
74770 Date:   Wed May 9 11:03:32 2007 -0500
74772     8544ds: Fix Makefile after moving pixis to board/freescale.
74774     The OBJTREE != SRCTREE build scenario was broken.
74775     This fixes it.
74777     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
74778     Signed-off-by: Jon Loeliger <jdl@freescale.com>
74780 commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e
74781 Author: Andy Fleming <afleming@freescale.com>
74782 Date:   Wed May 9 00:54:20 2007 -0500
74784     tsec: Fix PHY code to match first driver
74786     Jarrold Wen noticed that the generic PHY code always matches
74787     under the current implementation.  Change it so the first match
74788     wins, and *only* unknown PHYs trigger the generic driver
74790     Signed-off-by: Andy Fleming <afleming@freescale.com>
74792 commit ccc091aac61a38cd998d575d92f7232e256d6312
74793 Author: Andy Fleming <afleming@freescale.com>
74794 Date:   Tue May 8 17:27:43 2007 -0500
74796     Add support for CPM device tree configuration to 8560 ADS
74798     * Adds code to modify CPM frequencies
74799     * Cleans up the config file to #define TSEC and (for now) #undef FCC
74800     * Adds the MII command for all 8560 ADS configurations
74801     * Updates config file to provide convenience commands for booting
74802       with a device tree
74804     Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
74805     Signed-off-by: Andy Fleming <afleming@freescale.com>
74807 commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9
74808 Author: Andy Fleming <afleming@freescale.com>
74809 Date:   Tue May 8 17:23:02 2007 -0500
74811     Fix Marvell 88e1145 PHY init code
74813     Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver
74814     where the reset was being done after the errata code instead of
74815     before.
74817     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
74818     Signed-off-by: Andy Fleming <afleming@freescale.com>
74820 commit 5dc210dec5bace98a50b6ba905347890091a9bb0
74821 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
74822 Date:   Wed Jul 11 14:52:16 2007 -0500
74824     Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
74826     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
74828 commit e8b85f3ba4cd8930e0a2fea2100c815d64201765
74829 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
74830 Date:   Wed Jul 11 14:52:08 2007 -0500
74832     pciauto setup bridge
74834     The P2P bridge bus numbers programmed into the device are relative to
74835     hose->first_busno.
74837     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
74839 commit 571f49fa717004ca4268b4e24057efc7bf9f987b
74840 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
74841 Date:   Wed Jul 11 14:52:01 2007 -0500
74843     Support PCIe extended config registers
74845     FSL PCIe block has extended cfg registers in the 100 and 400 range.
74846     For example, to read the LTSSM register: pci display <busn>.0 404 1
74848     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
74850 commit ba5feb12581bb2912ce301e4866b71f846e9fc07
74851 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
74852 Date:   Wed Jul 11 14:51:48 2007 -0500
74854     Minor improvements to drivers/pci_auto.c
74856     - Make pciauto_{pre,post}scan_setup_bridge non-static
74857     - Added physical address display in debug messages.
74859     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
74861 commit 40e81addab7bb74d20ddf681ce9babc880a828ee
74862 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
74863 Date:   Wed Jul 11 14:51:35 2007 -0500
74865     Start pci hose scan from hose->current_busno.
74867     Ensure hose->current_busno is not less than first_busno.  This fixes
74868     broken board code which leaves current_busno=0 when first_busno is
74869     greater than 0 for the cases with multiple controllers.
74871     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
74873 commit 3865b1fb7843a08ad49a6319a36415752276ff48
74874 Author: Stefan Roese <sr@denx.de>
74875 Date:   Wed Jul 11 12:13:53 2007 +0200
74877     Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup
74879     Signed-off-by: Stefan Roese <sr@denx.de>
74881 commit fa1df308926a6f70e3504c57514ef27ac31fd13a
74882 Author: Bartlomiej Sieka <tur@semihalf.com>
74883 Date:   Wed Jul 11 20:11:07 2007 +0200
74885     CM1.QP1: Support for the Schindler CM1.QP1 board.
74887     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
74888     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
74890 commit 96e1d75be8193ca79e4215a368bf9d7f2362450f
74891 Author: Heiko Schocher <hs@pollux.denx.de>
74892 Date:   Wed Jul 11 18:39:11 2007 +0200
74894     [PCS440EP]  - Show on the DIAG LEDs, if the SHA1 check failed
74895                 - now the Flash ST M29W040B is supported (not tested)
74896                 - fix the "led" command
74897                 - fix compile error, if BUILD_DIR is used
74899     Signed-off-by: Heiko Schocher <hs@denx.de>
74901 commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5
74902 Author: Stefan Roese <sr@denx.de>
74903 Date:   Sun Jul 8 13:44:27 2007 +0200
74905     Fix malloc problem introduced with the relocation fixup for the PPC platform
74907     The relocation fixup didn't handle the malloc pointer initialization
74908     correctly. This patch fixes this problem. Tested successfully on 4xx.
74909     The relocation fixup patches for 4xx will follow soon.
74911     Signed-off-by: Stefan Roese <sr@denx.de>
74913 commit 0dca874db62718e41253659e60f3a1de7eb418ce
74914 Author: TsiChung <tcliew@Goku.(none)>
74915 Date:   Tue Jul 10 15:45:43 2007 -0500
74917     Cache update and added CFG_UNIFY_CACHE
74919     Enabled cache in cpu_init_f() for faster flash to mem allocation. Updated cache handling in start.S. Applied cache invalidate in fec_send() and fec_recv(). Added CFG_UNIFY_CACHE for CF V3 only.
74921     Signed-off-by: TsiChung <tcliew@Goku.(none)>
74923 commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005
74924 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74925 Date:   Thu Jul 5 23:36:16 2007 -0500
74927     Update header file. Include dtimer_intr_setup(). Changed timer divider to global define.
74929     Include immap.h and timer.h. Moved dtimer interrupt setup to dtimer_intr_setup() from cpu/mcf532x/interrupts.c. Changed (CFG_CLK /1000000) -1 << 8 to CFG_TIMER_PRESCALER
74931     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74933 commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac
74934 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74935 Date:   Thu Jul 5 23:31:25 2007 -0500
74937     Update header files
74939     Include immap.h and renamed mcfrtc.h to rtc.h
74941     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74943 commit 2870e98ac8e5553e9187b12a47e5f46babb53990
74944 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74945 Date:   Thu Jul 5 23:29:21 2007 -0500
74947     Add mcffec_initialize()
74949     Added mcffec_initialize() in eth_initialize()
74951     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74953 commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d
74954 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74955 Date:   Thu Jul 5 23:27:40 2007 -0500
74957     Update header file and clean up
74959     Include immap.h
74961     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74963 commit 0cee9c66318602c856a899ae5fa7579ccba6443a
74964 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74965 Date:   Thu Jul 5 23:23:15 2007 -0500
74967     New uart structure and defines
74969     Seperated from mcfuart.h
74971     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74973 commit a90e79de8d99e9c9d69d60bfff9f24c337165900
74974 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74975 Date:   Thu Jul 5 23:22:31 2007 -0500
74977     New timer structure and defines
74979     Seperated from mcftimer.h
74981     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74983 commit e04acb2eba4782489417240eff76e20e176aec10
74984 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74985 Date:   Thu Jul 5 23:21:09 2007 -0500
74987     Rename mcfrtc to rtc
74989     Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
74991     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74993 commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5
74994 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
74995 Date:   Thu Jul 5 23:17:36 2007 -0500
74997     Rename mcfserial.c. Update include header
74999     Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
75001     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75003 commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e
75004 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75005 Date:   Thu Jul 5 23:13:58 2007 -0500
75007     Header file update, clean up and cache handling
75009     Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid.
75011     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75013 commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97
75014 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75015 Date:   Thu Jul 5 23:10:40 2007 -0500
75017     Create interrupts.c and modify Makefile
75019     interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
75021     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75023 commit ddd104f1ed655eda50c06ba636237a83ed943f34
75024 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75025 Date:   Thu Jul 5 23:06:55 2007 -0500
75027     Enable Icache
75029     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75031 commit b9bf3de377b2bae70c983c9b97feae914999e735
75032 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75033 Date:   Thu Jul 5 23:05:31 2007 -0500
75035     Update header file and some clean up
75037     Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces.
75039     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75041 commit 84a015b52ec820a5ae173717d78516de731c89c2
75042 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75043 Date:   Thu Jul 5 23:03:28 2007 -0500
75045     Update header file and enable icache
75047     Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().
75049     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75051 commit 7a17e759c7a8b58e910daf54df611e94fc8ca074
75052 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75053 Date:   Thu Jul 5 23:01:22 2007 -0500
75055     Update header file and removed interrupt_init()
75057     Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c
75059     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75061 commit 3b635492c95bd0d6e08f93f699821cba1f602a64
75062 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75063 Date:   Thu Jul 5 22:57:46 2007 -0500
75065     Update for flash.o and mii.o
75067     Removed flash.o and added mii.o
75069     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75071 commit c5ded275d839e4ff79f41718d50a835d989f57bc
75072 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75073 Date:   Thu Jul 5 22:56:19 2007 -0500
75075     MII functions calls.
75077     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75079 commit 427c814104560e29bda14955c67703245aaaa5b4
75080 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75081 Date:   Thu Jul 5 22:54:42 2007 -0500
75083     Removed MII functions and replaced immap_5329.h and m5329.h with immap.h.
75085     The removed MII routines will be placed in mii.c.
75087     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75089 commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2
75090 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75091 Date:   Thu Jul 5 22:51:05 2007 -0500
75093     Duplicate code
75095     There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file.
75097     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75099 commit 2744354a8437b8f78db178e30660215688bff570
75100 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75101 Date:   Thu Jul 5 22:46:38 2007 -0500
75103     Seperate old structure defines and new structure defines
75105     Removed new uart structure and defines to uart.h
75107     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75109 commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230
75110 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75111 Date:   Thu Jul 5 22:45:01 2007 -0500
75113     Seperate old structure defines and new structure defines
75115     New timer structure and defines will move to new timer.h
75117     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75119 commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784
75120 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75121 Date:   Thu Jul 5 22:42:23 2007 -0500
75123     Clean up
75125     Removed whitespace
75127     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75129 commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2
75130 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75131 Date:   Thu Jul 5 22:41:24 2007 -0500
75133     Clean up
75135     Replaced whitespace with tabs
75137     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75139 commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd
75140 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75141 Date:   Thu Jul 5 22:39:07 2007 -0500
75143     Create new header file and move peripherals base address from configs file to new header file.
75145     Create new header file to include immap_5xxx.h and m5xxx.h and to share among drivers without update in driver file each processor is added. Moved peripherals base address and defines from configs file to immap.h.
75147     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75149 commit be296e31c4411f96d9cb3d2afc8fcb006867abfa
75150 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75151 Date:   Thu Jul 5 22:24:58 2007 -0500
75153     Revert file mode
75155     Changed MAKEALL file mode to executable, removed executable file mode from Makefile
75157     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
75159 commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582
75160 Author: Jon Loeliger <jdl@freescale.com>
75161 Date:   Tue Jul 10 11:19:50 2007 -0500
75163     disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.
75165     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
75166     Those always evaluated TRUE, and thus were always compiled
75167     even when IDE really wasn't defined/wanted.
75169     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75171 commit ddb5d86f0215bcb6c293510c50eb050e92883b7a
75172 Author: Jon Loeliger <jdl@freescale.com>
75173 Date:   Tue Jul 10 11:13:21 2007 -0500
75175     drivers/: Remove lingering references to CFG_CMD_* symbols.
75177     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
75178     Those always evaluated TRUE, and thus were always compiled
75179     even when IDE really wasn't defined/wanted.
75181     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75183 commit f40a7f3e3888b42a43674b099e5470022c8c544c
75184 Author: Jon Loeliger <jdl@freescale.com>
75185 Date:   Tue Jul 10 11:07:56 2007 -0500
75187     fs/: Remove lingering references to CFG_CMD_* symbols.
75189     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
75190     Those always evaluated TRUE, and thus were always compiled
75191     even when IDE really wasn't defined/wanted.
75193     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75195 commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593
75196 Author: Jon Loeliger <jdl@freescale.com>
75197 Date:   Tue Jul 10 11:05:02 2007 -0500
75199     net/: Remove lingering references to CFG_CMD_* symbols.
75201     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
75202     Those always evaluated TRUE, and thus were always compiled
75203     even when IDE really wasn't defined/wanted.
75205     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75207 commit 902531788376046da212afd1661cffb62f3daa1c
75208 Author: Jon Loeliger <jdl@freescale.com>
75209 Date:   Tue Jul 10 11:02:44 2007 -0500
75211     common/: Remove lingering references to CFG_CMD_* symbols.
75213     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
75214     Those always evaluated TRUE, and thus were always compiled
75215     even when IDE really wasn't defined/wanted.
75217     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75219 commit d39b57415838c73fb0a37eca84de3c68ba990586
75220 Author: Jon Loeliger <jdl@freescale.com>
75221 Date:   Tue Jul 10 10:48:22 2007 -0500
75223     board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.
75225     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
75226     Those always evaluated TRUE, and thus were always compiled
75227     even when IDE really wasn't defined/wanted.
75229     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75231 commit 77a318545d57aefa844752465b94c7e09a3f26d0
75232 Author: Jon Loeliger <jdl@freescale.com>
75233 Date:   Tue Jul 10 10:39:10 2007 -0500
75235     board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
75237     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
75238     Those always evaluated TRUE, and thus were always compiled
75239     even when IDE really wasn't defined/wanted.
75241     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75243 commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d
75244 Author: Jon Loeliger <jdl@freescale.com>
75245 Date:   Tue Jul 10 10:27:39 2007 -0500
75247     cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
75249     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75251 commit 079a136c3588814784561d6e4856970ee82d6e2a
75252 Author: Jon Loeliger <jdl@freescale.com>
75253 Date:   Tue Jul 10 10:12:10 2007 -0500
75255     include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
75257     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
75258     used to be included but CONFIG_BOOTP_MASK was not defined.
75260     Remove lingering references to CFG_CMD_* symbols.
75262     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75264 commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c
75265 Author: Jon Loeliger <jdl@freescale.com>
75266 Date:   Tue Jul 10 09:38:02 2007 -0500
75268     include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.
75270     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
75271     used to be included but CONFIG_BOOTP_MASK was not defined.
75273     Remove lingering references to CFG_CMD_* symbols.
75275     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75277 commit 80ff4f99b84b64edca3fd10da365ec1493be1c95
75278 Author: Jon Loeliger <jdl@freescale.com>
75279 Date:   Tue Jul 10 09:29:01 2007 -0500
75281     include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.
75283     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
75284     used to be included but CONFIG_BOOTP_MASK was not defined.
75286     Remove lingering references to CFG_CMD_* symbols.
75288     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75290 commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a
75291 Author: Jon Loeliger <jdl@freescale.com>
75292 Date:   Tue Jul 10 09:22:23 2007 -0500
75294     include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.
75296     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
75297     used to be included but CONFIG_BOOTP_MASK was not defined.
75299     Remove lingering references to CFG_CMD_* symbols.
75301     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75303 commit 659e2f6736232a08acca8785c206e2b4d9cd07d7
75304 Author: Jon Loeliger <jdl@freescale.com>
75305 Date:   Tue Jul 10 09:10:49 2007 -0500
75307     include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.
75309     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
75310     used to be included but CONFIG_BOOTP_MASK was not defined.
75312     Remove lingering references to CFG_CMD_* symbols.
75314     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75316 commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b
75317 Author: Jon Loeliger <jdl@freescale.com>
75318 Date:   Tue Jul 10 09:02:57 2007 -0500
75320     include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.
75322     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
75323     used to be included but CONFIG_BOOTP_MASK was not defined.
75325     Remove lingering references to CFG_CMD_* symbols.
75327     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75329 commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3
75330 Author: Jon Loeliger <jdl@freescale.com>
75331 Date:   Mon Jul 9 22:08:34 2007 -0500
75333     Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!
75335     All of the choices for CONFIG_BOOTP_ are now documented in
75336     the README file.  You must now individually select exactly
75337     the set that you want using a series of
75338         #define CONFIG_BOOTP_<x>
75339     statements in the board port config files now.
75341     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75343 commit d3b8c1a743dcd31625c99e6a44590f207eb00028
75344 Author: Jon Loeliger <jdl@freescale.com>
75345 Date:   Mon Jul 9 21:57:31 2007 -0500
75347     include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
75349     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75351 commit 2fd90ce575b02d189cbf443c85309bcd001aa393
75352 Author: Jon Loeliger <jdl@freescale.com>
75353 Date:   Mon Jul 9 21:48:26 2007 -0500
75355     include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
75357     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75359 commit 37d4bb70586659dedef1658ce1bed071be098aec
75360 Author: Jon Loeliger <jdl@freescale.com>
75361 Date:   Mon Jul 9 21:38:02 2007 -0500
75363     include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
75365     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75367 commit 18225e8dd1950bd6dbf35011e436db7f474c187d
75368 Author: Jon Loeliger <jdl@freescale.com>
75369 Date:   Mon Jul 9 21:31:24 2007 -0500
75371     include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
75373     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75375 commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d
75376 Author: Jon Loeliger <jdl@freescale.com>
75377 Date:   Mon Jul 9 21:24:19 2007 -0500
75379     include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
75381     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75383 commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f
75384 Author: Jon Loeliger <jdl@freescale.com>
75385 Date:   Mon Jul 9 21:16:53 2007 -0500
75387     include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
75389     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75391 commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3
75392 Author: Jon Loeliger <jdl@freescale.com>
75393 Date:   Mon Jul 9 19:12:30 2007 -0500
75395     Retire CONFIG_COMMANDS finally.
75396     Strip old CFG_CMD_* symbols out.
75398     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75400 commit b5501f7d720fed99ab0b42c83f5dea52868ce007
75401 Author: Jon Loeliger <jdl@freescale.com>
75402 Date:   Mon Jul 9 19:10:03 2007 -0500
75404     Update README.* to reference new CONFIG_CMD_* names now.
75406     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75408 commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9
75409 Author: Jon Loeliger <jdl@freescale.com>
75410 Date:   Mon Jul 9 19:06:00 2007 -0500
75412     cpu/m*: Remove obsolete references to CONFIG_COMMANDS
75414     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75416 commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa
75417 Author: Jon Loeliger <jdl@freescale.com>
75418 Date:   Mon Jul 9 18:57:22 2007 -0500
75420     cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS
75422     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75424 commit ab3abcbabd840928fb1eb5122118ca466b5e5013
75425 Author: Jon Loeliger <jdl@freescale.com>
75426 Date:   Mon Jul 9 18:45:16 2007 -0500
75428     board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS
75430     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75432 commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9
75433 Author: Jon Loeliger <jdl@freescale.com>
75434 Date:   Mon Jul 9 18:38:39 2007 -0500
75436     board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS
75438     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75440 commit c508a4cefd8a953fc64957650506a035e6e3d9d1
75441 Author: Jon Loeliger <jdl@freescale.com>
75442 Date:   Mon Jul 9 18:31:28 2007 -0500
75444     board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
75446     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75448 commit b9307262f8a9f3b5c9e15a6067eadc17407146f6
75449 Author: Jon Loeliger <jdl@freescale.com>
75450 Date:   Mon Jul 9 18:24:55 2007 -0500
75452     board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS
75454     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75456 commit fcec2eb93e126400009729328e797f12bc94f1fd
75457 Author: Jon Loeliger <jdl@freescale.com>
75458 Date:   Mon Jul 9 18:19:09 2007 -0500
75460     board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS
75462     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75464 commit a593814f2be0c9cdc3133cd550b167b8a988328f
75465 Author: Jon Loeliger <jdl@freescale.com>
75466 Date:   Mon Jul 9 18:10:50 2007 -0500
75468     rtc/: Remove obsolete references to CONFIG_COMMANDS
75470     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75472 commit 67350568f9d46e66c21829f3513b3db0caeb948b
75473 Author: Jon Loeliger <jdl@freescale.com>
75474 Date:   Mon Jul 9 18:05:38 2007 -0500
75476     lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS
75478     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75480 commit 7def6b34f910f08d7ef0a14646da067719237ca2
75481 Author: Jon Loeliger <jdl@freescale.com>
75482 Date:   Mon Jul 9 18:02:11 2007 -0500
75484     lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
75486     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75488 commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb
75489 Author: Jon Loeliger <jdl@freescale.com>
75490 Date:   Mon Jul 9 17:56:50 2007 -0500
75492     fs/: Remove obsolete references to CONFIG_COMMANDS
75494     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75496 commit c91898bbc505aff3e12a807af88e76da18efb7ee
75497 Author: Jon Loeliger <jdl@freescale.com>
75498 Date:   Mon Jul 9 17:46:09 2007 -0500
75500     tools/: Remove obsolete references to CONFIG_COMMANDS
75502     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75504 commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01
75505 Author: Jon Loeliger <jdl@freescale.com>
75506 Date:   Mon Jul 9 17:45:14 2007 -0500
75508     net/: Remove obsolete references to CONFIG_COMMANDS
75510     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75512 commit cb51c0bf88f95a1bca68324b0126f8eed8b43273
75513 Author: Jon Loeliger <jdl@freescale.com>
75514 Date:   Mon Jul 9 17:39:42 2007 -0500
75516     drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS
75518     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75520 commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b
75521 Author: Jon Loeliger <jdl@freescale.com>
75522 Date:   Mon Jul 9 17:30:01 2007 -0500
75524     drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS
75526     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75528 commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29
75529 Author: Jon Loeliger <jdl@freescale.com>
75530 Date:   Mon Jul 9 17:22:37 2007 -0500
75532     disk/: Remove obsolete references to CONFIG_COMMANDS
75534     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75536 commit 639221c76c88215bd55af83ad174fc30d1940f8f
75537 Author: Jon Loeliger <jdl@freescale.com>
75538 Date:   Mon Jul 9 17:15:49 2007 -0500
75540     include/: Remove obsolete references to CONFIG_COMMANDS
75541     Mostly removed from comments here.
75543     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75545 commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876
75546 Author: Wolfgang Denk <wd@denx.de>
75547 Date:   Tue Jul 10 00:01:28 2007 +0200
75549     Coding style cleanup; update CHANGELOG.
75551     Signed-off-by: Wolfgang Denk <wd@denx.de>
75553 commit c8603cfbd4573379a6076c9c208545ba2bbf019a
75554 Author: Stefan Roese <sr@denx.de>
75555 Date:   Mon Jul 9 11:00:24 2007 +0200
75557     Small coding style cleanup
75559     Signed-off-by: Stefan Roese <sr@denx.de>
75561 commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc
75562 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
75563 Date:   Mon Jul 9 10:10:08 2007 +0200
75565     Migrate esd 405EP boards to new NAND subsystem
75567     Remove unused CFG_NAND_LEGACY define
75569     These boards to not have NAND.
75571     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
75573 commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803
75574 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
75575 Date:   Mon Jul 9 10:10:06 2007 +0200
75577     Migrate esd 405EP boards to new NAND subsystem
75579     Migrate esd 405EP boards to new NAND subsystem
75581     -cleanup
75582     -use correct io accessors (in/out_be32())
75584     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
75586 commit e09f7ab5749c345f924da272bea0521a73af5b11
75587 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
75588 Date:   Mon Jul 9 10:10:04 2007 +0200
75590     Migrate esd 405EP boards to new NAND subsystem
75592     This patch prepares the migration from the legacy NAND driver
75593     to U-Boot's new NAND subsystem for esd boards.
75595     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
75597 commit c3517f919d0f61650cf3027fd4faf0f631142f6c
75598 Author: Jon Loeliger <jdl@freescale.com>
75599 Date:   Sun Jul 8 18:10:08 2007 -0500
75601     common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
75603     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75605 commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39
75606 Author: Jon Loeliger <jdl@freescale.com>
75607 Date:   Sun Jul 8 18:05:39 2007 -0500
75609     common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS.
75611     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75613 commit c76fe47425afc7d5d670ff0539823c85d65d9c42
75614 Author: Jon Loeliger <jdl@freescale.com>
75615 Date:   Sun Jul 8 18:02:23 2007 -0500
75617     common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.
75619     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75621 commit baa26db4113679b80970ff447d91cc10217742a6
75622 Author: Jon Loeliger <jdl@freescale.com>
75623 Date:   Sun Jul 8 17:51:39 2007 -0500
75625     common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS.
75627     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75629 commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd
75630 Author: Jon Loeliger <jdl@freescale.com>
75631 Date:   Sun Jul 8 17:02:01 2007 -0500
75633     Clear up confusion over the CMD_POST and POST_DIAG mess.
75635     For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG
75636     when it really means just CONFIG_CMD_DIAG.  There is no CMD_POST.
75637     Clear this mess up some.
75639     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75641 commit b3631487105a57ab7cbadfc26efbaf9676275018
75642 Author: Jon Loeliger <jdl@freescale.com>
75643 Date:   Sun Jul 8 15:45:08 2007 -0500
75645     Remove references to the old cmd_confdefs.h include file.
75647     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75649 commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6
75650 Author: Jon Loeliger <jdl@freescale.com>
75651 Date:   Sun Jul 8 15:42:59 2007 -0500
75653     include/configs: Catch some CONFIG_CMD_* conversion stragglers.
75655     Use new CONFIG_CMD_* in lwmon5.h board config file.
75656     Fix CONFIG_CMD_* typo braindamage in omap1510inn.h
75658     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75660 commit a5562901661bd428f7e5feb333f796372cb81019
75661 Author: Jon Loeliger <jdl@freescale.com>
75662 Date:   Sun Jul 8 15:31:57 2007 -0500
75664     include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files.
75666     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75668 commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e
75669 Author: Jon Loeliger <jdl@freescale.com>
75670 Date:   Sun Jul 8 15:02:44 2007 -0500
75672     include/configs: Use new CONFIG_CMD_* in various S* named board config files.
75674     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75676 commit e9a0f8f15c11f337967aa0600ad6e8af33037f50
75677 Author: Jon Loeliger <jdl@freescale.com>
75678 Date:   Sun Jul 8 15:12:40 2007 -0500
75680     include/configs: Use new CONFIG_CMD_* in various R* named board config files.
75682     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75684 commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f
75685 Author: Jon Loeliger <jdl@freescale.com>
75686 Date:   Sun Jul 8 14:55:07 2007 -0500
75688     include/configs: Use new CONFIG_CMD_* in various Q* named board config files.
75690     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75692 commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e
75693 Author: Jon Loeliger <jdl@freescale.com>
75694 Date:   Sun Jul 8 14:49:44 2007 -0500
75696     include/configs: Use new CONFIG_CMD_* in various P* named board config files.
75698     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75700 commit e18a1061a8630cb67995fdf99afd3fb50d1b187d
75701 Author: Jon Loeliger <jdl@freescale.com>
75702 Date:   Sun Jul 8 14:21:43 2007 -0500
75704     include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files.
75706     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75708 commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2
75709 Author: Jon Loeliger <jdl@freescale.com>
75710 Date:   Sun Jul 8 14:14:17 2007 -0500
75712     include/configs: Use new CONFIG_CMD_* in various M* named board config files.
75714     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75716 commit 348f258f24253433e4a2302a0bbceb6740a67246
75717 Author: Jon Loeliger <jdl@freescale.com>
75718 Date:   Sun Jul 8 13:46:18 2007 -0500
75720     include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
75722     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75724 commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a
75725 Author: Jon Loeliger <jdl@freescale.com>
75726 Date:   Sun Jul 8 10:09:35 2007 -0500
75728     include/configs: Use new CONFIG_CMD_* in various H* named board config files.
75730     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75732 commit 60a0876b5106b34220e459c208bbf648073306c0
75733 Author: Jon Loeliger <jdl@freescale.com>
75734 Date:   Sat Jul 7 21:04:26 2007 -0500
75736     include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files.
75738     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75740 commit dcaa71562826a2466e894c868d132509dcda8444
75741 Author: Jon Loeliger <jdl@freescale.com>
75742 Date:   Sat Jul 7 20:56:05 2007 -0500
75744     include/configs: Use new CONFIG_CMD_* in various E* named board config files.
75746     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75748 commit 3c3227f3c737502311b25b72084573901cbbf17d
75749 Author: Jon Loeliger <jdl@freescale.com>
75750 Date:   Sat Jul 7 20:40:43 2007 -0500
75752     include/configs: Use new CONFIG_CMD_* in various D* named board config files.
75754     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75756 commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c
75757 Author: Jon Loeliger <jdl@freescale.com>
75758 Date:   Thu Jul 5 19:52:35 2007 -0500
75760     include/configs: Use new CONFIG_CMD_* in various C* named board config files.
75762     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75764 commit de8b2a6e33298dcdb10bdda48db25e53c3089eba
75765 Author: Jon Loeliger <jdl@freescale.com>
75766 Date:   Thu Jul 5 19:32:07 2007 -0500
75768     include/configs: Use new CONFIG_CMD_* in various B* named board config files.
75770     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75772 commit 498ff9a228485bd4b9f23d066bada268f9add1dd
75773 Author: Jon Loeliger <jdl@freescale.com>
75774 Date:   Thu Jul 5 19:13:52 2007 -0500
75776     include/configs: Use new CONFIG_CMD_* in various A* named board config files.
75778     Since ADS860.h includes "board/fads/fads.h" with ramifications
75779     on the CONFIG_COMMAND treatment, it too has to be adjusted to
75780     exclude already configured commands in this same commit.
75782     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75784 commit 10e038932f22ee80ebd53de312531e70e6590a2f
75785 Author: Thomas Knobloch <knobloch@siemens.com>
75786 Date:   Fri Jul 6 14:58:39 2007 +0200
75788     [NAND] Bad block skipping for command nboot
75790     The old implementation of command nboot does not support reading the image from
75791     NAND flash with skipping of bad blocks. The patch implements a new version of
75792     the nboot command: by calling nboot.jffs2 from the u-boot command line the
75793     command will load the image from NAND flash with respect to bad blocks (by using
75794     nand_read_opts()). This is similar to e.g. the NAND read command: "nand
75795     read.jffs2 ...".
75797     Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
75798     Signed-off-by: Stefan Roese <sr@denx.de>
75800 commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f
75801 Author: Stefan Roese <sr@denx.de>
75802 Date:   Fri Jul 6 12:26:51 2007 +0200
75804     ppc4xx: Update lwmon5 default environment
75806     Signed-off-by: Stefan Roese <sr@denx.de>
75808 commit 5d187430a055d62f17ca84d75e7245439d1f7e75
75809 Author: Stefan Roese <sr@denx.de>
75810 Date:   Fri Jul 6 11:48:24 2007 +0200
75812     ppc4xx: Update lwmon5 board
75814     Add unlock=yes environment variable to default variables to unlock
75815     the CFI flash by default.
75817     Signed-off-by: Stefan Roese <sr@denx.de>
75819 commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e
75820 Author: Stefan Roese <sr@denx.de>
75821 Date:   Fri Jul 6 09:45:47 2007 +0200
75823     Fix problem with get/setdcr commands introduced by cfg patches
75825     Signed-off-by: Stefan Roese <sr@denx.de>
75827 commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f
75828 Author: Wolfgang Denk <wd@denx.de>
75829 Date:   Fri Jul 6 02:50:19 2007 +0200
75831     Code cleanup and default config update for STC GP3 SSA board.
75833     Signed-off-by: Wolfgang Denk <wd@denx.de>
75835 commit e4dbe1b215f5c6c462e76909d240bd96472b84de
75836 Author: Wolfgang Denk <wd@denx.de>
75837 Date:   Thu Jul 5 17:56:27 2007 +0200
75839     Fixing some typos etc. introduced mainly by cfg patches.
75841     Signed-off-by: Wolfgang Denk <wd@denx.de>
75843 commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd
75844 Author: Wolfgang Denk <wd@denx.de>
75845 Date:   Thu Jul 5 11:12:16 2007 +0200
75847     Minor coding style cleanup. Update CHANGELOG.
75849 commit dca3b3d6d6396b67e5e84af53452164923c73443
75850 Author: Jon Loeliger <jdl@jdl.com>
75851 Date:   Wed Jul 4 22:33:46 2007 -0500
75853     include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
75855     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75857 commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7
75858 Author: Jon Loeliger <jdl@jdl.com>
75859 Date:   Wed Jul 4 22:33:38 2007 -0500
75861     include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
75863     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75865 commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76
75866 Author: Jon Loeliger <jdl@jdl.com>
75867 Date:   Wed Jul 4 22:33:30 2007 -0500
75869     include/configs: Use new CONFIG_CMD_* in various s* named board config files.
75871     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75873 commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8
75874 Author: Jon Loeliger <jdl@jdl.com>
75875 Date:   Wed Jul 4 22:33:23 2007 -0500
75877     include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files.
75879     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75881 commit 26a34560d56a9df5bc2ae23525d9229736134757
75882 Author: Jon Loeliger <jdl@jdl.com>
75883 Date:   Wed Jul 4 22:33:17 2007 -0500
75885     include/configs: Use new CONFIG_CMD_* in various p* named board config files.
75887     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75889 commit a5cb23092a7d31490a33d4ec871468b63babfa3c
75890 Author: Jon Loeliger <jdl@jdl.com>
75891 Date:   Wed Jul 4 22:33:13 2007 -0500
75893     include/configs: Use new CONFIG_CMD_* in various o* named board config files.
75895     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75897 commit 929a2bfd142737003a8fc32e1b86e1f2c1850257
75898 Author: Jon Loeliger <jdl@jdl.com>
75899 Date:   Wed Jul 4 22:33:07 2007 -0500
75901     include/configs: Use new CONFIG_CMD_* in various n* named board config files.
75903     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75905 commit 5dc11a511960d490f7f01ffd746edfe6277f99b0
75906 Author: Jon Loeliger <jdl@jdl.com>
75907 Date:   Wed Jul 4 22:33:01 2007 -0500
75909     include/configs: Use new CONFIG_CMD_* in various m* named board config files.
75911     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75913 commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4
75914 Author: Jon Loeliger <jdl@jdl.com>
75915 Date:   Wed Jul 4 22:32:57 2007 -0500
75917     include/configs: Use new CONFIG_CMD_* in various l* named board config files.
75919     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75921 commit bc234c129fa04fb9fa33530930e5cbc6084cd47a
75922 Author: Jon Loeliger <jdl@jdl.com>
75923 Date:   Wed Jul 4 22:32:51 2007 -0500
75925     include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
75927     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75929 commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31
75930 Author: Jon Loeliger <jdl@jdl.com>
75931 Date:   Wed Jul 4 22:32:32 2007 -0500
75933     include/configs: Use new CONFIG_CMD_* in various i* named board config files.
75935     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75937 commit 48d5d102a2f2e619c92050b9aedbb69689185bc0
75938 Author: Jon Loeliger <jdl@jdl.com>
75939 Date:   Wed Jul 4 22:32:25 2007 -0500
75941     include/configs: Use new CONFIG_CMD_* in various h* named board config files.
75943     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75945 commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36
75946 Author: Jon Loeliger <jdl@jdl.com>
75947 Date:   Wed Jul 4 22:32:19 2007 -0500
75949     include/configs: Use new CONFIG_CMD_* in various g* named board config files.
75951     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75953 commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e
75954 Author: Jon Loeliger <jdl@jdl.com>
75955 Date:   Wed Jul 4 22:32:10 2007 -0500
75957     include/configs: Use new CONFIG_CMD_* in various e* named board config files.
75959     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75961 commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4
75962 Author: Jon Loeliger <jdl@jdl.com>
75963 Date:   Wed Jul 4 22:32:03 2007 -0500
75965     include/configs: Use new CONFIG_CMD_* in various d* named board config files.
75967     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75969 commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b
75970 Author: Jon Loeliger <jdl@jdl.com>
75971 Date:   Wed Jul 4 22:31:56 2007 -0500
75973     include/configs: Use new CONFIG_CMD_* in various c* named board config files.
75975     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75977 commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264
75978 Author: Jon Loeliger <jdl@jdl.com>
75979 Date:   Wed Jul 4 22:31:49 2007 -0500
75981     include/configs: Use new CONFIG_CMD_* in various b* named board config files.
75983     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75985 commit 0b361c916617aff79e647b40f0e43361e0bbaccf
75986 Author: Jon Loeliger <jdl@jdl.com>
75987 Date:   Wed Jul 4 22:31:42 2007 -0500
75989     include/configs: Use new CONFIG_CMD_* in various a* named board config files.
75991     Signed-off-by: Jon Loeliger <jdl@freescale.com>
75993 commit b730cda82e362df6a22f4c59c0a9b97e885b1014
75994 Author: Jon Loeliger <jdl@jdl.com>
75995 Date:   Wed Jul 4 22:31:35 2007 -0500
75997     include/configs: Use new CONFIG_CMD_* in mpc5xx board config files.
75999     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76001 commit d794cfefead5fc177cf4f41164e80382e9c9484a
76002 Author: Jon Loeliger <jdl@jdl.com>
76003 Date:   Wed Jul 4 22:31:15 2007 -0500
76005     include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
76007     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76009 commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c
76010 Author: Jon Loeliger <jdl@jdl.com>
76011 Date:   Wed Jul 4 22:31:07 2007 -0500
76013     include/configs: Use new CONFIG_CMD_* in STx board config files.
76015     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76017 commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc
76018 Author: Jon Loeliger <jdl@jdl.com>
76019 Date:   Wed Jul 4 22:30:58 2007 -0500
76021     include/configs: Use new CONFIG_CMD_* in sbc* board config files.
76023     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76025 commit 2694690e285acaa34922f55f4b5ae030da60c55a
76026 Author: Jon Loeliger <jdl@jdl.com>
76027 Date:   Wed Jul 4 22:30:50 2007 -0500
76029     include/configs: Use new CONFIG_CMD_* in TQM board config files.
76031     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76033 commit 1cc4c458329765b58e584a19821e796b3c10e976
76034 Author: Jon Loeliger <jdl@jdl.com>
76035 Date:   Wed Jul 4 22:30:28 2007 -0500
76037     include/configs: Use new CONFIG_CMD_* in 82xx board config files.
76039     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76041 commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e
76042 Author: Jon Loeliger <jdl@jdl.com>
76043 Date:   Wed Jul 4 22:30:06 2007 -0500
76045     include/configs: Use new CONFIG_CMD_* in 83xx board config files.
76047     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76049 commit b44896215a09c60fa40cae906f7ed207bbc2c492
76050 Author: Sergei Poselenov <sposelenov@emcraft.com>
76051 Date:   Thu Jul 5 08:17:37 2007 +0200
76053     Merged POST framework with the current TOT.
76055     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
76057 commit b24629fa377214d63bb40d1360e354b6d3e4af56
76058 Author: Jon Loeliger <jdl@jdl.com>
76059 Date:   Wed Jun 13 13:23:15 2007 -0500
76061     mpc86xx: Remove old CFG_CMD_* references.
76063     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76065 commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a
76066 Author: Jon Loeliger <jdl@jdl.com>
76067 Date:   Wed Jun 13 13:22:54 2007 -0500
76069     Add MPC8568MDS to MAKEALL 85xx target.
76071     It was missing from the original port submission.
76073     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76075 commit 2835e518c969e5124ba1174eef3e8375e12fa7d5
76076 Author: Jon Loeliger <jdl@jdl.com>
76077 Date:   Wed Jun 13 13:22:08 2007 -0500
76079     include/configs: Use new CONFIG_CMD_* in 85xx board config files.
76081     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76083 commit 56b304ac2091689506088a9ae67f63fd6300cf16
76084 Author: Jon Loeliger <jdl@jdl.com>
76085 Date:   Wed Jun 13 13:21:37 2007 -0500
76087     Fix #if typo in CONFIG_CMD_* changes.
76089     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76091 commit f780b83316d9af1f61d71cc88b1917b387b9b995
76092 Author: Niklaus Giger <niklausgiger@gmx.ch>
76093 Date:   Wed Jun 27 18:11:38 2007 +0200
76095     resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
76097     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
76099 commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4
76100 Author: Stefan Roese <sr@denx.de>
76101 Date:   Wed Jul 4 10:06:30 2007 +0200
76103     ppc4xx: Update lwmon5 board
76105     - Add optional ECC generation routine to preserve existing
76106       RAM values. This is needed for the Linux log-buffer support
76107     - Add optional DDR2 setup with CL=4
76108     - GPIO50 not used anymore
76109     - Lime register setup added
76111     Signed-off-by: Stefan Roese <sr@denx.de>
76113 commit 6810a34677dbc446334f5e451f1682426dd33b49
76114 Author: Grant Likely <grant.likely@secretlab.ca>
76115 Date:   Tue Jul 3 00:17:28 2007 -0600
76117     Fix Makefile to use $(MKCONFIG) macro for all board ports
76119     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76121 commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926
76122 Author: Grant Likely <grant.likely@secretlab.ca>
76123 Date:   Tue Jul 3 00:17:28 2007 -0600
76125     Fix Makefile to use $(MKCONFIG) macro for all board ports
76127     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76129 commit 057004f4a4863554d56cc56268bfa7c7d9738e27
76130 Author: Grant Likely <grant.likely@secretlab.ca>
76131 Date:   Tue Jul 3 00:34:49 2007 -0600
76133     Correct fixup relocation for mpc83xx
76135     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76137 commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96
76138 Author: Grant Likely <grant.likely@secretlab.ca>
76139 Date:   Tue Jul 3 00:34:44 2007 -0600
76141     Correct fixup relocation for mpc8260
76143     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76145 commit f3a52fe05923935db86985daf9438e2f70ac39aa
76146 Author: Grant Likely <grant.likely@secretlab.ca>
76147 Date:   Tue Jul 3 00:34:39 2007 -0600
76149     Correct fixup relocation for mpc824x
76151     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76153 commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00
76154 Author: Grant Likely <grant.likely@secretlab.ca>
76155 Date:   Tue Jul 3 00:34:34 2007 -0600
76157     Correct fixup relocation for mpc8220
76159     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76161 commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90
76162 Author: Grant Likely <grant.likely@secretlab.ca>
76163 Date:   Tue Jul 3 00:34:29 2007 -0600
76165     Correct fixup relocation for MPC5xxx
76167     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76169 commit 3649cd99ba815b6601868735765602f00ef3692b
76170 Author: Grant Likely <grant.likely@secretlab.ca>
76171 Date:   Tue Jul 3 00:34:24 2007 -0600
76173     Correct relocation fixup for mpc5xx
76175     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76177 commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325
76178 Author: Grant Likely <grant.likely@secretlab.ca>
76179 Date:   Tue Jul 3 00:34:19 2007 -0600
76181     Don't set gd->reloc_off if relocation of .fixup works correctly
76183     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76185 commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28
76186 Author: Grant Likely <grant.likely@secretlab.ca>
76187 Date:   Tue Jul 3 00:34:14 2007 -0600
76189     Remove obsolete mpc83xx linker scripts
76191     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76193 commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b
76194 Author: Grant Likely <grant.likely@secretlab.ca>
76195 Date:   Tue Jul 3 00:34:09 2007 -0600
76197     Consolidate mpc8260 linker scripts
76199     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76201 commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0
76202 Author: Grant Likely <grant.likely@secretlab.ca>
76203 Date:   Tue Jul 3 00:34:04 2007 -0600
76205     Remove obsolete mpc824x linker scripts
76207     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76209 commit f94a3aecebc40ca0939c7d66d010009cf51be9e2
76210 Author: Grant Likely <grant.likely@secretlab.ca>
76211 Date:   Tue Jul 3 00:33:59 2007 -0600
76213     Remove obsolete mpc824x linker scripts (3 of 4)
76215     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76217 commit a71c084f3ac7fedf144537db2b2da47323068833
76218 Author: Grant Likely <grant.likely@secretlab.ca>
76219 Date:   Tue Jul 3 00:33:53 2007 -0600
76221     Remove obsolete mpc824x linker scripts (2 of 4)
76223     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76225 commit f670a15468d1365241d40022b9408e1004181f5e
76226 Author: Grant Likely <grant.likely@secretlab.ca>
76227 Date:   Tue Jul 3 00:33:48 2007 -0600
76229     Remove obsolete mpc824x linker scripts (1 of 4)
76231     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76233 commit 09555bd45a04c0e54f172528d21bc18896550d28
76234 Author: Grant Likely <grant.likely@secretlab.ca>
76235 Date:   Tue Jul 3 00:33:43 2007 -0600
76237     Remove obsolete mpc8220 linker scripts
76239     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76241 commit 5efb992f046e51225c93d52f80fecbe433abd789
76242 Author: Grant Likely <grant.likely@secretlab.ca>
76243 Date:   Tue Jul 3 00:33:38 2007 -0600
76245     Remove obsolete mpc5xxx linker scripts (3 of 3)
76247     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76249 commit 07c13dfef65b31647e69d8b61daa1eec598add1a
76250 Author: Grant Likely <grant.likely@secretlab.ca>
76251 Date:   Tue Jul 3 00:33:33 2007 -0600
76253     Remove obsolete mpc5xxx linker scripts (2 of 3)
76255     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76257 commit b4f67513a624ce85866c66c575bd2d9d7977d7f0
76258 Author: Grant Likely <grant.likely@secretlab.ca>
76259 Date:   Tue Jul 3 00:33:28 2007 -0600
76261     Remove obsolete mpc5xxx linker scripts (1 of 3)
76263     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76265 commit b7d8e05f8675249b5f208aa73babeed384a4519d
76266 Author: Grant Likely <grant.likely@secretlab.ca>
76267 Date:   Tue Jul 3 00:33:23 2007 -0600
76269     Remove obsolete mpc5xx linker scripts
76271     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76273 commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7
76274 Author: Grant Likely <grant.likely@secretlab.ca>
76275 Date:   Tue Jul 3 00:33:18 2007 -0600
76277     Consolidate mpc83xx linker scripts
76279     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76281 commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365
76282 Author: Grant Likely <grant.likely@secretlab.ca>
76283 Date:   Tue Jul 3 00:33:13 2007 -0600
76285     Consolidate mpc8260 linker scripts
76287     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76289 commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207
76290 Author: Grant Likely <grant.likely@secretlab.ca>
76291 Date:   Tue Jul 3 00:33:08 2007 -0600
76293     Consolidate mpc824x linker scripts
76295     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76297 commit 9c757b789a59a855db57b448dd825329c4e9c4a0
76298 Author: Grant Likely <grant.likely@secretlab.ca>
76299 Date:   Tue Jul 3 00:33:03 2007 -0600
76301     Consolidate mpc8220 linker scripts
76303     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76305 commit d181c9a15cd41863fe24840d17848429f27d3c8c
76306 Author: Grant Likely <grant.likely@secretlab.ca>
76307 Date:   Tue Jul 3 00:32:58 2007 -0600
76309     Consolidate mpc5xxx linker scripts
76311     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76313 commit 287ac924adb7291bebe5086652a362a30ab28b13
76314 Author: Grant Likely <grant.likely@secretlab.ca>
76315 Date:   Tue Jul 3 00:32:53 2007 -0600
76317     Consolidate mpc5xx linker scripts
76319     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76321 commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd
76322 Author: Wolfgang Denk <wd@denx.de>
76323 Date:   Wed Jul 4 00:43:53 2007 +0200
76325     Fix a few file permission problems.
76327     Signed-off-by: Wolfgang Denk <wd@denx.de>
76329 commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c
76330 Author: Wolfgang Denk <wd@denx.de>
76331 Date:   Wed Jul 4 00:38:38 2007 +0200
76333     Minor coding style cleanup. Rebuild CHANGELOG file.
76335 commit 2f9c19e496acb6bb50d9299e1aab377625d48c38
76336 Author: Jon Loeliger <jdl@jdl.com>
76337 Date:   Mon Jun 11 19:03:44 2007 -0500
76339     configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style.
76341     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76343 commit 602ad3b33d9ceef83dbab46be68646d645d637ee
76344 Author: Jon Loeliger <jdl@jdl.com>
76345 Date:   Mon Jun 11 19:03:39 2007 -0500
76347     README: Rewrite command line config to use CONFIG_CMD_* names.
76349     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76351 commit 72a074cec68e5bad60d63206c050974e08afd804
76352 Author: Jon Loeliger <jdl@jdl.com>
76353 Date:   Mon Jun 11 19:03:34 2007 -0500
76355     include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76357     This is a compatibility step that allows both the older form
76358     and the new form to co-exist for a while until the older can
76359     be removed entirely.
76361     All transformations are of the form:
76362     Before:
76363         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76364     After:
76365         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76367     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76369 commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b
76370 Author: Jon Loeliger <jdl@jdl.com>
76371 Date:   Mon Jun 11 19:03:28 2007 -0500
76373     tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76375     This is a compatibility step that allows both the older form
76376     and the new form to co-exist for a while until the older can
76377     be removed entirely.
76379     All transformations are of the form:
76380     Before:
76381         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76382     After:
76383         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76385     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76387 commit 9107ebe0d352420895ab69b715697bdebc8caf50
76388 Author: Jon Loeliger <jdl@jdl.com>
76389 Date:   Mon Jun 11 19:03:23 2007 -0500
76391     board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76393     This is a compatibility step that allows both the older form
76394     and the new form to co-exist for a while until the older can
76395     be removed entirely.
76397     All transformations are of the form:
76398     Before:
76399         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76400     After:
76401         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76403     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76405 commit 5e378003d592ea828ec69d6defcd4de79096dd5c
76406 Author: Jon Loeliger <jdl@jdl.com>
76407 Date:   Mon Jun 11 19:03:19 2007 -0500
76409     board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76411     This is a compatibility step that allows both the older form
76412     and the new form to co-exist for a while until the older can
76413     be removed entirely.
76415     All transformations are of the form:
76416     Before:
76417         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76418     After:
76419         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76421     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76423 commit 737184114ec9c9e0ab94d6713536126073bd2472
76424 Author: Jon Loeliger <jdl@jdl.com>
76425 Date:   Mon Jun 11 19:03:15 2007 -0500
76427     cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76429     This is a compatibility step that allows both the older form
76430     and the new form to co-exist for a while until the older can
76431     be removed entirely.
76433     All transformations are of the form:
76434     Before:
76435         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76436     After:
76437         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76439     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76441 commit f48070fe5fe440dfb5ee5268c920de70e48ea327
76442 Author: Jon Loeliger <jdl@jdl.com>
76443 Date:   Mon Jun 11 19:03:08 2007 -0500
76445     cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76447     This is a compatibility step that allows both the older form
76448     and the new form to co-exist for a while until the older can
76449     be removed entirely.
76451     All transformations are of the form:
76452     Before:
76453         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76454     After:
76455         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76457     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76459 commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2
76460 Author: Jon Loeliger <jdl@jdl.com>
76461 Date:   Mon Jun 11 19:03:03 2007 -0500
76463     lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76465     This is a compatibility step that allows both the older form
76466     and the new form to co-exist for a while until the older can
76467     be removed entirely.
76469     All transformations are of the form:
76470     Before:
76471         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76472     After:
76473         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76475     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76477 commit 73f032021ec5f13cda8faa4e34b6de80960eb86f
76478 Author: Jon Loeliger <jdl@jdl.com>
76479 Date:   Mon Jun 11 19:02:58 2007 -0500
76481     lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76483     This is a compatibility step that allows both the older form
76484     and the new form to co-exist for a while until the older can
76485     be removed entirely.
76487     All transformations are of the form:
76488     Before:
76489         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76490     After:
76491         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76493     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76495 commit 98b79003c21c2578206003256de4e781d6b36ca8
76496 Author: Jon Loeliger <jdl@jdl.com>
76497 Date:   Mon Jun 11 19:02:53 2007 -0500
76499     rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76501     This is a compatibility step that allows both the older form
76502     and the new form to co-exist for a while until the older can
76503     be removed entirely.
76505     All transformations are of the form:
76506     Before:
76507         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76508     After:
76509         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76511     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76513 commit 6e2115acb6a892d53a6881bf253ae41d3df39156
76514 Author: Jon Loeliger <jdl@jdl.com>
76515 Date:   Mon Jun 11 19:02:49 2007 -0500
76517     net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76519     This is a compatibility step that allows both the older form
76520     and the new form to co-exist for a while until the older can
76521     be removed entirely.
76523     All transformations are of the form:
76524     Before:
76525         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76526     After:
76527         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76529     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76531 commit 45cdb9b72c94655c7308b464a2666057c0b286e0
76532 Author: Jon Loeliger <jdl@jdl.com>
76533 Date:   Mon Jun 11 19:02:34 2007 -0500
76535     disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76537     This is a compatibility step that allows both the older form
76538     and the new form to co-exist for a while until the older can
76539     be removed entirely.
76541     All transformations are of the form:
76542     Before:
76543         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76544     After:
76545         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76547     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76549 commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a
76550 Author: Jon Loeliger <jdl@jdl.com>
76551 Date:   Mon Jun 11 19:02:20 2007 -0500
76553     fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76555     This is a compatibility step that allows both the older form
76556     and the new form to co-exist for a while until the older can
76557     be removed entirely.
76559     All transformations are of the form:
76560     Before:
76561         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76562     After:
76563         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76565     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76567 commit d5be43de93ff905c465e509d45a3164ef48d26e7
76568 Author: Jon Loeliger <jdl@jdl.com>
76569 Date:   Mon Jun 11 19:02:10 2007 -0500
76571     drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76573     This is a compatibility step that allows both the older form
76574     and the new form to co-exist for a while until the older can
76575     be removed entirely.
76577     All transformations are of the form:
76578     Before:
76579         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76580     After:
76581         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76583     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76585 commit b453960d4fdb87b3970d96119b90df2ed024fc4a
76586 Author: Jon Loeliger <jdl@jdl.com>
76587 Date:   Mon Jun 11 19:02:05 2007 -0500
76589     common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76591     This is a compatibility step that allows both the older form
76592     and the new form to co-exist for a while until the older can
76593     be removed entirely.
76595     All transformations are of the form:
76596     Before:
76597         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76598     After:
76599         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76601     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76603 commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0
76604 Author: Jon Loeliger <jdl@jdl.com>
76605 Date:   Mon Jun 11 19:01:54 2007 -0500
76607     common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76609     This is a compatibility step that allows both the older form
76610     and the new form to co-exist for a while until the older can
76611     be removed entirely.
76613     All transformations are of the form:
76614     Before:
76615         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76616     After:
76617         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76619     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76621 commit a76adc8142c1d956385a109e0b70f9319ede4d66
76622 Author: Jon Loeliger <jdl@jdl.com>
76623 Date:   Mon Jun 11 19:01:43 2007 -0500
76625     common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
76627     This is a compatibility step that allows both the older form
76628     and the new form to co-exist for a while until the older can
76629     be removed entirely.
76631     All transformations are of the form:
76632     Before:
76633         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
76634     After:
76635         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
76637     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76639 commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1
76640 Author: Jon Loeliger <jdl@jdl.com>
76641 Date:   Mon Jun 11 19:01:34 2007 -0500
76643     Introduce initial versions of new Command Config files.
76645     Derive three new files from cmd_confdefs.h:
76646         config_bootp.h - Has BOOTP related config options, not commands
76647         config_cmd_all.h - Has a CONFIG_CMD_* definition for every command
76648         config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds.
76650     For now, include "config_bootp.h" for compatability until all
76651     users of it directly include it properly.
76653     Signed-off-by: Jon Loeliger <jdl@freescale.com>
76655 commit 1f2a05898658900dc5717761e27abf2052e67e13
76656 Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in>
76657 Date:   Sat Jun 30 18:50:48 2007 +0200
76659     Fix S-ATA support.
76661     Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in>
76663 commit a5d71e290f3673269be8eefb4ec44f53412f9461
76664 Author: Heiko Schocher <hs@pollux.denx.de>
76665 Date:   Mon Jun 25 19:11:37 2007 +0200
76667     [PCS440EP]  get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
76669     Signed-off-by: Heiko Schocher <hs@denx.de>
76671 commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b
76672 Author: Niklaus Giger <niklaus.giger@nestal.com>
76673 Date:   Mon Jun 25 17:03:13 2007 +0200
76675     ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt
76677     This patch prints the DDR status registers upon machine check
76678     interrupt on the 440EPx/GRx. This can be useful especially when
76679     ECC support is enabled.
76681     I added some small changes to the original patch from Niklaus to
76682     make it compile clean.
76684     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
76685     Signed-off-by: Stefan Roese <sr@denx.de>
76687 commit 807018fb7faceb429ce0cb47baa2073746b33a4e
76688 Author: Niklaus Giger <niklaus.giger@nestal.com>
76689 Date:   Mon Jun 25 16:50:55 2007 +0200
76691     ppc4xx: Fix O=buildir builds
76693     This patch fixes the problem to assemble cpu/ppc4xx/start.S
76694     experienced last week where building failed having specified
76695     O=../build.sequoia.
76697     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
76699 commit 466fff1a7bb5fe764a06450626f6098219f446b8
76700 Author: Stefan Roese <sr@denx.de>
76701 Date:   Mon Jun 25 15:57:39 2007 +0200
76703     ppc4xx: Add pci_pre_init() for 405 boards
76705     This patch removes the CFG_PCI_PRE_INIT option completely, since
76706     it's not needed anymore with the patch from Matthias Fuchs with
76707     the "weak" pci_pre_init() implementation.
76709     Signed-off-by: Stefan Roese <sr@denx.de>
76711 commit 6f35c53166213c24a5a0e2390ed861136ff73870
76712 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
76713 Date:   Sun Jun 24 17:41:21 2007 +0200
76715     ppc4xx: Maintenance patch for esd's CPCI405 derivats
76717     -add pci_pre_init() for pci interrupt fixup code
76718     -disable phy sleep mode via reset_phy() function
76719     -use correct io accessors
76720     -cleanup
76722     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
76724 commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8
76725 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
76726 Date:   Sun Jun 24 17:23:41 2007 +0200
76728     ppc4xx: Add pci_pre_init() for 405 boards
76730     This patch adds support for calling a plattform dependant
76731     pci_pre_init() function for 405 boards. This can be used to
76732     move the current pci_405gp_fixup_irq() function into the
76733     board code.
76735     This patch also makes the CFG_PCI_PRE_INIT define obsolete.
76736     A default function with 'weak' attribute is used when
76737     a board specific pci_pre_init() is not implemented.
76739     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
76741 commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb
76742 Author: Wolfgang Denk <wd@denx.de>
76743 Date:   Fri Jun 22 23:59:00 2007 +0200
76745     Coding stylke cleanup; rebuild CHANGELOG
76747 commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9
76748 Author: Igor Lisitsin <igor@emcraft.com>
76749 Date:   Wed Apr 18 14:55:19 2007 +0400
76751     Adapt log buffer code to support Linux 2.6
76753     A new environment variable, "logversion", selects the log buffer
76754     behaviour. If it is not set or set to a value other than 2, then the
76755     old, Linux 2.4.4, behaviour is selected.
76757     Signed-off-by: Igor Lisitsin <igor@emcraft.com>
76758     --
76760 commit a11e06965ec91270c51853407ff1261d3c740386
76761 Author: Igor Lisitsin <igor@emcraft.com>
76762 Date:   Wed Mar 28 19:06:19 2007 +0400
76764     Extend POST support for PPC440
76766     Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
76768     Signed-off-by: Igor Lisitsin <igor@emcraft.com>
76769     --
76771 commit 566a494f592ae3b3c0785d90d4e1ba45574880c4
76772 Author: Heiko Schocher <hs@pollux.denx.de>
76773 Date:   Fri Jun 22 19:11:54 2007 +0200
76775     [PCS440EP]      upgrade the PCS440EP board:
76776                     - Show on the Status LEDs, some States of the board.
76777                     - Get the MAC addresses from the EEProm
76778                     - use PREBOOT
76779                     - use the CF on the board.
76780                     - check the U-Boot image in the Flash with a SHA1
76781                       checksum.
76782                     - use dynamic TLB entries generation for the SDRAM
76784     Signed-off-by: Heiko Schocher <hs@denx.de>
76786 commit 3a1f5c81b0b9557817a789bece839905581c2205
76787 Author: Stefan Roese <sr@denx.de>
76788 Date:   Fri Jun 22 16:58:40 2007 +0200
76790     ppc4xx: Fix problem with extended program_tlb() funtion
76792     The recently extended program_tlb() function had a problem when
76793     multiple TLB's had to be setup (for example with 512MB of SDRAM). The
76794     virtual address was not incremented. This patch fixes this issue
76795     and is tested on Katmai with 512MB SDRAM.
76797     Signed-off-by: Stefan Roese <sr@denx.de>
76799 commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f
76800 Author: Rafal Jaworowski <raj@semihalf.com>
76801 Date:   Fri Jun 22 14:58:04 2007 +0200
76803     [ppc] Fix build breakage for all non-4xx PowerPC variants.
76805     - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
76806     - minor 4xx cleanup
76808 commit d677b32855f577ae2690dcd64a172cdd706e0ffc
76809 Author: Mike Frysinger <vapier@gentoo.org>
76810 Date:   Fri Jun 22 10:34:12 2007 +0200
76812     [patch] add nand_init() prototype to nand.h
76814     since nand_init() is expected to be called by other parts of u-boot, there
76815     should be a prototype for it in nand.h
76817     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
76818     Signed-off-by: Stefan Roese <sr@denx.de>
76820 commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b
76821 Author: Wolfgang Denk <wd@denx.de>
76822 Date:   Wed Jun 20 18:14:24 2007 +0200
76824     Coding style cleanup. Refresh CHANGELOG.
76826 commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024
76827 Author: Stefan Roese <sr@denx.de>
76828 Date:   Tue Jun 19 17:22:44 2007 +0200
76830     ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
76832     This patch adds a board command to configure the I2C bootstrap EEPROM
76833     values. Right now 533 and 667MHz are supported for booting either via NOR
76834     or NAND FLASH. Here the usage:
76836     => bootstrap 533 nor        ;to configure the board for 533MHz NOR booting
76837     => bootstrap 667 nand       ;to configure the board for 667MHz NNAND booting
76839     Signed-off-by: Stefan Roese <sr@denx.de>
76841 commit df8a24cdd30151505cf57bbee5289e91bf53bd1b
76842 Author: Stefan Roese <sr@denx.de>
76843 Date:   Tue Jun 19 16:42:31 2007 +0200
76845     [ppc4xx] Fix problem with NAND booting on AMCC Acadia
76847     The latest changes showed a problem with the location of the NAND-SPL
76848     image in the OCM and the init-data area (incl. cache). This patch
76849     fixes this problem.
76851     Signed-off-by: Stefan Roese <sr@denx.de>
76853 commit 86ba99e34194394052d24c04dc40d1263d29a26f
76854 Author: Stefan Roese <sr@denx.de>
76855 Date:   Tue Jun 19 16:40:58 2007 +0200
76857     [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c
76859     Signed-off-by: Stefan Roese <sr@denx.de>
76861 commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658
76862 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
76863 Date:   Mon Jun 18 13:50:13 2007 -0500
76865     Added M5329AFEE and M5329BFEE Platforms
76867     Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
76868     drivers/serial,  immap_5329.h, m5329.h, mcfrtc.h,
76869     include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
76870     rtc/mcfrtc.c
76872     Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
76873     common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
76874     include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
76875     include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
76876     include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
76877     lib_m68k/time.c, net/eth.c and rtc/Makefile
76879     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
76881 commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27
76882 Author: Michal Simek <monstr@monstr.eu>
76883 Date:   Sun Jun 17 19:04:11 2007 +0200
76885     [fix] email reparation
76887 commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc
76888 Author: Michal Simek <monstr@monstr.eu>
76889 Date:   Sun Jun 17 19:03:21 2007 +0200
76891     [FIX] fix microblaze file permitission
76893 commit e73846b7cf1e29ae635bf9bb5570269663df2ee5
76894 Author: Stefan Roese <sr@denx.de>
76895 Date:   Fri Jun 15 11:33:41 2007 +0200
76897     [ppc4xx] Change lwmon5 port to work with recent 440 exception rework
76899     Now CONFIG_440 has to be defined in all PPC440 board config files.
76901     Signed-off-by: Stefan Roese <sr@denx.de>
76903 commit efa35cf12d914d4caba942acd5a6c45f217de302
76904 Author: Grzegorz Bernacki <gjb@semihalf.com>
76905 Date:   Fri Jun 15 11:19:28 2007 +0200
76907     ppc4xx: Clean up 440 exceptions handling
76909     - Introduced dedicated switches for building 440 and 405 images required
76910       for 440-specific machine instructions like 'rfmci' etc.
76912     - Exception vectors moved to the proper location (_start moved away from
76913       the critical exception handler space, which it occupied)
76915     - CriticalInput now serviced (with default handler)
76917     - MachineCheck properly serviced (added a dedicated handler and return
76918       subroutine)
76920     - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused,
76921       unhandled and those not relevant for 4xx were eliminated)
76923     - Eliminated Linux leftovers, removed dead code
76925     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
76926     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
76927     Signed-off-by: Stefan Roese <sr@denx.de>
76929 commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2
76930 Author: Stefan Roese <sr@denx.de>
76931 Date:   Fri Jun 15 08:18:01 2007 +0200
76933     [ppc4xx] Add initial lwmon5 board support
76935     This patch adds initial support for the Liebherr lwmon5 board euqipped
76936     with an AMCC 440EPx PowerPC.
76938     Signed-off-by: Stefan Roese <sr@denx.de>
76940 commit 85f737376d5ff3d5f0d45a8b657686326d175307
76941 Author: Stefan Roese <sr@denx.de>
76942 Date:   Fri Jun 15 07:39:43 2007 +0200
76944     [ppc4xx] Extend 44x GPIO setup with default output state
76946     The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup
76947     is extended with the default GPIO output state (level).
76949     Signed-off-by: Stefan Roese <sr@denx.de>
76951 commit dbca208518e5e7f01a6420588d1cd6e60db74c2b
76952 Author: Stefan Roese <sr@denx.de>
76953 Date:   Thu Jun 14 11:14:32 2007 +0200
76955     [ppc4xx] Extend program_tlb() with virtual & physical addresses
76957     Now program_tlb() allows to program a TLB (or multiple) with
76958     different virtual and physical addresses. With this change, now one
76959     physical region (e.g. SDRAM) can be mapped 2 times, once with caches
76960     diabled and once with caches enabled.
76962     Signed-off-by: Stefan Roese <sr@denx.de>
76964 commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88
76965 Author: Detlev Zundel <dzu@denx.de>
76966 Date:   Wed May 23 19:02:41 2007 +0200
76968     Change 'repeatable' attribute of some commands to sensible values.
76970     Most prominently this changes 'erase' to be non-repeatable.
76972     Signed-off-by: Detlev Zundel <dzu@denx.de>
76974 commit 5afb202093f6a001797db92cf695b93a70ea9ab4
76975 Author: Detlev Zundel <dzu@denx.de>
76976 Date:   Wed May 23 18:47:48 2007 +0200
76978     Fix 'run' not to continue after interrupted command
76980     Signed-off-by: Detlev Zundel <dzu@denx.de>
76982 commit 9b7464a2c88614e1061f509c48930a3d240d1a35
76983 Author: Jason Jin <Jason.jin@freescale.com>
76984 Date:   Mon Jun 11 15:14:24 2007 +0200
76986     USB: This patch fix readl in ohci swap reg access.
76988     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
76990 commit 8f8416fada9faf94b9a92f21fe6000643cb521d5
76991 Author: Bartlomiej Sieka <tur@semihalf.com>
76992 Date:   Fri Jun 8 14:52:22 2007 +0200
76994     TQM5200: Add Flat Device Tree support, update default env. accordingly.
76996     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
76997     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
76999 commit 9045f33c023f698660a2e45d1b2194c0711abebc
77000 Author: Wolfgang Denk <wd@denx.de>
77001 Date:   Fri Jun 8 10:24:58 2007 +0200
77003     Fix config problems on SC3 board; make ide_reset_timeout work.
77005 commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b
77006 Author: Benoît Monin <bmonin@adeneo.eu>
77007 Date:   Fri Jun 8 09:55:24 2007 +0200
77009     [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE
77011     Set the correct value in GPIOx_TCR when configuring the gpio
77012     with CFG_440_GPIO_TABLE.
77014     Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
77015     Signed-off-by: Stefan Roese <sr@denx.de>
77017 commit f539edc076cfe52bff919dd512ba8d7af0e22092
77018 Author: Vadim Bendebury <vbendeb@google.com>
77019 Date:   Thu May 24 15:52:25 2007 -0700
77021     cosmetic changes to bcm570x driver
77023     This is a cosmetic only changes submission.
77024     It affects files relevant to bcm570x driver.
77025     the commands used to generate this change was
77027     cd drivers
77028     Lindent -pcs -l80  bcm570x.c   bcm570x_lm.h   bcm570x_mm.h  tigon3.c  tigon3.h
77030     The BMW target (the only one using this chip so far) builds cleanly, the
77031     `before and after' generated object files for drivers/bcm570x.c and
77032     drivers/tigon3.o are identical as reported by objdump -d
77034     Signed-off-by: Vadim Bendebury <vbendeb@google.com>
77035     Signed-off-by: Ben Warren <bwarren@qstreams.com>
77037 commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7
77038 Author: Wolfgang Denk <wd@denx.de>
77039 Date:   Wed Jun 6 16:26:56 2007 +0200
77041     Coding Style cleanup; generate new CHANGELOG file.
77043     Signed-off-by: Wolfgang Denk <wd@denx.de>
77045 commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243
77046 Author: Markus Klotzbuecher <mk@denx.de>
77047 Date:   Wed Jun 6 11:49:44 2007 +0200
77049     TRAB, USB: update trab board configuration for use of generic ohci driver
77051 commit dace45acd1c1357daa9322099d07c9a9e08b0024
77052 Author: Markus Klotzbuecher <mk@denx.de>
77053 Date:   Wed Jun 6 11:49:43 2007 +0200
77055     USB: ohci fixes and cleanup for ppc4xx and yosemite board.
77057 commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df
77058 Author: Markus Klotzbuecher <mk@denx.de>
77059 Date:   Wed Jun 6 11:49:43 2007 +0200
77061     USB: ohci fixes and cleanup for mpc5xxx and IceCube board config
77063 commit fc43be478f2aa37ce38acd85355038866e4162af
77064 Author: Markus Klotzbuecher <mk@denx.de>
77065 Date:   Wed Jun 6 11:49:35 2007 +0200
77067     USB/OHCI: endianness cleanup in the generic ohci driver
77069 commit c440bfe6d6d92d66478a7e84402b31f48413617b
77070 Author: Stefan Roese <sr@denx.de>
77071 Date:   Wed Jun 6 11:42:13 2007 +0200
77073     ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board
77075     This patch adds NAND booting support for the AMCC Acadia eval board.
77077     Please make sure to configure jumper J7 to position 2-3 when booting
77078     from NOR, and to position 1-2 when booting for NAND.
77080     I also added a board command to configure the I2C bootstrap EEPROM
77081     values. Right now only 267MHz is support for booting either via NOR
77082     or NAND FLASH. Here the usage:
77084     => bootstrap 267 nor        ;to configure the board for 267MHz NOR booting
77085     => bootstrap 267 nand       ;to configure the board for 267MHz NNAND booting
77087     Signed-off-by: Stefan Roese <sr@denx.de>
77089 commit 18135125f909948b85d1d6881ab4ac0efb4a1c58
77090 Author: Rodolfo Giometti <giometti@linux.it>
77091 Date:   Wed Jun 6 10:08:14 2007 +0200
77093     Files include/linux/byteorder/{big,little}_endian.h define
77094     __BIG_ENDIAN and __LITTLE_ENDIAN.
77096     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
77098 commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82
77099 Author: Zhang Wei <wei.zhang@freescale.com>
77100 Date:   Wed Jun 6 10:08:14 2007 +0200
77102     Add USB PCI-OHCI, USB keyboard and event poll support to the
77103     MPC8641HPCN board config file.
77105     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
77107 commit 4dae14ce8fbdf380017dc54f172218e7d2acc889
77108 Author: Zhang Wei <wei.zhang@freescale.com>
77109 Date:   Wed Jun 6 10:08:14 2007 +0200
77111     USB PCI-OHCI, interrupt pipe and usb event poll support
77113     This patch added USB PCI-OHCI chips support, interrupt pipe support
77114     and usb event poll support. For supporting the USB interrupt pipe, the
77115     globe urb_priv is moved to purb in ed struct. Now, we can process
77116     several urbs at one time. The interrupt pipe support codes are ported
77117     from Linux kernel 2.4.
77119     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
77121 commit fdcfaa1b02268b2899e374b35adf936c911a47eb
77122 Author: Zhang Wei <wei.zhang@freescale.com>
77123 Date:   Wed Jun 6 10:08:13 2007 +0200
77125     USB event poll support
77127     This patch adds USB event poll support, which could be used in usbkbd
77128     and other usb devices driver when the asynchronous interrupt
77129     processing is supported.
77131     Signed-off-by: Zhang Wei <wei.zhang@freescale.com
77133 commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e
77134 Author: Rodolfo Giometti <giometti@linux.it>
77135 Date:   Wed Jun 6 10:08:12 2007 +0200
77137     ISP116x: delay for crappy USB keys
77139     Using some (very) slow USB keys cause the USB host controller buffers
77140     are not ready to be read by the CPU so we need an extra delay before
77141     reading the USB storage data.
77143     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
77145 commit 09444143670c9c2243cb7aba9f70b3713d33bed1
77146 Author: Markus Klotzbuecher <mk@denx.de>
77147 Date:   Wed Jun 6 10:08:12 2007 +0200
77149     Change duplicate usb_cpu_init_fail to usb_board_init_fail
77151     Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
77152     this out.
77154     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
77156 commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e
77157 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
77158 Date:   Tue Jun 5 12:30:52 2007 -0500
77160     mpc8641 image size cleanup
77162     e600 does not have a bootpg restriction.
77163     Move the version string to beginning of image at fff00000.
77164     Resetvec.S is not needed.
77165     Update flash copy instructions.
77166     Add tftpflash env variable
77168     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
77169     Signed-off-by: Jon Loeliger <jdl@freescale.com>
77171 commit e3cbe1f93c5722f8ebbad468e30c069a2b511097
77172 Author: Benoît Monin <bmonin@adeneo.eu>
77173 Date:   Mon Jun 4 08:36:05 2007 +0200
77175     [PATCH] Fix ppc4xx bootstrap letter displayed on startup
77177     The attached patch is mainly cosmetic, allowing u-boot to
77178     display the correct bootstrap option letter according to the
77179     datasheets.
77181     The original patch was extended with 405EZ support by Stefan
77182     Roese.
77184     Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
77185     Signed-off-by: Stefan Roese <sr@denx.de>
77187 commit 5b1313fb2758ffce8b624457f777d8cc6709608d
77188 Author: Nikita V. Youshchenko <yoush@debian.org>
77189 Date:   Wed May 23 12:45:19 2007 +0400
77191     fix compilation problem for mpc8349itx CFG_RAMBOOT
77193     Current include/configs/MPC8349ITX.h does contain some support for building
77194     image that will be started from memory (without putting in into flash).
77195     It could be triggered by building with TEXT_BASE set to a low value.
77197     However, this support is incomplete: using of low TEXT_BASE causes
77198     defining configuration macros in inconsistent way, which later leads
77199     to compilation errors. In particular. flash support is being disabled,
77200     but then flash structures get referenced.
77202     This patch fixes this, making it possible to build with low TEXT_BASE.
77204     Signed-Off-By: Nikita Youshchenko <yoush@debian.org>
77206     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
77208 commit 8a364f0970de49949d635e60accf463c6443ef8c
77209 Author: Nikita V. Youshchenko <yoush@debian.org>
77210 Date:   Wed May 23 12:45:25 2007 +0400
77212     add missing 'console' var to default mpc8349itx config
77214     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
77216 commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7
77217 Author: Stefan Roese <sr@denx.de>
77218 Date:   Fri Jun 1 16:18:17 2007 +0200
77220     ppc4xx: Add missing file for Bamboo NAND booting support
77222     Signed-off-by: Stefan Roese <sr@denx.de>
77224 commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b
77225 Author: Stefan Roese <sr@denx.de>
77226 Date:   Fri Jun 1 15:58:19 2007 +0200
77228     ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz
77230     This patch undoes the patch by Jeff Mann with commit-id ada4697d. As
77231     suggested by AMCC it is not recommended to dynamically change the EBC
77232     speed after bootup. So we undo this change to be on the safe side.
77234     Signed-off-by: Stefan Roese <sr@denx.de>
77236 commit 9d9096043e8f713d4bf1743d32e1459e6a11644b
77237 Author: Stefan Roese <sr@denx.de>
77238 Date:   Fri Jun 1 15:29:04 2007 +0200
77240     ppc4xx: Update Sequoia NAND booting support with ECC
77242     Signed-off-by: Stefan Roese <sr@denx.de>
77244 commit cf959c7d6687567c308e366e9581e1a5aff5cc5b
77245 Author: Stefan Roese <sr@denx.de>
77246 Date:   Fri Jun 1 15:27:11 2007 +0200
77248     ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board
77250     This patch adds NAND booting support for the AMCC Bamboo eval board.
77251     Since the NAND-SPL boot image is limited to 4kbytes, this version
77252     only supports the onboard 64MBytes of DDR. The DIMM modules can't be
77253     supported, since the setup code for I2C DIMM autodetection and
77254     configuration is too big for this NAND bootloader.
77256     Signed-off-by: Stefan Roese <sr@denx.de>
77258 commit 42be56f53c8b107868e6125c8524ae84293e95a7
77259 Author: Stefan Roese <sr@denx.de>
77260 Date:   Fri Jun 1 15:23:04 2007 +0200
77262     NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c
77264     The U-Boot NAND booting support is now extended to support ECC
77265     upon loading of the NAND U-Boot image.
77267     Tested on AMCC Sequoia (440EPx) and Bamboo (440EP).
77269     Signed-off-by: Stefan Roese <sr@denx.de>
77271 commit a471db07fbb65a841ffc9f4f112562b945230f98
77272 Author: Stefan Roese <sr@denx.de>
77273 Date:   Fri Jun 1 15:19:29 2007 +0200
77275     ppc4xx: Prepare Bamboo port for NAND booting support
77277     This patch updates the "normal" Bamboo NOR booting port, so
77278     that it is compatible with the coming soon NAND booting
77279     Bamboo port.
77281     It also enables the 2nd NAND flash on the Bamboo.
77283     Signed-off-by: Stefan Roese <sr@denx.de>
77285 commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987
77286 Author: Stefan Roese <sr@denx.de>
77287 Date:   Fri Jun 1 15:16:58 2007 +0200
77289     ppc4xx: Update in_be32() functions and friends to latest Linux version
77291     Signed-off-by: Stefan Roese <sr@denx.de>
77293 commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c
77294 Author: Stefan Roese <sr@denx.de>
77295 Date:   Fri Jun 1 15:15:12 2007 +0200
77297     NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c
77299     This patch adds hardware ECC support to the NDFC driver. It also
77300     changes the register access from using the "simple" in32/out32
77301     functions to the in_be32/out_be32 functions, which make sure
77302     that the access is correctly synced. This is the only recommended
77303     access to SoC registers in the current Linux kernel.
77305     Signed-off-by: Stefan Roese <sr@denx.de>
77307 commit 17b5e862287cca76f19dcf8b741e61a7d06617f2
77308 Author: Stefan Roese <sr@denx.de>
77309 Date:   Fri Jun 1 15:12:15 2007 +0200
77311     NAND: Update nand_ecc.c to latest Linux version
77313     This patch updates the nand_ecc code to the latest Linux version.
77314     The main reason for this is the more compact code. This makes
77315     it possible to include the ECC code into the NAND bootloader
77316     image (NAND_SPL) for PPC4xx.
77318     Signed-off-by: Stefan Roese <sr@denx.de>
77320 commit d2d432760d2199d0e8558fdd9d1789b8131abcf7
77321 Author: Stefan Roese <sr@denx.de>
77322 Date:   Fri Jun 1 15:09:50 2007 +0200
77324     ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo
77326     Signed-off-by: Stefan Roese <sr@denx.de>
77328 commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc
77329 Author: Stefan Roese <sr@denx.de>
77330 Date:   Fri Jun 1 13:45:24 2007 +0200
77332     ppc4xx: Change Luan config file to support ECC
77334     With the updated 44x DDR2 driver the Luan board now supports
77335     ECC generation and checking.
77337     Signed-off-by: Stefan Roese <sr@denx.de>
77339 commit 7187db73491c8de0fb56efb5e5134ba5ec443089
77340 Author: Stefan Roese <sr@denx.de>
77341 Date:   Fri Jun 1 13:45:00 2007 +0200
77343     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
77345     Add config option for 180 degree advance clock control as needed
77346     for the AMCC Luan eval board.
77348     Signed-off-by: Stefan Roese <sr@denx.de>
77350 commit ee1529838abbfaa35f14e3ffbeaaba693159475f
77351 Author: Wolfgang Denk <wd@denx.de>
77352 Date:   Thu May 31 17:20:09 2007 +0200
77354     Add support for STX GP3SSA (stxssa) Board with 4 MiB flash.
77356     Signed-off-by: Wolfgang Denk <wd@denx.de>
77358 commit 7049288fb1f16f1b317140226cdebd07bd416395
77359 Author: Bartlomiej Sieka <tur@semihalf.com>
77360 Date:   Sun May 27 17:26:46 2007 +0200
77362     Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH.
77364     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
77366 commit 4520fd4d2c450da49637216aa0e53739b61c60ac
77367 Author: Bartlomiej Sieka <tur@semihalf.com>
77368 Date:   Sun May 27 17:06:36 2007 +0200
77370     Motion-PRO: Add support for redundant environment.
77372     Enable redundant environment, add a MTD partition for it; also add env.
77373     variable command for passing MTD partitions to the kernel command line.
77375     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
77376     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77378 commit a26eabeec31746f06d309103690892805696e344
77379 Author: Bartlomiej Sieka <tur@semihalf.com>
77380 Date:   Sun May 27 17:05:11 2007 +0200
77382     Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes.
77384     Allow passing longer command line to the kernel - useful especially
77385     for passing MTD partition layout.
77387     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
77388     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77390 commit 9160b96f71483a116de81c68985e8ee306d36764
77391 Author: Bartlomiej Sieka <tur@semihalf.com>
77392 Date:   Sun May 27 17:04:18 2007 +0200
77394     Fix: Add missing NULL termination in strings expanded by macros parser.
77396     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
77397     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77399 commit 630ec84aef7228fc1dbfb38dec78541403a786cd
77400 Author: Bartlomiej Sieka <tur@semihalf.com>
77401 Date:   Sun May 27 17:03:37 2007 +0200
77403     Motion-PRO: Update EEPROM's page write bits and write delay.
77405     Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A
77406     have a page write capability of two bytes", and "This device offers fast (1ms)
77407     byte write". Add 3ms of extra delay.
77409     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
77410     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77412 commit c00125e07c1ebc125bab40e1e18bceed8be0c162
77413 Author: Bartlomiej Sieka <tur@semihalf.com>
77414 Date:   Sun May 27 16:58:45 2007 +0200
77416     MPC5XXX, Motion-PRO: Fix PHY initialization problem.
77418     After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which
77419     networking does not function. This commit switches PHY to TX mode by clearing
77420     the FX_SEL bit of Mode Control Register. It also reverses commit
77421     008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround.
77423     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
77424     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77426 commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db
77427 Author: Bartlomiej Sieka <tur@semihalf.com>
77428 Date:   Sun May 27 16:57:15 2007 +0200
77430     Motion-PRO: Add support for the temperature sensor.
77432     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
77433     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77435 commit c75e639630cc132dc19cd1ecda5922c0db0bfbba
77436 Author: Bartlomiej Sieka <tur@semihalf.com>
77437 Date:   Sun May 27 16:55:23 2007 +0200
77439     Motion-PRO: Add displaying of CPLD revision information during boot.
77441     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
77442     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77444 commit c99512d6bd3973f01ca2fc4896d829b46e68f150
77445 Author: Bartlomiej Sieka <tur@semihalf.com>
77446 Date:   Sun May 27 16:53:43 2007 +0200
77448     MPC5xxx: Change names of defines related to IPB and PCI clocks.
77450     Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining
77451     them does not cause PCI or IPB clocks to run at the specified speed.
77452     Instead, they configure divisors used to calculate said clocks. This
77453     patch renames the defines according to their real function.
77455     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
77456     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77458 commit a11c0b85dc3664bb3c1e781137118730c8f619ab
77459 Author: Bartlomiej Sieka <tur@semihalf.com>
77460 Date:   Sun May 27 16:51:48 2007 +0200
77462     Motion-PRO: Add LED support.
77464     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
77465     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
77466     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
77468 commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b
77469 Author: Ulf Samuelsson <ulf@atmel.com>
77470 Date:   Thu May 24 12:12:47 2007 +0200
77472     [PATCH][NAND] Define the Vendor Id for Micron NAND Flash
77474     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
77475     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
77476     Signed-off-by: Stefan Roese <sr@denx.de>
77478 commit d756894722c888d09a9fa1df8323753772d3dcce
77479 Author: Stefan Roese <sr@denx.de>
77480 Date:   Thu May 24 09:49:00 2007 +0200
77482     ppc4xx: Fix small 405EZ OCM initilization bug in start.S
77484     As pointed out by Bruce Adler <bruce.adler@acm.org> this patch
77485     fixes a small bug in the 405EZ OCM initialization. Thanks for
77486     spotting.
77488     Signed-off-by: Stefan Roese <sr@denx.de>
77490 commit 5d4a179013d59a76446462e1eb0a969fba63eb81
77491 Author: Stefan Roese <sr@denx.de>
77492 Date:   Thu May 24 08:22:09 2007 +0200
77494     ppc4xx: Update AMCC Acadia support for board revision 1.1
77496     This patch updates the Acadia (405EZ) support for the new 1.1 board
77497     revision. It also adds support for NAND FLASH via the 4xx NDFC.
77499     Please note that the jumper J7 must be in position 2-3 for this
77500     NAND support. Position 1-2 is for NAND booting only. NAND booting
77501     support will follow later.
77503     Signed-off-by: Stefan Roese <sr@denx.de>
77505 commit 822d55365bb557e084d0e33625a6dedcc866110b
77506 Author: Jon Loeliger <jdl@freescale.com>
77507 Date:   Wed May 23 14:09:46 2007 -0500
77509     Add LIST_86xx MAKEALL target for PowerPC builds.
77511     Signed-off-by: Jon Loeliger <jdl@freescale.com>
77513 commit 9f0077abd69f7a7c756a915b961037302be3e6f2
77514 Author: Stefan Roese <sr@denx.de>
77515 Date:   Tue May 22 12:48:09 2007 +0200
77517     ppc4xx: Use do { ... } while (0) for CPR & SDR access macros
77519     Signed-off-by: Stefan Roese <sr@denx.de>
77521 commit 6f3dfc139a838b0841c151efe00ad47db2366e79
77522 Author: Stefan Roese <sr@denx.de>
77523 Date:   Tue May 22 12:46:10 2007 +0200
77525     ppc4xx: Add 405 support to 4xx NAND driver ndfc.c
77527     This patch adds support for 405 PPC's to the 4xx NAND driver
77528     ndfc.c. This is in preparation for the new AMCC 405EZ.
77530     Signed-off-by: Stefan Roese <sr@denx.de>
77532 commit 10603d76767426be803dadd4fb688b97eb69481c
77533 Author: Stefan Roese <sr@denx.de>
77534 Date:   Mon May 21 07:41:22 2007 +0200
77536     ppc4xx: Fix problem in 405EZ OCM initialization
77538     As spotted by Bruce Adler this patch fixes an initialization problem
77539     for the 405EZ OCM.
77541     Signed-off-by: Stefan Roese <sr@denx.de>
77543 commit 3e3b956906eba9e4ad7931581ecedaad10eccce8
77544 Author: Peter Pearse <peter.pearse@arm.com>
77545 Date:   Fri May 18 16:47:03 2007 +0100
77547     Reduce line lengths to 80 characters max.
77549 commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72
77550 Author: Peter Pearse <peter.pearse@arm.com>
77551 Date:   Fri May 18 14:34:07 2007 +0100
77553     Makefile permissions
77555 commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d
77556 Author: Peter Pearse <peter.pearse@arm.com>
77557 Date:   Fri May 18 14:33:11 2007 +0100
77559     Makefile permissions
77561 commit 255a3577c848706441daee0174543efe205a77f8
77562 Author: Kim Phillips <kim.phillips@freescale.com>
77563 Date:   Wed May 16 16:52:19 2007 -0500
77565     Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
77567     For all practical u-boot purposes, TSECs don't differ throughout the
77568     mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
77570     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
77572 commit 70124c2602ae2d4c5d3dba05b482d91548242de8
77573 Author: Stefano Babic <sbabic@denx.de>
77574 Date:   Wed May 16 14:49:12 2007 +0200
77576     Fix compile problem cause my Microblaze merge
77578     Signed-off-by: Stefano Babic <sbabic@denx.de>
77580 commit ada4697d0230d6da552867777f98a67ec3ba2579
77581 Author: Jeffrey Mann <mannj@embeddedplanet.com>
77582 Date:   Wed May 16 13:23:10 2007 +0200
77584     [PATCH] Run new sequoia boards with an EBC speed of 83MHz
77586     Because the Sequoia board does not boot with an EBC faster than 66MHz,
77587     the clock divider are changed after the initial boot process.
77589     This allows for maximum clocking speeds  to be achieved on newer boards.
77590     Sequoia boards with 666.66 MHz processors require that the EBC divider
77591     be set to 3 in order to start the initial boot process at a slower EBC
77592     speed. After the initial boot process, the divider can be set back to 2,
77593     which will cause the boards to run at 83.333MHz. This is backward
77594     compatible with boards with 533.33 MHz processors, as these boards will
77595     already be set with an EBC divider of 2.
77597     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
77599 commit a7676ea7732f3c596805079fed7e5c9fac652cfc
77600 Author: Wolfgang Denk <wd@denx.de>
77601 Date:   Wed May 16 01:16:53 2007 +0200
77603     Minor Coding Style cleanup, update CHANGELOG.
77605     Signed-off-by: Wolfgang Denk <wd@denx.de>
77607 commit d62f64cc23a940eafe712c776b3249e4160753d1
77608 Author: Wolfgang Denk <wd@denx.de>
77609 Date:   Wed May 16 00:13:33 2007 +0200
77611     Coding Style Cleanup, new CHANGELOG
77613 commit 3162eb836903c8b247fdc7470dd39bfa6996f495
77614 Author: Wolfgang Denk <wd@denx.de>
77615 Date:   Tue May 15 23:38:05 2007 +0200
77617     Minor coding style cleanup.
77619 commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e
77620 Author: mushtaq khan <mushtaq_k@procsys.com>
77621 Date:   Fri Apr 20 14:23:02 2007 +0530
77623     Add driver for S-ATA-controller on Intel processors with South
77624     Bridge, ICH-5, ICH-6 and ICH-7.
77626     Implementation:
77628     1. Code is divided in to two files. All functions, which are
77629        controller specific are kept in "drivers/ata_piix.c" file and
77630        functions, which are not controller specific, are kept in
77631        "common/cmd_sata.c" file.
77633     2. Reading and Writing from the S-ATA drive is done using PIO method.
77635     3. Driver can be configured for 48-bit addressing by defining macro
77636        CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
77637        addressing.
77639     4. S-ATA read function is hooked to the File system, commands like
77640        ext2ls and ext2load file can be used. This has been tested.
77642     5. U-Boot command "SATA_init" is added, which initializes the S-ATA
77643        controller and identifies the S-ATA drives connected to it.
77645     6. U-Boot command "sata" is added, which is used to read/write, print
77646        partition table and get info about the drives present. This I have
77647        implemented in same way as "ide" command is implemented in U-Boot.
77649     7. This driver is for S-ATA in native mode.
77651     8. This driver does not support the Native command queuing and
77652        Hot-plugging.
77654     Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
77656 commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0
77657 Author: mushtaq khan <mushtaq_k@procsys.com>
77658 Date:   Mon Apr 30 15:57:22 2007 +0530
77660     Fixes bug clearing the bss section for i386
77662     Hi,
77663     There is a bug in the code of clearing the bss section for processor
77664     i386.(File: cpu/i386/start.S)
77665     In the code, bss_start addr (starting addr of bss section) is put into
77666     the register %eax, but the code which clears the bss section refers to
77667     the addr pointed by %edi.
77669     This patch fixes this bug by putting bss_start into %edi register.
77671     Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
77673 commit c3243cf7b490057277d61acffe4ad0946f9eb4a4
77674 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
77675 Date:   Mon Apr 30 16:47:28 2007 -0500
77677     Add support for BCM5464 Quad Phy
77679     Added support for Broadcom's BCM5464 Quad Phy
77681     Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
77683 commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a
77684 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
77685 Date:   Wed May 9 08:10:57 2007 +0800
77687     Search the exception table with linear algorithm
77689     Search the exception table with linear algorithm instead of
77690     bisecting algorithm.
77691     Because the exception table might be unsorted.
77693     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
77695 commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3
77696 Author: Aubrey.Li <aubrey.adi@gmail.com>
77697 Date:   Mon May 14 11:47:35 2007 +0800
77699     Fix compilation issues on MACOSX
77701     Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com>
77702     Signed-off-by: Aubrey Li <aubrey.adi@gmail.com>
77704 commit 56fd7162985c412317bbf763a225fba23c64fd31
77705 Author: Stephen Williams <steve@icarus.com>
77706 Date:   Tue May 15 07:55:42 2007 -0700
77708     Fix for compile of JSE target
77710     The attached patch fixes the compile of the JSE board in the
77711     denx git as of 14 may 2007. It is an extremely simple patch,
77712     it just adds the missing define of CFG_SYSTEMACE_WIDTH.
77714      Fix to compile JSE against 20070514 git of u-boot
77716 commit 69df3c4da0c93017cceb25a366e794570bd0ed98
77717 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
77718 Date:   Sun May 13 21:01:03 2007 +0900
77720     sh: MS7750SE support.
77722     This adds support for the Hitachi MS7750SE.
77724     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
77726 commit 0b135cfc2e524dc249b75057b55dd4cc09842e27
77727 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
77728 Date:   Sun May 13 20:58:00 2007 +0900
77730     sh: First support code of SuperH.
77732     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
77734 commit 61936667e86a250ae12fd2dc189d3588f0a59e0b
77735 Author: Stefan Roese <sr@denx.de>
77736 Date:   Fri May 11 12:01:49 2007 +0200
77738     ppc4xx: Add mtcpr/mfcpr access macros
77740     Signed-off-by: Stefan Roese <sr@denx.de>
77742 commit 343c48bd84606c4025c8a7c7263fda465d6e284c
77743 Author: Stefan Roese <sr@denx.de>
77744 Date:   Fri May 11 12:01:06 2007 +0200
77746     ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too
77748     Signed-off-by: Stefan Roese <sr@denx.de>
77750 commit 7d98ba770a7eaefa29ce927f31a0956df85bf650
77751 Author: Piotr Kruszynski <ppk@semihalf.com>
77752 Date:   Thu May 10 16:55:52 2007 +0200
77754     [Motion-PRO] Add MTD and JFFS2 support, also add default partition
77755     definition.
77757 commit 65fb6a676e821f9570a2a376dc204bf611ce5f81
77758 Author: Peter Pearse <peter.pearse@arm.com>
77759 Date:   Wed May 9 11:42:44 2007 +0100
77761     Add the board directory for SMN42
77763 commit 160131bf965785419626df6c388729fe0b597992
77764 Author: Peter Pearse <peter.pearse@arm.com>
77765 Date:   Wed May 9 11:41:58 2007 +0100
77767     Add the files for the SMN42 board
77769 commit 5c6d2b5a500f8c49670de8910150b78a41f781fc
77770 Author: Peter Pearse <peter.pearse@arm.com>
77771 Date:   Wed May 9 11:40:34 2007 +0100
77773     Remove the deleted files for the SMN42 patch
77775 commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761
77776 Author: Peter Pearse <peter.pearse@arm.com>
77777 Date:   Wed May 9 11:37:56 2007 +0100
77779     New board SMN42 branch
77781 commit 29f3be0caf0799ca6b89dfd9824c15619a50000f
77782 Author: Peter Pearse <peter.pearse@arm.com>
77783 Date:   Wed May 9 10:24:38 2007 +0100
77785     Makefile permissions
77787 commit b84289b595731e8851df46e893845cc1322c9b9b
77788 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
77789 Date:   Tue May 8 14:17:07 2007 -0500
77791     8641hpcn: Fix Makefile after moving pixis to board/freescale.
77793     The OBJTREE != SRCTREE build scenario was broken.
77794     This fixes it.
77796     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
77797     Signed-off-by: Jon Loeliger <jdl@freescale.com>
77799 commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1
77800 Author: Michal Simek <monstr@monstr.eu>
77801 Date:   Tue May 8 15:57:43 2007 +0200
77803     add: reading special purpose registers
77805 commit 1a50f164beb065f360fbddb76029607d6b099698
77806 Author: Michal Simek <monstr@monstr.eu>
77807 Date:   Tue May 8 14:52:52 2007 +0200
77809     add: Microblaze V5 exception handling
77811 commit ab874d5047e5d30dbc1e517ff26083efffa98ecb
77812 Author: Michal Simek <monstr@monstr.eu>
77813 Date:   Tue May 8 14:39:11 2007 +0200
77815     add: FSL control read and write
77817 commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3
77818 Author: Piotr Kruszynski <ppk@semihalf.com>
77819 Date:   Tue May 8 13:05:44 2007 +0200
77821     [Motion-PRO] Add support for I2C, EEPROM and RTC.
77823 commit fa5c2ba123b1bf88455bfc21db5e786ca045029d
77824 Author: Bartlomiej Sieka <tur@semihalf.com>
77825 Date:   Tue May 8 10:23:56 2007 +0200
77827     [Motion-PRO] Add ATA support. Add CF-booting commands to the default
77828     environment.
77830 commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839
77831 Author: Bartlomiej Sieka <tur@semihalf.com>
77832 Date:   Tue May 8 09:39:12 2007 +0200
77834     [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This
77835     eliminates networking problems in Linux (timeouts).
77837 commit 1f1369c34b629be94702684d41d3fddf0f6193e7
77838 Author: Bartlomiej Sieka <tur@semihalf.com>
77839 Date:   Tue May 8 09:21:57 2007 +0200
77841     [Motion-PRO] Enable Flat Device Tree support and modify default environment
77842     to allow booting of FDT-expecting kernels.
77844 commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db
77845 Author: Michal Simek <monstr@monstr.eu>
77846 Date:   Mon May 7 23:58:31 2007 +0200
77848     new: USE_MSR_INTR support
77850 commit 008861a2f3ef2c062744d733787c7e530a1b8761
77851 Author: Bartlomiej Sieka <tur@semihalf.com>
77852 Date:   Mon May 7 22:36:15 2007 +0200
77854     [MPC5xxx] There are networking problems on the Motion-PRO board with
77855     current PHY initalization code (tftp timeouts all the time). This commit
77856     temporarily disables PHY initalization sequence to make the networking
77857     operational, until a fix is found.
77859 commit abca901869c3760b6c5fecb825db6c1d91a78a93
77860 Author: Wolfgang Denk <wd@denx.de>
77861 Date:   Mon May 7 22:10:36 2007 +0200
77863     Get rid of duplicated file (see include/configs/sbc8560.h instead)
77865     Signed-off-by: Wolfgang Denk <wd@denx.de>
77867 commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6
77868 Author: Wolfgang Denk <wd@denx.de>
77869 Date:   Mon May 7 22:07:08 2007 +0200
77871     Get rid of duplicated file (see doc/README.SBC8560 instead)
77873     Signed-off-by: Wolfgang Denk <wd@denx.de>
77875 commit a7bac7e9b57ba948051beb19ec5be3a75ce75383
77876 Author: Michal Simek <monstr@monstr.eu>
77877 Date:   Mon May 7 19:43:10 2007 +0200
77879     fix: read and write MSR - repair number of parameters
77881 commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee
77882 Author: Jeffrey Mann <mannj@embeddedplanet.com>
77883 Date:   Mon May 7 19:42:49 2007 +0200
77885     [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
77887     A '3' got cut off in the formatting of the last patch to automatically
77888     change the clock speed of the system clock on sequoia board.
77890     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
77891     Signed-off-by: Stefan Roese <sr@denx.de>
77893 commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39
77894 Author: Michal Simek <monstr@monstr.eu>
77895 Date:   Mon May 7 19:33:51 2007 +0200
77897     new: fsl interrupt support
77898     FSL_Has_data is connected to INTC.
77900 commit 792032baa7d625e34c981ab6df521911bd8dc861
77901 Author: Michal Simek <monstr@monstr.eu>
77902 Date:   Mon May 7 19:30:12 2007 +0200
77904     fix: interrupt handler
77905     remove asm code
77907 commit f3f001a341ef185d0f13841be5b5dc3395aacc31
77908 Author: Michal Simek <monstr@monstr.eu>
77909 Date:   Mon May 7 19:25:08 2007 +0200
77911     fix: remove asm code
77913 commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01
77914 Author: Michal Simek <monstr@monstr.eu>
77915 Date:   Mon May 7 19:12:43 2007 +0200
77917     fix: clean interrupt
77919 commit 42efed6130c8fcf7da881385b5427065d2801757
77920 Author: Michal Simek <monstr@monstr.eu>
77921 Date:   Mon May 7 17:22:25 2007 +0200
77923     fix: interrupt handler for multiple sources
77925 commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6
77926 Author: Michal Simek <monstr@monstr.eu>
77927 Date:   Mon May 7 17:11:09 2007 +0200
77929     new: add writing to msr register
77931 commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2
77932 Author: Markus Klotzbuecher <mk@denx.de>
77933 Date:   Mon May 7 16:43:56 2007 +0200
77935     Fix an ancient CHANGELOG conflict
77937 commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562
77938 Author: Timur Tabi <timur@freescale.com>
77939 Date:   Sat May 5 08:12:30 2007 +0200
77941     5xxx: write MAC address to mac-address and local-mac-address
77943     Some device trees have a mac-address property, some have local-mac-address,
77944     and some have both.  To support all of these device trees, ftp_cpu_setup()
77945     should write the MAC address to mac-address and local-mac-address, if they
77946     exist.
77948     Signed-off-by: Timur Tabi <timur@freescale.com>
77949     Acked-by: Grant Likely <grant.likely@secretlab.ca>
77951 commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2
77952 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
77953 Date:   Sun Apr 29 14:01:54 2007 +0200
77955     [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
77957     MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
77958     message. Use PVR to distinguish between the two variants, and print proper CPU
77959     information.
77961     Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
77962     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
77963     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
77965 commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1
77966 Author: Ladislav Michl <ladis@linux-mips.org>
77967 Date:   Wed Apr 25 16:01:26 2007 +0200
77969     [PATCH] simplify silent console
77971     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
77972     Acked-by: Stefan Roese <sr@denx.de>
77974 commit b7598a43f2b421a713d8135e98a42c37d9eb9df0
77975 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
77976 Date:   Mon Apr 23 15:30:39 2007 +0200
77978     [PATCH] Avoid assigning PCI resources from zero address
77980     If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
77981     core complains and IDE drivers fails to work.  Also, assigning zero to a BAR
77982     was illegal according to PCI 2.1 (the later revisions seem to have excluded the
77983     sentence about "0" being considered an invalid address) -- so, use a reasonable
77984     starting value of 0x1000 (that's what the most Linux archs are using).
77986     Alternatively, one might have fixed the calls to pci_set_region() individually
77987     (some code even seems to have taken care of this issue) but that would have
77988     been a lot more work. :-)
77990     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
77991     Acked-by: Stefan Roese <sr@denx.de>
77993 commit 9ffd451afeb08e5be7ddae680487ec962b2bca25
77994 Author: Jeffrey Mann <mannj@embeddedplanet.com>
77995 Date:   Mon Apr 23 14:00:11 2007 +0200
77997     [patch] setenv(...) can delete environmentalvariables
77999     update setenv() function so that entering a NULL value for the
78000     variable's value will delete the environmental variable
78002     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
78003     Acked-by: Stefan Roese <sr@denx.de>
78005 commit ebd0a0ae05a44769c4e27458ad4e9f3438250443
78006 Author: Mike Frysinger <vapier@gentoo.org>
78007 Date:   Mon Apr 23 13:54:24 2007 +0200
78009     [patch] use unsigned char in smc91111 driver for mac
78011     the v_mac variable in the smc91111 driver is declared as a signed char ...
78012     this causes problems when one of the bytes in the MAC is "signed" like 0xE0
78013     because when it gets printed out, you get a display like:
78014     0xFFFFFFE0 and that's no good
78016     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
78018 commit ffc50f9bb194343c6303517a517708457a5eb6b8
78019 Author: Michal Simek <monstr@monstr.eu>
78020 Date:   Sat May 5 18:54:42 2007 +0200
78022     new: FSL and MSR support #2
78024 commit f7e2e0eb0668136305f78bb9c21be79b48a34247
78025 Author: Michal Simek <monstr@monstr.eu>
78026 Date:   Sat May 5 18:27:16 2007 +0200
78028     new: FSL and MSR support
78030 commit 2f15278c2eb911c668b4fe562130b78cf554d139
78031 Author: Wolfgang Denk <wd@denx.de>
78032 Date:   Sat May 5 18:23:11 2007 +0200
78034     Coding stylke cleanup; update CHANGELOG.
78036     Signed-off-by: Wolfgang Denk <wd@denx.de>
78038 commit 885ec89b648a899a2f32393fd3ffd9f7234c4402
78039 Author: Wolfgang Denk <wd@denx.de>
78040 Date:   Sat May 5 18:05:02 2007 +0200
78042     Add STX GP3 SSA board to MAKEALL script; update CHANGELOG.
78044     Signed-off-by: Wolfgang Denk <wd@denx.de>
78046 commit 5499645b3fe17a548af9dfc479ca6e2455f179a2
78047 Author: Wolfgang Denk <wd@denx.de>
78048 Date:   Sat May 5 17:15:50 2007 +0200
78050     Make "file" command happy with some config.mk files; update CHANGELOG
78052 commit e3b8c78bc2489c27ae020986ef0eaca684866cef
78053 Author: Jeffrey Mann <mannj@embeddedplanet.com>
78054 Date:   Sat May 5 08:32:14 2007 +0200
78056     ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz
78058     The AMCC Secquoia board has been changed in a new revision from using a
78059     33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD
78060     indicates the difference. This patch reads that bit and uses the correct
78061     clock speed for the board. This code is backward compatable will all
78062     prior boards. All prior boards will be read as 33.000.
78064     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
78065     Signed-off-by: Stefan Roese <sr@denx.de>
78067 commit f544ff6656fca263ed1ebe39899b6d95da67c8b8
78068 Author: Stefan Roese <sr@denx.de>
78069 Date:   Sat May 5 08:29:01 2007 +0200
78071     ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting
78073     Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big
78074     for the 4k NAND boot image so define bus_frequency to 133MHz here
78075     which is save for the refresh counter setup.
78077     Signed-off-by: Stefan Roese <sr@denx.de>
78079 commit 2f550ab976405300f5b07bf2890800840d0aa05f
78080 Author: Timur Tabi <timur@freescale.com>
78081 Date:   Sat May 5 08:12:30 2007 +0200
78083     5xxx: write MAC address to mac-address and local-mac-address
78085     Some device trees have a mac-address property, some have local-mac-address,
78086     and some have both.  To support all of these device trees, ftp_cpu_setup()
78087     should write the MAC address to mac-address and local-mac-address, if they
78088     exist.
78090     Signed-off-by: Timur Tabi <timur@freescale.com>
78091     Acked-by: Grant Likely <grant.likely@secretlab.ca>
78093 commit a79886590593ba1d667c840caa4940c61639f18f
78094 Author: Thomas Knobloch <knobloch@siemens.com>
78095 Date:   Sat May 5 07:04:42 2007 +0200
78097     NAND: Wrong calculation of page number in nand_block_bad()
78099     In case that there is no memory based bad block table available the
78100     function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call
78101     nand_block_bad() directly. When parameter 'getchip' is set to zero,
78102     nand_block_bad() will not right shift the offset to calculate the
78103     correct page number.
78105     Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
78106     Signed-off-by: Stefan Roese <sr@denx.de>
78108 commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
78109 Author: Wolfgang Denk <wd@denx.de>
78110 Date:   Fri May 4 10:02:33 2007 +0200
78112     Fix initrd length corruption in bootm command.
78114     When using FDT Images, the length of an inital ramdisk was
78115     overwritten (bug introduced by commit 87a449c8, 22 Aug 2006).
78117     Patches by Timur Tabi & Johns Daniel.
78119     Signed-off-by: Wolfgang Denk <wd@denx.de>
78121 commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96
78122 Author: Kim Phillips <kim.phillips@freescale.com>
78123 Date:   Thu May 3 19:43:52 2007 -0500
78125     mpc83xx: fix trivial error in MAKEALL
78127     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
78129 commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a
78130 Author: Wolfgang Denk <wd@denx.de>
78131 Date:   Thu May 3 16:34:41 2007 +0200
78133     Update board configuration for STX GP3SSA board:
78135     Enable hush shell, environment in flash rather in EEPROM,
78136     more user-friendly default environment, etc.
78137     The simple EEPROM environment can be selected easily in the board
78138     config file.
78140     Signed-off-by: Wolfgang Denk <wd@denx.de>
78142 commit 2c6fb199dc5756fc72f49d1f4de105e089049d65
78143 Author: Wolfgang Denk <wd@denx.de>
78144 Date:   Tue Apr 24 14:37:49 2007 +0200
78146     Cleanup STX GP3SSA code; fix build and compile problems.
78148 commit 35171dc04e028ecacc23ad916a66295472555dbf
78149 Author: Dan Malek <dan@embeddedalley.com>
78150 Date:   Fri Jan 5 09:15:34 2007 +0100
78152     Add support for STX GP3SSA (stxssa) Board
78154     Signed-off-by Dan Malek, <dan@embeddedalley.com>
78156 commit f2134f8e9eb006bdcd729e89f309c07b2fa45180
78157 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78158 Date:   Wed May 2 13:31:53 2007 +0200
78160     macb: Don't restart autonegotiation if we already have link
78162     Rework macb_phy_init so that it doesn't attempt to re-negotiate if the
78163     link is already up.
78165     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78167 commit 04fcb5d38bc90779cd9a710d60702075986f0e29
78168 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78169 Date:   Wed May 2 13:22:38 2007 +0200
78171     macb: Introduce a few barriers when dealing with DMA descriptors
78173     There were a few theoretical possibilities that the compiler might
78174     optimize away DMA descriptor reads and/or writes and thus cause
78175     synchronization problems with the hardware. Insert barriers where
78176     we depend on reads/writes actually hitting memory.
78178     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78180 commit ffa621a0d12a1ccd81c936c567f8917a213787a8
78181 Author: Andy Fleming <afleming@freescale.com>
78182 Date:   Sat Feb 24 01:08:13 2007 -0600
78184     Cleaned up some 85xx PCI bugs
78186     * Cleaned up the CDS PCI Config Tables and added NULL entries to
78187       the end
78188     * Fixed PCIe LAWBAR assignemt to use the cpu-relative address
78189     * Fixed 85xx PCI code to assign powar region sizes based on the
78190       config values (rather than hard-coding them)
78191     * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address
78193     Signed-off-by: Andy Fleming <afleming@freescale.com>
78195 commit 6743105988fc44d5b0d30388c790607835aae7a6
78196 Author: Andy Fleming <afleming@freescale.com>
78197 Date:   Mon Apr 23 02:54:25 2007 -0500
78199     Add support for the 8568 MDS board
78201     This included some changes to common files:
78202     * Add 8568 processor SVR to various places
78203     * Add support for setting the qe bus-frequency value in the dts
78204     * Add the 8568MDS target to the Makefile
78206     Signed-off-by: Andy Fleming <afleming@freescale.com>
78208 commit af1c2b84bf27c8565baddc82d1abb93700d10e2e
78209 Author: David Updegraff <dave@cray.com>
78210 Date:   Fri Apr 20 14:34:48 2007 -0500
78212     Add support for treating unknown PHYs as generic PHYs.
78214     When bringing up u-boot on new boards, PHY support sometimes gets
78215     neglected.  Most PHYs don't really need any special support,
78216     though.  By adding a generic entry that always matches if nothing
78217     else does, we can provide support for "unsupported" PHYs for the
78218     tsec.
78220     The generic PHY driver supports most PHYs, including gigabit.
78222     Signed-off-by: David Updegraff <dave@cray.com>
78223     Signed-off-by: Andy Fleming <afleming@freescale.com>
78225 commit a75af9bfd8fff0499efdbb90601cec5a2afef117
78226 Author: James Yang <James.Yang@freescale.com>
78227 Date:   Wed Feb 7 15:28:04 2007 -0600
78229     Conditionalize 8641 Rev1.0 MCM workarounds
78231     Signed-off-by: James Yang <James.Yang@freescale.com>
78232     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78234 commit f64702b7fc8f8df39d31add770df6e372f9e9ce3
78235 Author: Timur Tabi <timur@freescale.com>
78236 Date:   Mon Apr 30 13:59:50 2007 -0500
78238     Fix memory initialization on MPC8349E-mITX
78240     Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP.
78241     This allows ddr->sdram_clk_cntl to be properly initialized.  This is necessary
78242     on some ITX boards, notably those with a revision 3.1 CPU.
78244     Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into
78245     ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined.
78247     Signed-off-by: Timur Tabi <timur@freescale.com>
78248     Acked-by: Michael Benedict <MBenedict@twacs.com>
78249     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
78251 commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3
78252 Author: Kim Phillips <kim.phillips@freescale.com>
78253 Date:   Mon Apr 30 15:26:21 2007 -0500
78255     mpc83xx: replace elaborate boottime verbosity with 'clocks' command
78257     and fix CPU: to align with Board: display text.
78259     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
78261 commit c1ab82669d9525998c34e802a12cad662723f22a
78262 Author: James Yang <James.Yang@freescale.com>
78263 Date:   Fri Mar 16 13:02:53 2007 -0500
78265     Rewrote picos_to_clk() to avoid rounding errors.
78266     Clarified that conversion is to DRAM clocks rather than platform clocks.
78267     Made function static to spd_sdram.c.
78269     Signed-off-by: James Yang <James.Yang@freescale.com>
78270     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78272 commit 8b39501d28754e72726ce7fb02310e56dbdf116a
78273 Author: Stefan Roese <sr@denx.de>
78274 Date:   Sun Apr 29 14:13:01 2007 +0200
78276     ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver
78278     Signed-off-by: Stefan Roese <sr@denx.de>
78280 commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9
78281 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
78282 Date:   Sun Apr 29 14:01:54 2007 +0200
78284     [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
78286     MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
78287     message. Use PVR to distinguish between the two variants, and print proper CPU
78288     information.
78290     Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
78291     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
78292     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
78294 commit 5c5d3242935cf3543af01142627494434834cf98
78295 Author: Kim Phillips <kim.phillips@freescale.com>
78296 Date:   Wed Apr 25 12:34:38 2007 -0500
78298     mpc83xx: minor fixups for 8313rdb introduction
78300 commit ada4d40091f6ed4a4f0040e08d20db21967e4a67
78301 Author: Ladislav Michl <ladis@linux-mips.org>
78302 Date:   Wed Apr 25 16:01:26 2007 +0200
78304     [PATCH] simplify silent console
78306     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
78307     Acked-by: Stefan Roese <sr@denx.de>
78309 commit 144876a380f5756f57412caf74c1d6dc201dd796
78310 Author: Michal Simek <monstr@monstr.eu>
78311 Date:   Tue Apr 24 23:01:02 2007 +0200
78313     [PATCH] MTD partition support, JFFS2 support
78315 commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb
78316 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
78317 Date:   Tue Apr 24 14:03:45 2007 +0200
78319     ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content.
78321     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
78323 commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d
78324 Author: Andy Fleming <afleming@freescale.com>
78325 Date:   Mon Apr 23 02:37:47 2007 -0500
78327     Reworked 85xx speed detection code
78329     Changed the code to read the registers and calculate the clock
78330     rates, rather than using a "switch" statement.
78332     Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com>
78334     Signed-off-by: Andy Fleming <afleming@freescale.com>
78336 commit 81f481ca708ed6a56bf9c410e3191dbad581c565
78337 Author: Andy Fleming <afleming@freescale.com>
78338 Date:   Mon Apr 23 02:24:28 2007 -0500
78340     Enable 8544 support
78342     * Add support to the Makefile
78343     * Add 8544 configuration support to the tsec driver
78344     * Add 8544 SVR numbers to processor.h
78346     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78347     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78349 commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe
78350 Author: Andy Fleming <afleming@freescale.com>
78351 Date:   Fri Feb 23 17:12:25 2007 -0600
78353     Support 1G size on 8548
78355     e500v2 and newer cores support 1G page sizes.
78357     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78358     Signed-off-by: Andy Fleming <afleming@freescale.com>
78360 commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46
78361 Author: Andy Fleming <afleming@freescale.com>
78362 Date:   Fri Feb 23 17:11:16 2007 -0600
78364     Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG
78366     The other pagesz constants use one letter to specify order of
78367     magnitude.  Also change the one reference to it in mpc8548cds/init.S
78369     Signed-off-by: Andy Fleming <afleming@freescale.com>
78371 commit 1f9a318cea14272edd10d63739e2d326c90f430e
78372 Author: Andy Fleming <afleming@freescale.com>
78373 Date:   Fri Feb 23 16:28:46 2007 -0600
78375     Only set ddrioovcr for 8548 rev1.
78377     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78378     Signed-off-by: Andy Fleming <afleming@freescale.com>
78380 commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2
78381 Author: Andy Fleming <afleming@freescale.com>
78382 Date:   Sat Feb 24 01:16:45 2007 -0600
78384     Tweak DDR ECC error counter
78386     Enable single-bit error counter when memory was cleared by ddr controller.
78388     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78389     Signed-off-by: Andy Fleming <afleming@freescale.com>
78391 commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b
78392 Author: Timur Tabi <timur@freescale.com>
78393 Date:   Mon Feb 12 13:34:55 2007 -0600
78395     85xx: write MAC address to mac-address and local-mac-address
78397     Some device trees have a mac-address property, some have local-mac-address,
78398     and some have both.  To support all of these device trees, ftp_cpu_setup()
78399     should write the MAC address to mac-address and local-mac-address, if they
78400     exist.
78402     Signed-off-by: Timur Tabi <timur@freescale.com>
78404 commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4
78405 Author: Andy Fleming <afleming@freescale.com>
78406 Date:   Mon Apr 23 01:44:44 2007 -0500
78408     Some 85xx cpu cleanups
78410     * Cleaned up the TSR[WIS] clearing
78411     * Cleaned up DMA initialization
78413     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78414     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78415     Acked-by: Andy Fleming <afleming@freescale.com>
78417 commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb
78418 Author: Andy Fleming <afleming@freescale.com>
78419 Date:   Mon Apr 23 01:32:22 2007 -0500
78421     Add cpu support for the 8544
78423     Recognize new SVR values, and add a few register definitions
78425     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78426     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78427     Acked-by: Andy Fleming <afleming@freescale.com>
78429 commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae
78430 Author: Jon Loeliger <jdl@freescale.com>
78431 Date:   Wed Apr 11 16:51:02 2007 -0500
78433     Add MPC8544DS basic port board files.
78435     Add board port under new board/freescale directory
78436     structure and reuse existing PIXIS FPGA support there.
78438     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78439     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78441 commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa
78442 Author: Jon Loeliger <jdl@freescale.com>
78443 Date:   Wed Apr 11 16:50:57 2007 -0500
78445     Add MPC8544DS main configuration file.
78447     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78448     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78450 commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6
78451 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
78452 Date:   Wed Dec 27 22:07:15 2006 +0300
78454     Fix PCI I/O space mapping on Freescale MPC85x0ADS
78456     The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit
78457     52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's
78458     describing the local address window used for the PCI I/O space accesses -- fix
78459     this and carry over the necessary changes into the MPC8560ADS code since the
78460     PCI I/O space mapping was also broken for this board (by the earlier commit
78461     087454609e47295443af793a282cddcd91a5f49c).  Add the comments clarifying how
78462     the PCI I/O space must be mapped to all the MPC85xx board config. headers.
78464     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
78466      board/mpc8540ads/init.S      |    4 ++--
78467      board/mpc8560ads/init.S      |    4 ++--
78468      include/configs/MPC8540ADS.h |    5 ++---
78469      include/configs/MPC8541CDS.h |    2 +-
78470      include/configs/MPC8548CDS.h |    2 +-
78471      include/configs/MPC8560ADS.h |    8 ++++----
78472      6 files changed, 12 insertions(+), 13 deletions(-)
78474 commit 96629cbabdb727d4a5e62542deefc01d498db6dc
78475 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
78476 Date:   Tue Dec 5 16:42:30 2006 +0800
78478     u-boot: Fix e500 v2 core reset bug
78480     The following patch fixes the e500 v2 core reset bug.
78481     For e500 v2 core, a new reset control register is added to reset the
78482     processor.
78484     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
78486 commit 63247a5acd58032e6cf33f525bc3923b467bac88
78487 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
78488 Date:   Wed Dec 20 11:01:00 2006 +0800
78490     u-boot: v2: Remove the fixed TLB and LAW entrynubmer
78492     Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW
78493     entry number to control the loop.  This can reduce the potential risk
78494     for the 85xx processor increasing its TLB adn LAW entry number.
78496     Signed-off-by: Swarthout Edward <swarthout@freescale.com>
78497     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
78499 commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf
78500 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
78501 Date:   Mon Dec 18 17:01:04 2006 +0800
78503     u-boot: Fix the 85xxcds tsec bug
78505     Fix the 85xxcds tsec bug.
78506     When enable PCI, tsec.o should be added to u-boot.lds to make tsec work.
78508     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
78510 commit 7337b237ffc4aaf1b9467024fe472a880d852598
78511 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
78512 Date:   Fri Dec 15 14:43:31 2006 +0800
78514     u-boot: Fix CPU2 errata on MPC8548CDS board
78516     This patch apply workaround of CPU2 errata on MPC8548CDS board.
78518     Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
78520 commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09
78521 Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com>
78522 Date:   Mon Dec 18 16:25:15 2006 +0800
78524     u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default
78526     This patch disables MPC8548CDS 2T_TIMING for DDR by default.
78528     Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
78530 commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7
78531 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
78532 Date:   Thu Dec 14 14:14:55 2006 +0800
78534     u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board
78536     Enable PCI function and add PEX & rapidio memory map on MPC8548CDS
78537     board.
78538     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
78540 commit 96b8a05432f346f36493535c85320b70ec9c7c1b
78541 Author: Scott Wood <scottwood@freescale.com>
78542 Date:   Mon Apr 16 14:54:15 2007 -0500
78544     mpc83xx: Add MPC8313ERDB support.
78546     Signed-off-by: Scott Wood <scottwood@freescale.com>
78548 commit 49ea3b6eafe606285ae4d5c378026153dde53200
78549 Author: Scott Wood <scottwood@freescale.com>
78550 Date:   Mon Apr 16 14:34:21 2007 -0500
78552     mpc83xx: Add generic PCI setup code.
78554     Board code can now request the generic setup code rather than having to
78555     copy-and-paste it for themselves.  Boards should be converted to use this
78556     once they're tested with it.
78558     Signed-off-by: Scott Wood <scottwood@freescale.com>
78560 commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea
78561 Author: Scott Wood <scottwood@freescale.com>
78562 Date:   Mon Apr 16 14:34:19 2007 -0500
78564     mpc83xx: Add 831x support to speed.c.
78566     Signed-off-by: Scott Wood <scottwood@freescale.com>
78568 commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f
78569 Author: Scott Wood <scottwood@freescale.com>
78570 Date:   Mon Apr 16 14:34:18 2007 -0500
78572     mpc83xx: Add 831x support to global_data.h
78574     Signed-off-by: Scott Wood <scottwood@freescale.com>
78576 commit 95e7ef897e54591e615fc1b458b74c286fe1fb06
78577 Author: Scott Wood <scottwood@freescale.com>
78578 Date:   Mon Apr 16 14:34:16 2007 -0500
78580     mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu().
78582     Rather than misleadingly define PVR_83xx as the specific type of 83xx
78583     being built for, the PVR of each core revision is defined. checkcpu() now
78584     prints the core that it detects, rather than aborting if it doesn't find
78585     what it thinks it wants.
78587     Signed-off-by: Scott Wood <scottwood@freescale.com>
78589 commit a35b0c4950d84cf9e3a9e32b916135956d1ac636
78590 Author: Scott Wood <scottwood@freescale.com>
78591 Date:   Mon Apr 16 14:34:15 2007 -0500
78593     mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
78595     Signed-off-by: Scott Wood <scottwood@freescale.com>
78597 commit d87c57b201b4572d16f1b642998faa00c9912b16
78598 Author: Scott Wood <scottwood@freescale.com>
78599 Date:   Mon Apr 16 14:31:55 2007 -0500
78601     mpc83xx: Add register definitions for MPC831x.
78603     Signed-off-by: Scott Wood <scottwood@freescale.com>
78605 commit 7fc4c71a143be8666d70803fb25ae60379c95622
78606 Author: Stefan Roese <sr@denx.de>
78607 Date:   Mon Apr 23 15:39:59 2007 +0200
78609     Fix file mode
78611     Signed-off-by: Stefan Roese <sr@denx.de>
78613 commit 38257988abfe74d459ca2ad748b109ca04e4efe1
78614 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
78615 Date:   Mon Apr 23 15:30:39 2007 +0200
78617     [PATCH] Avoid assigning PCI resources from zero address
78619     If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
78620     core complains and IDE drivers fails to work.  Also, assigning zero to a BAR
78621     was illegal according to PCI 2.1 (the later revisions seem to have excluded the
78622     sentence about "0" being considered an invalid address) -- so, use a reasonable
78623     starting value of 0x1000 (that's what the most Linux archs are using).
78625     Alternatively, one might have fixed the calls to pci_set_region() individually
78626     (some code even seems to have taken care of this issue) but that would have
78627     been a lot more work. :-)
78629     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
78630     Acked-by: Stefan Roese <sr@denx.de>
78632 commit afb903a2eb9436baa9270ccc0c27082d86497d89
78633 Author: Jeffrey Mann <mannj@embeddedplanet.com>
78634 Date:   Mon Apr 23 14:00:11 2007 +0200
78636     [patch] setenv(...) can delete environmentalvariables
78638     update setenv() function so that entering a NULL value for the
78639     variable's value will delete the environmental variable
78641     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
78642     Acked-by: Stefan Roese <sr@denx.de>
78644 commit 36f104e5caa747d568eff26b369565af57c2ffa6
78645 Author: Mike Frysinger <vapier@gentoo.org>
78646 Date:   Mon Apr 23 13:54:24 2007 +0200
78648     [patch] use unsigned char in smc91111 driver for mac
78650     the v_mac variable in the smc91111 driver is declared as a signed char ...
78651     this causes problems when one of the bytes in the MAC is "signed" like 0xE0
78652     because when it gets printed out, you get a display like:
78653     0xFFFFFFE0 and that's no good
78655     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
78657 commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459
78658 Author: Rodolfo Giometti <giometti@enneenne.com>
78659 Date:   Mon Apr 23 13:10:52 2007 +0200
78661     USB: (Another) delay for crappy USB keys.
78663     Some USB keys are slow in giving back an answer when the Root HUB
78664     enables power lines.
78666     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
78668 commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
78669 Author: Stefan Roese <sr@denx.de>
78670 Date:   Mon Apr 23 12:00:22 2007 +0200
78672     Remove BOARDLIBS usage completely
78674     Signed-off-by: Stefan Roese <sr@denx.de>
78676 commit 32556443840f127170e4baa8bdd5b567039f6c36
78677 Author: Michal Simek <monstr@monstr.eu>
78678 Date:   Sat Apr 21 21:07:22 2007 +0200
78680     [PATCH] SystemACE support for Microblaze
78682 commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f
78683 Author: Michal Simek <monstr@monstr.eu>
78684 Date:   Sat Apr 21 21:02:40 2007 +0200
78686     16bit read/write little endian
78688 commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4
78689 Author: Michal Simek <monstr@monstr.eu>
78690 Date:   Sat Apr 21 20:53:31 2007 +0200
78692     Change ML401 parameters - Xilinx BSP
78694 commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d
78695 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
78696 Date:   Wed Feb 28 05:37:29 2007 -0600
78698     mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines.
78700     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
78702 commit 79cb47391eebef85acadb3f6961ef6c55cace6ac
78703 Author: Zhang Wei <wei.zhang@freescale.com>
78704 Date:   Fri Jan 19 10:42:37 2007 +0800
78706     Enable LAWs for MPC8641 PCI-Ex2.
78708     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
78709     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78711 commit bd7851ce1e1f140665b520026abf1042968b1102
78712 Author: Jon Loeliger <jdl@freescale.com>
78713 Date:   Fri Apr 20 14:12:26 2007 -0500
78715     mpc86xx; Write MAC address to mac-address and local-mac-address
78717     Some device trees have a mac-address property, some have local-mac-address,
78718     and some have both.  To support all of these device trees, ftp_cpu_setup()
78719     should write the MAC address to mac-address and local-mac-address, if they
78720     exist.
78722     Signed-off-by: Timur Tabi <timur@freescale.com>
78723     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78725 commit 7dbdf28b8bd855a8530dc3292e4982575a197060
78726 Author: Jon Loeliger <jdl@freescale.com>
78727 Date:   Fri Apr 20 14:11:38 2007 -0500
78729     mpc86xx: protect memcpy to bad address if a mac-address is missing from dt
78731     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
78732     Signed-off-by: Jon Loeliger <jdl@freescale.com>
78734 commit 14da5f7675bbb427c469e3f45006e027b6e21db9
78735 Author: Wolfgang Denk <wd@denx.de>
78736 Date:   Fri Apr 20 17:43:28 2007 +0200
78738     Cleanup compiler warnings, update CHANGELOG
78740     Signed-off-by: Wolfgang Denk <wd@denx.de>
78742 commit 6923565db12af34fd5e02d354ee65a8c78ac460f
78743 Author: Detlev Zundel <dzu@denx.de>
78744 Date:   Fri Apr 20 12:01:47 2007 +0200
78746     Fix breakage of NC650 board with respect to nand support.
78748     Signed-off-by: Detlev Zundel <dzu@denx.de>
78750 commit 39f23cd90947639ac278a18ff277ec786b5ac167
78751 Author: Domen Puncer <domen.puncer@telargo.com>
78752 Date:   Fri Apr 20 11:13:16 2007 +0200
78754     [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
78756     G2 core reference manual says decrementer and time base
78757     are decreasing/increasing once every 4 bus clock cycles.
78758     Lets fix it, so time in Linux won't run twice as fast
78760     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
78761     Acked-by: Grant Likely <grant.likely@secretlab.ca>
78763 commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
78764 Author: Gerald Van Baren <vanbaren@cideas.com>
78765 Date:   Thu Apr 19 23:14:39 2007 -0400
78767     Fix serious pointer bug with bootm and reserve map.
78769     What was suppose to be a stack variable was declared as a pointer,
78770       overwriting random memory.
78771     Also moved the libfdt.a requirement into the main Makefile.  That is
78772       The U-Boot Way.
78774 commit d21686263574e95cb3e9e9b0496f968b1b897fdb
78775 Author: Stefan Roese <sr@denx.de>
78776 Date:   Thu Apr 19 09:53:52 2007 +0200
78778     ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai
78780     Previous versions used full wait states for the chip select #1 which
78781     is connected to the Xilinix SystemACE controller on the AMCC Katmai
78782     evaluation board. This leads to really slow access and therefore low
78783     performance. This patch now sets up the chip select a lot faster
78784     resulting in much better read/write performance of the Linux driver.
78786     Signed-off-by: Stefan Roese <sr@denx.de>
78788 commit 37837828d89084879bee2f2b8c7c68d4695940df
78789 Author: Wolfgang Denk <wd@denx.de>
78790 Date:   Wed Apr 18 17:49:29 2007 +0200
78792     Clenaup, update CHANGELOG
78794     Signed-off-by: Wolfgang Denk <wd@denx.de>
78796 commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
78797 Author: Wolfgang Denk <wd@denx.de>
78798 Date:   Wed Apr 18 17:20:58 2007 +0200
78800     Update CHANGELOG
78802     Signed-off-by: Wolfgang Denk <wd@denx.de>
78804 commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b
78805 Author: Wolfgang Denk <wd@denx.de>
78806 Date:   Wed Apr 18 17:07:26 2007 +0200
78808     Cleanup, update CHANGELOG
78810     Sigend-off-by: Wolfgang Denk <wd@denx.de>
78812 commit 5f6c732affea9647762d27a4617a2ae64c52dceb
78813 Author: Wolfgang Denk <wd@denx.de>
78814 Date:   Wed Apr 18 16:17:46 2007 +0200
78816     Update CHANGELOG
78818 commit ad4eb555671d97f96dc56eab55103b1f86874b01
78819 Author: Wolfgang Denk <wd@denx.de>
78820 Date:   Wed Apr 18 14:30:39 2007 +0200
78822     MCC200 board: remove warning which is obsolete after PSoC firmware changes
78824     Signed-off-by: Wolfgang Denk <wd@denx.de>
78826 commit 3747a3f010b2b1442dec3e871c69788b6017aaae
78827 Author: Domen Puncer <domen.puncer@telargo.com>
78828 Date:   Wed Apr 18 12:11:05 2007 +0200
78830     [PATCH] icecube/lite5200b: document wakeup from low-power support
78832     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
78834 commit e673226ff9d6aa91b47ceac74b8c13770b06bb37
78835 Author: Stefan Roese <sr@denx.de>
78836 Date:   Wed Apr 18 12:07:47 2007 +0200
78838     ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
78840     Signed-off-by: Stefan Roese <sr@denx.de>
78842 commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f
78843 Author: Stefan Roese <sr@denx.de>
78844 Date:   Wed Apr 18 12:05:59 2007 +0200
78846     ppc4xx: Add output for bootrom location to 405EZ ports
78848     Now 405EZ ports also show upon bootup from which boot device
78849     they are configured to boot:
78851     U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05)
78853     CPU:   AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz)
78854            Bootstrap Option E - Boot ROM Location EBC (32 bits)
78855            16 kB I-Cache 16 kB D-Cache
78856     Board: Acadia - AMCC PPC405EZ Evaluation Board
78858     Signed-off-by: Stefan Roese <sr@denx.de>
78860 commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
78861 Author: Peter Pearse <peter.pearse@arm.com>
78862 Date:   Tue Apr 17 13:30:33 2007 +0100
78864     Move ppearse to ARM board list
78865     Add Konstantin Kletschke for scb9328.
78866     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
78868 commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
78869 Author: Domen Puncer <domen.puncer@telargo.com>
78870 Date:   Mon Apr 16 14:00:13 2007 +0200
78872     [PATCH] icecube/lite5200b: wakeup from low-power support
78874     U-Boot part of Lite5200b low power mode support.
78875     Puts SDRAM out of self-refresh and transfers control to
78876     address saved at physical 0x0.
78878     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
78879     Acked-by: Grant Likely <grant.likely@secretlab.ca>
78881 commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460
78882 Author: Gerald Van Baren <vanbaren@cideas.com>
78883 Date:   Sun Apr 15 13:54:26 2007 -0400
78885     Fix the ft_cpu_setup() property settings.
78887     Use "setter" functions instead of flags, cleaner and more flexible.
78888     It also fixes the problem noted by Timur Tabi that the ethernet MAC
78889     addresses were all being set incorrectly to the same MAC address.
78891 commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4
78892 Author: Gerald Van Baren <vanbaren@cideas.com>
78893 Date:   Sat Apr 14 22:51:24 2007 -0400
78895     Improve the bootm command for CONFIG_OF_LIBFDT
78897     In bootm, create the "/chosen" node only if it doesn't already exist
78898       (better matches the previous behavior).
78899     Update for proper reserved memory map handling for initrd.
78901 commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888
78902 Author: Gerald Van Baren <vanbaren@cideas.com>
78903 Date:   Sat Apr 14 22:46:41 2007 -0400
78905     Add some utilities to manipulate the reserved memory map.
78907 commit 8048cdd56f04a756eeea4951f402bf5cc33785db
78908 Author: Wolfgang Denk <wd@denx.de>
78909 Date:   Sat Apr 14 21:16:54 2007 +0200
78911     Update CHANGELOG
78913 commit 8e6875183cdca91c134408d119d4abcd48ef6856
78914 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78915 Date:   Sun Dec 17 18:56:46 2006 +0100
78917     AVR32: Enable MMC support
78919     Set up the portmux for the MMC interface and enable the MMC driver
78920     along with support for DOS partitions, ext2 and FAT filesystems.
78922     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78924 commit fc26c97bb6df41b4a95662c34054fe912387bf38
78925 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78926 Date:   Fri Jan 20 10:03:53 2006 +0100
78928     Atmel MCI driver
78930     Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs.
78932     The AT91 ARM-based CPUs use basically the same hardware, so it should
78933     be possible to share this driver, but no effort has been made so far.
78935     Hardware documentation can be found in the AT32AP7000 data sheet,
78936     which can be downloaded from
78938     http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
78940     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78942 commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f
78943 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78944 Date:   Sun Dec 17 18:55:37 2006 +0100
78946     AVR32: Add clk and gpio infrastructure for mmci
78948     Implement functions for configuring the mmci pins, as well as
78949     functions for getting the clock rate of the mmci controller.
78951     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78953 commit 7fac3f69e9f05c5e5326681976c35d129324c4de
78954 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78955 Date:   Sun Dec 17 18:53:56 2006 +0100
78957     Enable partition support with MMC
78959     Include implementations of init_part() and get_partition_info() when
78960     CONFIG_MMC is set.
78962     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78964 commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872
78965 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78966 Date:   Sun Dec 17 17:14:30 2006 +0100
78968     AVR32: Enable networking
78970     Implement MACB initialization for AVR32 and ATSTK1000, and turn
78971     everything on, including the MACB driver.
78973     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78975 commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009
78976 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78977 Date:   Fri Jan 20 10:03:34 2006 +0100
78979     Atmel MACB ethernet driver
78981     Driver for the Atmel MACB on-chip ethernet controller.
78983     This driver has been tested on the ATSTK1000 board with a AT32AP7000
78984     CPU. It should probably work on AT91SAM926x as well with some minor
78985     modifications.
78987     Hardware documentation can be found in the AT32AP7000 data sheet,
78988     which can be downloaded from
78990     http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
78992     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
78994 commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556
78995 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
78996 Date:   Sun Dec 17 16:56:14 2006 +0100
78998     AVR32: Add clk and gpio infrastructure for macb0 and macb1
79000     Implement functions for configuring the macb0 and macb1 pins, as
79001     well as functions for getting the clock rate of the various
79002     busses the macb ethernet controllers are connected to.
79004     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
79006 commit d5acb95b16a0a74c643524342c3437e765426d05
79007 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
79008 Date:   Sun Dec 17 15:39:15 2006 +0100
79010     AVR32: Implement simple DMA memory allocator
79012     Implement dma_alloc_coherent() which returns cache-aligned
79013     uncacheable memory.
79015     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
79017 commit 91975b0fea773c9e681fea8cf3349669f27685ee
79018 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
79019 Date:   Sun Dec 17 15:46:02 2006 +0100
79021     Import <linux/mii.h> from the Linux kernel
79023     Instead of creating yet another set of MII register definitions
79024     in the macb driver, here's a complete set of definitions for everyone
79025     to use.
79027     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
79029 commit 1b804b229556a4d862da93c0ec94e79419364b2c
79030 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
79031 Date:   Wed Mar 21 19:47:36 2007 +0100
79033     AVR32: Include more commands for ATSTK1000
79035     Include the imi, imls and jffs commands sets by default on ATSTK1000.
79036     Also define CONFIG_BOOTARGS to something more useful, define
79037     CONFIG_BOOTCOMMAND and enable autoboot by default.
79039     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
79041 commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d
79042 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
79043 Date:   Wed Mar 21 19:44:48 2007 +0100
79045     AVR32: Provide a definition of struct stat
79047     Copy the definition of struct stat from the Linux kernel.
79049     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
79051 commit 12f099c08167a7a51aeee623bc16dafd0841271c
79052 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
79053 Date:   Sun Dec 17 14:46:06 2006 +0100
79055     AVR32: Use initdram() instead of board_init_memories()
79057     Conform to the "standard" interface and use initdram() instead of
79058     board_init_memories() on AVR32. This enables us to get rid of the
79059     sdram_size member of the global_data struct as well.
79061     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
79063 commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c
79064 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
79065 Date:   Mon Nov 20 15:53:10 2006 +0100
79067     AVR32: Relocate u-boot to SDRAM
79069     Relocate the u-boot image into SDRAM like everyone else does. This
79070     means that we can handle much larger .data and .bss than we used to.
79072     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
79074 commit df548d3c3e2bbc40258713167859ffc2ce99a900
79075 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
79076 Date:   Sun Nov 19 18:06:53 2006 +0100
79078     AVR32: Resource management rewrite
79080     Rewrite the resource management code (i.e. I/O memory, clock gating,
79081     gpio) so it doesn't depend on any global state. This is necessary
79082     because this code is heavily used before relocation to RAM, so we
79083     can't write to any global variables.
79085     As an added bonus, this makes u-boot's memory footprint a bit smaller,
79086     although some functionality has been left out; all clocks are enabled
79087     all the time, and there's no checking for gpio line conflicts.
79089     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
79091 commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9
79092 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
79093 Date:   Sat Nov 18 18:01:13 2006 +0100
79095     AVR32: Clean up memory-map.h for at32ap7000
79097     Convert spaces to tabs (must have missed this one last time around),
79098     sort the entries by address and group them together by bus
79099     connectivity.
79101     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
79103 commit 28c699ef69f4b6cdf252e4747b7b590028a88981
79104 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
79105 Date:   Sat Nov 18 17:32:31 2006 +0100
79107     AVR32: Build position-independent u-boot
79109     Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot
79110     position independent. This will make relocation a lot easier.
79112     -mno-init-got means that gcc shouldn't emit code to load the GOT
79113     address into r6 in every function prologue. We do it once and for
79114     all in the early startup assembly code, so enabling this option
79115     makes u-boot a bit faster and smaller.
79117     The assembly parts have always been position-independent, so no code
79118     changes should be necessary.
79120     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
79122 commit 5374b36de91d006d1df9536259fa9f66b01aa3aa
79123 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
79124 Date:   Sat Nov 18 17:24:31 2006 +0100
79126     AVR32: Use avr32-linux- cross-compilation prefix by default
79128     It doesn't really matter which toolchain you use to compile u-boot,
79129     but the avr32-linux one is probably what most people have installed.
79131     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
79133 commit c841beeddebece0039e724fb27f4d1a39ee1c6b6
79134 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
79135 Date:   Sat Nov 18 17:15:30 2006 +0100
79137     AVR32: Split start_u_boot into board_init_f and board_init_r
79139     Split the avr32 initialization code into a function to run before
79140     relocation, board_init_f and a function to run after relocation,
79141     board_init_r. For now, board_init_f simply calls board_init_r
79142     at the end.
79144     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
79146 commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e
79147 Author: Heiko Schocher <hs@pollux.denx.de>
79148 Date:   Sat Apr 14 05:26:48 2007 +0200
79150     [Fix]       Set the LED status register on the UC101 for the LXT971 PHY.
79151             clear the Display after reset.
79153     Signed-off-by: Heiko Schocher <hs@denx.de>
79155 commit 7882751c78b7ecabfd49b0eff8de27661c71f16c
79156 Author: Denis Peter <d.peter@mpl.ch>
79157 Date:   Fri Apr 13 09:13:33 2007 +0200
79159     [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c
79161     Fix bug introduced by "Fix get_partition_info() parameter error in all
79162     other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented
79163     to use diskboot or scsiboot form another device than 0.
79165     Signed-off-by: Denis Peter <d.peter@mpl.ch>
79167 commit 0b94504d22e70f537c17a0d38c87edb6e370977d
79168 Author: Greg Lopp <lopp@pobox.com>
79169 Date:   Fri Apr 13 08:02:24 2007 +0200
79171     [PATCH] Fix use of "void *" for block dev read/write buffer pointers
79173     Signed-of-by: Greg Lopp <lopp@pobox.com>
79174     Acked-by: Grant Likely <grant.likely@secretlab.ca>
79176 commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9
79177 Author: Xie Xiaobo <r63061@freescale.com>
79178 Date:   Fri Mar 9 19:08:25 2007 +0800
79180     Fix two bugs for MPC83xx DDR2 controller SPD Init
79182     There are a few bugs in the cpu/mpc83xx/spd_sdram.c
79183     the first bug is that the picos_to_clk routine introduces a huge
79184     rounding error in 83xx.
79185     the second bug is that the mode register write recovery field is
79186     tWR-1, not tWR >> 1.
79188 commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13
79189 Author: Jeffrey Mann <mannj@embeddedplanet.com>
79190 Date:   Thu Apr 12 14:15:59 2007 +0200
79192     ppc4xx: Fix i2c divisor calcularion for PPC4xx
79194     This patch fixes changes the i2c_init(...) function to use the function
79195     get_OPB_freq() rather than calculating the OPB speed by
79196     sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is
79197     specific per processor. The prior method was not and so was calculating
79198     the wrong speed for some PPC4xx processors.
79200     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
79201     Signed-off-by: Stefan Roese <sr@denx.de>
79203 commit 6c9ba919375db977aaad9146bf320c7afd07ae7a
79204 Author: Wolfgang Denk <wd@denx.de>
79205 Date:   Wed Apr 11 17:25:01 2007 +0200
79207     Update CHANGELOG
79209     Signed-off-by: Wolfgang Denk <wd@denx.de>
79211 commit 51056dd9863e6a1bc363afbbe1775c58cd967418
79212 Author: Wolfgang Denk <wd@denx.de>
79213 Date:   Wed Apr 11 17:22:55 2007 +0200
79215     Update for SC3 board
79217     * Make IDE timeout configurable through ide_reset_timeout variable.
79218     * Use Newline as "password" string
79219     * Use just a single partition in NAND flash
79221 commit 3d98b85800c80dc68227c8f10bf5c93456d6d054
79222 Author: Haiying Wang <haiying.wang@freescale.com>
79223 Date:   Mon Jan 22 12:37:30 2007 -0600
79225     Add PIXIS FPGA support for MPC8641HPCN board.
79227     Move the 8641HPCN's PIXIS code to the new directory
79228     board/freescale/common/ as it will be shared by
79229     future boards not in the same processor family.
79231     Write a "pixis_reset" command that utilizes the FPGA
79232     reset sequencer to support alternate soft-reset options
79233     such as using the "alternate" flash bank, enabling
79234     the watch dog, or choosing different CPU frequencies.
79236     Add documentation for the pixis_reset to README.mpc8641hpcn.
79238     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
79239     Signed-off-by: Jon Loeliger <jdl@freescale.com>
79241 commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642
79242 Author: Gerald Van Baren <vanbaren@cideas.com>
79243 Date:   Fri Apr 6 14:19:43 2007 -0400
79245     Moved fdt command support code to fdt_support.c
79247     ...in preparation for improving the bootm command's handling of fdt blobs.
79248     Also cleaned up some coding sloppiness.
79250 commit 6679f9299534e488a171a9bb8f9bb891de247aab
79251 Author: Gerald Van Baren <vanbaren@cideas.com>
79252 Date:   Fri Apr 6 14:17:14 2007 -0400
79254     libfdt: Make fdt_check_header() public
79256     Changed _fdt_check_header() to fdt_check_header() and made it part of
79257     the interface - it is a useful routine.
79259     Also did some asthetics cleanup to the include files (headers).
79261 commit c0707ce65677650b5ceab0500ee50ae5168afef2
79262 Author: Aubrey Li <aubrey.adi@gmail.com>
79263 Date:   Thu Apr 5 18:34:06 2007 +0800
79265     [Blackfin][PATCH] Kill off a bunch of common local prototypes
79267 commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d
79268 Author: Aubrey Li <aubrey.adi@gmail.com>
79269 Date:   Thu Apr 5 18:33:04 2007 +0800
79271     [Blackfin][PATCH] Fix dynamic CPLB generation issue
79273 commit 0445e3a264251d75b1be45ef713c70726a2952f0
79274 Author: Aubrey Li <aubrey.adi@gmail.com>
79275 Date:   Thu Apr 5 18:31:47 2007 +0800
79277     [Blackfin][PATCH] minior cleanup
79279 commit 155fd766573981090e638b493d5857562151862e
79280 Author: Aubrey Li <aubrey.adi@gmail.com>
79281 Date:   Thu Apr 5 18:31:18 2007 +0800
79283     [Blackfin][PATCH] Fix copyright and update license
79285 commit 9fd437bbd75d282f899e1da50be20a2bf38450bc
79286 Author: Aubrey Li <aubrey.adi@gmail.com>
79287 Date:   Thu Apr 5 18:30:25 2007 +0800
79289     [Blackfin][PATCH] Add BF537 EMAC driver initialization
79291 commit 889256e8604e0c68db1d866d720894dffede9df6
79292 Author: Aubrey Li <aubrey.adi@gmail.com>
79293 Date:   Thu Apr 5 18:29:55 2007 +0800
79295     [Blackfin][PATCH] call real the system synchronize instruction
79297 commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05
79298 Author: Aubrey Li <aubrey.adi@gmail.com>
79299 Date:   Thu Apr 5 18:29:17 2007 +0800
79301     [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it
79303 commit dfeeab2cd680df047e68e723b246adf6f33bb556
79304 Author: Aubrey Li <aubrey.adi@gmail.com>
79305 Date:   Thu Apr 5 18:28:34 2007 +0800
79307     [Blackfin][PATCH]: fix flash unaligned copy issue
79309 commit 443feb740584e406efa203af909fe2926608e8d5
79310 Author: Igor Marnat <marny@rambler.ru>
79311 Date:   Wed Mar 21 09:55:01 2007 +0300
79313     Update usage of 'nc' in README.NetConsole
79315     Added information about usage of NetConsole on systems where the -l and -p
79316     switches are mutually exclusive.
79318     Signed-off-by: Igor Marnat <marny@rambler.ru>
79319     Signed-off-by: Ben Warren <bwarren@qstreams.com>
79321 commit 31c98a88228021b314c89ebb8104fb6473da4471
79322 Author: Wolfgang Denk <wd@denx.de>
79323 Date:   Wed Apr 4 02:09:30 2007 +0200
79325     Minor coding style cleanup.
79327 commit 94abd7c0583ebe01e799b25f451201deeaab550d
79328 Author: Wolfgang Denk <wd@denx.de>
79329 Date:   Wed Apr 4 01:49:15 2007 +0200
79331     Minor cleanup.
79333 commit 822af351ad2babc7d99033361a5fcacd30f6bc78
79334 Author: Rodolfo Giometti <giometti@enneenne.com>
79335 Date:   Tue Apr 3 14:27:18 2007 +0200
79337     Support for the Philips ISP116x HCD (Host Controller Driver)
79339     Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
79341 commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8
79342 Author: Markus Klotzbuecher <mk@denx.de>
79343 Date:   Tue Apr 3 14:27:08 2007 +0200
79345     USB: cleanup monahans usb support. Remove dead code.
79347     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
79349 commit a65c5768e5537530bd1780af3d3fddc3113a163c
79350 Author: Stefan Roese <sr@denx.de>
79351 Date:   Mon Apr 2 10:09:30 2007 +0200
79353     ppc4xx: Change SysACE address on Katmai
79355     With this new base address of the Xilinx SystemACE controller
79356     the Linux driver will be easier to adapt, since it can now be
79357     mapped via the "normal" ioremap() call.
79359     Signed-off-by: Stefan Roese <sr@denx.de>
79361 commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73
79362 Author: Gerald Van Baren <vanbaren@cideas.com>
79363 Date:   Sat Mar 31 14:30:53 2007 -0400
79365     Fix some minor whitespace violations.
79367 commit 213bf8c822de8eecaf69860684469cdaba2e9e6a
79368 Author: Gerald Van Baren <vanbaren@cideas.com>
79369 Date:   Sat Mar 31 12:23:51 2007 -0400
79371     Add a flattened device tree (fdt) command (2 of 2)
79373     Modifications to the existing code to support the new fdt command.
79375 commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e
79376 Author: Gerald Van Baren <vanbaren@cideas.com>
79377 Date:   Sat Mar 31 12:22:10 2007 -0400
79379     Add a flattened device tree (fdt) command (1 of 2)
79381     The fdt command uses David Gibson's libfdt library to manipulate as well
79382     as print the flattened device tree.  This patch is the new command,
79383     the second part is the modifications to the existing code.
79385 commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e
79386 Author: Gerald Van Baren <vanbaren@cideas.com>
79387 Date:   Sat Mar 31 12:13:43 2007 -0400
79389     libfdt: Enhanced and published fdt_next_tag()
79391     Enhanced the formerly private function _fdt_next_tag() to allow stepping
79392       through the tree, used to produce a human-readable dump, and made
79393       it part of the published interface.
79394     Also added some comments.
79396 commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71
79397 Author: Gerald Van Baren <vanbaren@cideas.com>
79398 Date:   Sat Mar 31 12:05:39 2007 -0400
79400     libfdt: Customizations for use by u-boot.
79402     Changes to David Gibson's original source to fit into u-boot's
79403     environment.  No functionality changes.
79405 commit 35748177c64a4a83a00057e93bb33e40278a2a96
79406 Author: Gerald Van Baren <vanbaren@cideas.com>
79407 Date:   Sat Mar 31 12:00:56 2007 -0400
79409     libfdt: Import libfdt source (2 of 2)
79411     This adds the applicable libfdt source files (unmodified) and a README
79412     to explain where the source came from.
79414 commit 7cd5da0fe877e7171a4cdd44880bce783132871a
79415 Author: Gerald Van Baren <vanbaren@cideas.com>
79416 Date:   Sat Mar 31 11:59:59 2007 -0400
79418     libfdt: Import libfdt source (1 of 2)
79420     This adds the applicable libfdt source files (unmodified) and a README
79421     to explain where the source came from.
79423 commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b
79424 Author: Stefan Roese <sr@denx.de>
79425 Date:   Sat Mar 31 13:16:23 2007 +0200
79427     ppc4xx: Update Katmai bootstrap command
79429     Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB
79430     is selected.
79432     Signed-off-by: Stefan Roese <sr@denx.de>
79434 commit cabee756a6532986729477c3cc1ea16ef8517ad2
79435 Author: Stefan Roese <sr@denx.de>
79436 Date:   Sat Mar 31 13:15:06 2007 +0200
79438     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
79440     Additional RAM information is now printed upon powerup, like
79441     DDR2 frequency and CAS latency.
79443     Signed-off-by: Stefan Roese <sr@denx.de>
79445 commit 60723803431ac75cad085690789e433d5ab9174e
79446 Author: Stefan Roese <sr@denx.de>
79447 Date:   Sat Mar 31 08:48:36 2007 +0200
79449     ppc4xx: Change Yucca config file to support ECC
79451     With the updated 44x DDR2 driver the Yucca board now supports
79452     ECC generation and checking.
79454     Signed-off-by: Stefan Roese <sr@denx.de>
79456 commit 490e5730c674b20d708b783a2c5ffd7208f83873
79457 Author: Stefan Roese <sr@denx.de>
79458 Date:   Sat Mar 31 08:47:34 2007 +0200
79460     ppc4xx: Fix "bootstrap" command for Katmai board
79462     The board specific "bootstrap" command is now fixed and can
79463     be used for the AMCC Katmai board to configure different
79464     CPU/PLB/OPB frequencies.
79466     Signed-off-by: Stefan Roese <sr@denx.de>
79468 commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1
79469 Author: Stefan Roese <sr@denx.de>
79470 Date:   Sat Mar 31 08:46:08 2007 +0200
79472     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
79474     Fix a bug in the auto calibration routine. This driver now runs
79475     more reliable with the tested modules. It's also tested with
79476     167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai.
79478     Signed-off-by: Stefan Roese <sr@denx.de>
79480 commit 342cd097be1e7affe82f42ab3da220959a699e64
79481 Author: Michal Simek <monstr@monstr.eu>
79482 Date:   Fri Mar 30 22:52:09 2007 +0200
79484     [PATCH] Clean include dependence
79486 commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906
79487 Author: Michal Simek <monstr@monstr.eu>
79488 Date:   Fri Mar 30 22:42:45 2007 +0200
79490     [CLEAN] Remove inefficient Suzaku code
79492 commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d
79493 Author: Stefan Roese <sr@denx.de>
79494 Date:   Wed Mar 28 15:03:16 2007 +0200
79496     Merge some AMCC make targets to keep the top-level Makefile smaller
79498     Signed-off-by: Stefan Roese <sr@denx.de>
79500 commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e
79501 Author: Stefan Roese <sr@denx.de>
79502 Date:   Wed Mar 28 14:52:12 2007 +0200
79504     i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined
79506     The "old" i2c commands (iprobe, imd...) are now compiled in again,
79507     even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE
79508     config option.
79510     Signed-off-by: Stefan Roese <sr@denx.de>
79512 commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a
79513 Author: Michal Simek <monstr@monstr.eu>
79514 Date:   Tue Mar 27 00:32:16 2007 +0200
79516     PATCH: Resolve GPL license problem
79518 commit ae00bb4b2944dc64a485ed72a19754b11af7c223
79519 Author: Rodolfo Giometti <giometti@enneenne.com>
79520 Date:   Mon Mar 26 12:03:36 2007 +0200
79522     PXA: pxa27x USB OHCI support
79524     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
79526 commit ae79f60677c208326535647dcbd5c3ec40dbcb0b
79527 Author: Markus Klotzbuecher <mk@denx.de>
79528 Date:   Mon Mar 26 11:21:05 2007 +0200
79530     USB: remove the S3C24X0_merge #define, which was introduced while
79531     merging OHCI drivers.
79533     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
79535 commit 1798049522f594013aea29457d46794298c6ae15
79536 Author: Michal Simek <root@monstr.eu>
79537 Date:   Mon Mar 26 01:39:07 2007 +0200
79539     Support for XUPV2P board
79540     Reset support
79541     BSP autoconfig support
79543 commit 0d974d5297349504a2ddfa09314be573b5df320a
79544 Author: Stefan Roese <sr@denx.de>
79545 Date:   Sat Mar 24 15:57:09 2007 +0100
79547     [PATCH] Add 4xx GPIO functions
79549     This patch adds some 4xx GPIO functions. It also moves some of the
79550     common code and defines into a common 4xx GPIO header file.
79552     Signed-off-by: Stefan Roese <sr@denx.de>
79554 commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11
79555 Author: Stefan Roese <sr@denx.de>
79556 Date:   Sat Mar 24 15:55:58 2007 +0100
79558     [PATCH] Small Sequoia cleanup
79560     Signed-off-by: Stefan Roese <sr@denx.de>
79562 commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf
79563 Author: Stefan Roese <sr@denx.de>
79564 Date:   Sat Mar 24 15:45:34 2007 +0100
79566     [PATCH] Clean up 40EZ/Acadia support
79568     This patch cleans up all the open issue of the preliminary
79569     Acadia support.
79571     Signed-off-by: Stefan Roese <sr@denx.de>
79573 commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997
79574 Author: Jon Loeliger <jdl@freescale.com>
79575 Date:   Tue Dec 12 11:02:20 2006 -0600
79577     Fix 8641HPCN problem with ld version 2.16
79579     (Dot outside sections problem).
79581     This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540.
79583     Signed-off-by: Jon Loeliger <jdl@freescale.com>
79585 commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c
79586 Author: Haiying Wang <haiying.wang@freescale.com>
79587 Date:   Thu Dec 7 10:35:55 2006 -0600
79589     Set Rev 2.x 86xx PIC in mixed mode.
79591     Prevent false interrupt from hanging Linux as MSR[EE] is set
79592     to enable interrupts by changing the PIC out of the default
79593     pass through mode into mixed mode.
79595     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
79596     Signed-off-by: Jon Loeliger <jdl@freescale.com>
79598 commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e
79599 Author: Jason Jin <jason.jin@freescale.com>
79600 Date:   Thu Dec 7 10:32:35 2006 -0600
79602     Add flash cmd function to 8641HPCN ramboot
79604     Also fixes some commmand for 8641 HPCN ramboot case.
79606     Signed-off-by: Jason Jin <jason.jin@freescale.com>
79607     Signed-off-by: Jon Loeliger <jdl@freescale.com>
79609 commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46
79610 Author: Ed Swarthout <ed.swarthout@freescale.com>
79611 Date:   Thu Dec 7 10:34:14 2006 -0600
79613     Add support for 8641 Rev 2 silicon.
79615     Without this patch, I am unable to get to the prompt on rev 2 silicon.
79616     Only set ddrioovcr for rev1.
79618     Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com>
79619     Signed-off-by: Jon Loeliger <jdl@freescale.com>
79621 commit 44ba464b99001f8bd1c456a1e9d59726252f707a
79622 Author: Wolfgang Denk <wd@denx.de>
79623 Date:   Thu Mar 22 00:13:12 2007 +0100
79625     Code cleanup / re-insert previous Copyright entries.
79627     Signed-off-by: Wolfgang Denk <wd@denx.de>
79629 commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302
79630 Author: Wolfgang Denk <wd@denx.de>
79631 Date:   Wed Mar 21 23:26:15 2007 +0100
79633     Code cleanup. Update CHANGELOG
79635 commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286
79636 Author: Stefan Roese <sr@denx.de>
79637 Date:   Wed Mar 21 14:54:29 2007 +0100
79639     ppc4xx: Fix file mode of include/configs/acadia.h
79641     Signed-off-by: Stefan Roese <sr@denx.de>
79643 commit d5f4614c9350d9333e575100fb250aab774d0258
79644 Author: Markus Klotzbuecher <mk@denx.de>
79645 Date:   Wed Mar 21 14:41:46 2007 +0100
79647     SPC1920: fix small clock routing bug
79649     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
79651 commit 16c0cc1c82081a493ab87c51980b28336ce1bce8
79652 Author: Stefan Roese <sr@denx.de>
79653 Date:   Wed Mar 21 13:39:57 2007 +0100
79655     [PATCH] Add AMCC Acadia (405EZ) eval board support
79657     This patch adds support for the new AMCC Acadia eval board.
79659     Please note that this Acadia/405EZ support is still in a beta stage.
79660     Still lot's of cleanup needed but we need a preliminary release now.
79662     Signed-off-by: Stefan Roese <sr@denx.de>
79664 commit e01bd218b00af73499331a1a701625a852cd286f
79665 Author: Stefan Roese <sr@denx.de>
79666 Date:   Wed Mar 21 13:38:59 2007 +0100
79668     [PATCH] Add AMCC PPC405EZ support
79670     This patch adds support for the new AMCC 405EZ PPC. It is in
79671     preparation for the AMCC Acadia board support.
79673     Please note that this Acadia/405EZ support is still in a beta stage.
79674     Still lot's of cleanup needed but we need a preliminary release now.
79676     Signed-off-by: Stefan Roese <sr@denx.de>
79678 commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1
79679 Author: Heiko Schocher <hs@pollux.denx.de>
79680 Date:   Wed Mar 21 08:45:17 2007 +0100
79682     [PATCH] TQM8272: dont change the bits given from the HRCW
79683                      for the SIUMCR and BCR Register.
79684                      Fix the calculation for the EEprom Size
79686     Signed-off-by: Heiko Schocher <hs@denx.de>
79688 commit 654589873dbafcf104dff133ce0d03a4506e9cc3
79689 Author: Aubrey Li <aubrey.adi@gmail.com>
79690 Date:   Tue Mar 20 18:16:24 2007 +0800
79692     [Blackfin][PATCH] Add BF561 EZKIT board support
79694 commit a6154fd1cfd020f6da8527e0365b1020a11a71d0
79695 Author: Aubrey Li <aubrey.adi@gmail.com>
79696 Date:   Mon Mar 19 22:55:58 2007 +0800
79698     [Blackfin][PATCH] minor cleanup
79700 commit 389b6bb50f745bf5038ce030300d8a8512e96f79
79701 Author: Wolfgang Denk <wd@denx.de>
79702 Date:   Mon Mar 19 13:10:08 2007 +0100
79704     Remove obsoleted POST files.
79706     Signed-off-by: Wolfgang Denk <wd@denx.de>
79708 commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6
79709 Author: Aubrey Li <aubrey.adi@gmail.com>
79710 Date:   Mon Mar 19 01:26:11 2007 +0800
79712     [PATCH] Add flash chip M29W320ET/B support
79714 commit 26bf7deca364a5b33f39e8f14ddd3f4081345015
79715 Author: Aubrey Li <aubrey.adi@gmail.com>
79716 Date:   Mon Mar 19 01:24:52 2007 +0800
79718     [Blackfin][PATCH] Add BF537 stamp board support
79720 commit 8423e5e31a7235d05a482627315fb11d49c17bd7
79721 Author: Stefan Roese <sr@denx.de>
79722 Date:   Fri Mar 16 21:11:42 2007 +0100
79724     [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board
79726     Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
79727     DDR memory are dynamically programmed matching the total size
79728     of the equipped memory (DIMM modules).
79730     Signed-off-by: Stefan Roese <sr@denx.de>
79732 commit 76d1466f918b881cda2d259254761e73885093c2
79733 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79734 Date:   Tue Mar 13 13:38:05 2007 +0100
79736     [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405
79737             boards in terms of unification.
79739     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79741 commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0
79742 Author: Wolfgang Denk <wd@denx.de>
79743 Date:   Tue Mar 13 16:05:55 2007 +0100
79745     Make SC3 board build with 'make O='; use 'addcons' consistently
79746     (SC3 and Jupiter used to use 'addcon' instead).
79748     Signed-off-by: Wolfgang Denk wd@denx.de
79750 commit 8502e30a28e492c756ea2d7df0ace026388fce4b
79751 Author: Heiko Schocher <hs@pollux.denx.de>
79752 Date:   Tue Mar 13 09:40:59 2007 +0100
79754     [PATCH] update board config for jupiter Board:
79755             added Hush Shell,
79756                   CONFIG_CMDLINE_EDITING,
79757                   CFG_ENV_ADDR_REDUND activated
79759     Signed-off-by: Heiko Schocher <hs@denx.de>
79761 commit 0d93de11449390a5984b0236c3612e50f6dbb7e8
79762 Author: Aubrey Li <aubrey.adi@gmail.com>
79763 Date:   Mon Mar 12 12:11:55 2007 +0800
79765     [Blackfin][PATCH] minor cleanup
79767 commit bfa5754a58477ac917d21527cd0f079d87cf188e
79768 Author: Aubrey Li <aubrey.adi@gmail.com>
79769 Date:   Mon Mar 12 01:42:06 2007 +0800
79771     [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue
79773 commit 8440bb14581a294375c34b91b42512f9753d1130
79774 Author: Aubrey Li <aubrey.adi@gmail.com>
79775 Date:   Mon Mar 12 00:25:14 2007 +0800
79777     [Blackfin][PATCH] code cleanup
79779 commit cfc67116a706fd18b8f6a9c11a16753c5626d689
79780 Author: Michal Simek <monstr@monstr.eu>
79781 Date:   Sun Mar 11 13:48:24 2007 +0100
79783     [Microblaze][PATCH] part 2
79784     timer support
79785     interrupt controller support
79786     flash support
79787     ethernet support
79788     cache support
79789     board information support
79790     env support
79791     booting image support
79793     adding support for Xilinx ML401
79795 commit 76316a318de91f6184e7c22a10e02d275ade2441
79796 Author: Michal Simek <monstr@monstr.eu>
79797 Date:   Sun Mar 11 13:42:58 2007 +0100
79799     [Microblaze][PATCH]
79800     timer support
79801     interrupt controller support
79802     flash support
79803     ethernet support
79804     cache support
79805     board information support
79806     env support
79807     booting image support
79809     adding support for Xilinx ML401
79811 commit 8db13d63157811c839d15a313d9f2d2f5fd10af3
79812 Author: Aubrey Li <aubrey.adi@gmail.com>
79813 Date:   Sat Mar 10 23:49:29 2007 +0800
79815     [Blackfin][PATCH] code cleanup
79817 commit ef26a08fef928b7bc11ae2c109e638dc3a016d91
79818 Author: Aubrey.Li <aubrey.adi@gmail.com>
79819 Date:   Fri Mar 9 13:40:56 2007 +0800
79821     [Blackfin][PATCH-2/2] Common files changed to support bf533 platform
79823 commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f
79824 Author: Aubrey.Li <aubrey.adi@gmail.com>
79825 Date:   Fri Mar 9 13:38:44 2007 +0800
79827     [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
79829 commit 992423ab43c2bcf6b704853bd00af77450915e20
79830 Author: Stefan Roese <sr@denx.de>
79831 Date:   Thu Mar 8 23:00:08 2007 +0100
79833     ppc4xx: Fix file mode of sequoia.c
79835     Signed-off-by: Stefan Roese <sr@denx.de>
79837 commit eb92f613556800f7483666db09d9a237ad911d4a
79838 Author: Wolfgang Denk <wd@pollux.denx.de>
79839 Date:   Thu Mar 8 22:52:51 2007 +0100
79841     Minor cleanup.
79843 commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1
79844 Author: John Otken john@softadvances.com <john@softadvances.com>
79845 Date:   Thu Mar 8 09:39:48 2007 -0600
79847     ppc4xx: Clear Sequoia/Rainier security engine reset bits
79849     Signed-off-by: John Otken john@softadvances.com <john@softadvances.com>
79851 commit 650a330dd2539130c8c324791e2f9f75aed79d4e
79852 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79853 Date:   Thu Mar 8 16:26:52 2007 +0100
79855     [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules
79857     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79859 commit d9fc703246840c4b268debf48c334ba55c597dc0
79860 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79861 Date:   Thu Mar 8 16:25:47 2007 +0100
79863     [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined
79865     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79867 commit ced5b9029043397348cdc88e0cfcd6b1f629250b
79868 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79869 Date:   Thu Mar 8 16:23:11 2007 +0100
79871     [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS
79873     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79875 commit d8a8ea5c476d37006fc7f85b7f903142795c8b14
79876 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79877 Date:   Thu Mar 8 16:20:32 2007 +0100
79879     [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM
79881     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79883 commit f9fc6a5852a6335840882fa2111925010eea1abe
79884 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79885 Date:   Wed Mar 7 15:32:01 2007 +0100
79887     fixed ethernet phy configuration for plu405 board
79889     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
79891 commit 769104c9356594deb2092e204a39c05b33202d6c
79892 Author: Wolfgang Denk <wd@pollux.denx.de>
79893 Date:   Thu Mar 8 21:49:27 2007 +0100
79895     Minor cleanup
79897 commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa
79898 Author: Stefan Roese <sr@denx.de>
79899 Date:   Thu Mar 8 10:13:16 2007 +0100
79901     [PATCH] Update AMCC Luan 440SP eval board support
79903     The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR
79904     inititializition. This includes DDR auto calibration and support
79905     for different DIMM modules, instead of the fixed setup used in
79906     the earlier version.
79908     This patch also enables the cache in FLASH for the startup
79909     phase of U-Boot (while running from FLASH). After relocating to
79910     SDRAM the cache is disabled again. This will speed up the boot
79911     process, especially the SDRAM setup, since there are some loops
79912     for memory testing (auto calibration).
79914     Signed-off-by: Stefan Roese <sr@denx.de>
79916 commit 2f5df47351910a2936c7741cf111855829200943
79917 Author: Stefan Roese <sr@denx.de>
79918 Date:   Thu Mar 8 10:10:18 2007 +0100
79920     [PATCH] Update AMCC Yucca 440SPe eval board support
79922     The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR
79923     inititializition. This includes DDR auto calibration and support
79924     for different DIMM modules, instead of the fixed setup used in
79925     the earlier version.
79927     Signed-off-by: Stefan Roese <sr@denx.de>
79929 commit 2721a68a9ea91f1e494649ce68b2577261f578e2
79930 Author: Stefan Roese <sr@denx.de>
79931 Date:   Thu Mar 8 10:07:18 2007 +0100
79933     ppc4xx: Small AMCC Katmai 440SPe update
79935     Signed-off-by: Stefan Roese <sr@denx.de>
79937 commit df294497479b1dca6dd86318b2a912f72fede0df
79938 Author: Stefan Roese <sr@denx.de>
79939 Date:   Thu Mar 8 10:06:09 2007 +0100
79941     ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP
79943     Signed-off-by: Stefan Roese <sr@denx.de>
79945 commit 83853178bd36bca6f0f8f1331476620c84a587fc
79946 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
79947 Date:   Wed Mar 7 12:14:50 2007 -0600
79949     net - Support ping reply when processing net-loop
79951     Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY.
79953     This permits the ping command to test the phy interface when the phy
79954     is put in loopback mode (typically by setting register 0 bit 14).
79956     It also allows the port to respond to an external ping when u-boot is
79957     processing some other net command (such as tftp).  This is useful when
79958     tftp appears to hang.
79960     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
79961     Signed-off-by: Ben Warren <bwarren@qstreams.com>
79963 commit fa1aef15bcd47736687be1af544506e90fba545d
79964 Author: Stefan Roese <sr@denx.de>
79965 Date:   Wed Mar 7 16:43:00 2007 +0100
79967     [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board
79969     Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
79970     DDR memory are dynamically programmed matching the total size
79971     of the equipped memory (DIMM modules).
79973     Signed-off-by: Stefan Roese <sr@denx.de>
79975 commit e2ebe696818939e2b974628be9c921ea3fe9de13
79976 Author: Stefan Roese <sr@denx.de>
79977 Date:   Wed Mar 7 16:39:36 2007 +0100
79979     [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's
79981     This patch fixes a problem that occurs when 2 DIMM's are
79982     used. This problem was first spotted and fixed by Gerald Jackson
79983     <gerald.jackson@reaonixsecurity.com> but this patch fixes the
79984     problem in a little more clever way.
79986     This patch also adds the nice functionality to dynamically
79987     create the TLB entries for the SDRAM (tlb.c). So we should
79988     never run into such problems with wrong (too short) TLB
79989     initialization again on these platforms.
79991     As this feature is new to the "old" 44x SPD DDR driver, it
79992     has to be enabled via the CONFIG_PROG_SDRAM_TLB define.
79994     Signed-off-by: Stefan Roese <sr@denx.de>
79996 commit 39218433983417b9df087976a79e3f80dd5e83d6
79997 Author: Wolfgang Denk <wd@denx.de>
79998 Date:   Wed Mar 7 16:33:44 2007 +0100
80000     UC101: fix compiler warnings
80002 commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce
80003 Author: Wolfgang Denk <wd@pollux.denx.de>
80004 Date:   Wed Mar 7 16:19:46 2007 +0100
80006     HMI1001: fix build error, cleanup compiler warnings.
80008 commit ad5bb451ade552c44bef9119d907929ebc2c126f
80009 Author: Wolfgang Denk <wd@pollux.denx.de>
80010 Date:   Tue Mar 6 18:08:43 2007 +0100
80012     Restructure POST directory to support of other CPUs, boards, etc.
80014 commit a5284efd125967675b2e9c6ef7b95832268ad360
80015 Author: Wolfgang Denk <wd@pollux.denx.de>
80016 Date:   Tue Mar 6 18:01:47 2007 +0100
80018     Fix HOSTARCH handling.
80019     Patch by Mike Frysinger, Mar 05 2007
80021 commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44
80022 Author: Stefan Roese <sr@denx.de>
80023 Date:   Tue Mar 6 07:47:04 2007 +0100
80025     [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup
80027     As provided by the AMCC applications team, this patch optimizes the
80028     DDR2 setup for 166MHz bus speed. The values provided are also save
80029     to use on a "normal" 133MHz PLB bus system. Only the refresh counter
80030     setup has to be adjusted as done in this patch.
80032     For this the NAND booting version had to include the "speed.c" file
80033     from the cpu/ppc4xx directory. With this addition the NAND SPL image
80034     will just fit into the 4kbytes of program space. gcc version 4.x as
80035     provided with ELDK 4.x is needed to generate this optimized code.
80037     Signed-off-by: Stefan Roese <sr@denx.de>
80039 commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68
80040 Author: Wolfgang Denk <wd@pollux.denx.de>
80041 Date:   Sun Mar 4 01:36:05 2007 +0100
80043     Some code cleanup.
80045 commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148
80046 Author: Kim Phillips <kim.phillips@freescale.com>
80047 Date:   Wed Feb 28 00:02:04 2007 -0600
80049     mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
80051     (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit)
80053 commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf
80054 Author: Kumar Gala <galak@kernel.crashing.org>
80055 Date:   Tue Feb 27 23:51:42 2007 -0600
80057     mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
80059     The config value for:
80060     * CFG_ACR_PIPE_DEP
80061     * CFG_ACR_RPTCNT
80062     * CFG_SPCR_TSEC1EP
80063     * CFG_SPCR_TSEC2EP
80064     * CFG_SCCR_TSEC1CM
80065     * CFG_SCCR_TSEC2CM
80067     Were not being used when setting the appropriate register
80069     Added:
80070     * CFG_SCCR_USBMPHCM
80071     * CFG_SCCR_USBDRCM
80072     * CFG_SCCR_PCICM
80073     * CFG_SCCR_ENCCM
80075     To allow full config of the SCCR.
80077     Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349
80078     that were just bogus.
80080     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
80082 commit d51b3cf371cd441030460ef19d36b2924c361b1a
80083 Author: Kim Phillips <kim.phillips@freescale.com>
80084 Date:   Thu Feb 22 20:06:57 2007 -0600
80086     mpc83xx: update [local-]mac-address properties on UEC based devices
80088     8360 and 832x weren't updating their [local-]mac-address
80089     properties. This patch fixes that.
80091     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
80093 commit 61f4f912acbe60776c5e00df1ec94094ce672957
80094 Author: Timur Tabi <timur@freescale.com>
80095 Date:   Tue Feb 13 10:41:42 2007 -0600
80097     mpc83xx: write MAC address to mac-address and local-mac-address
80099     Some device trees have a mac-address property, some have local-mac-address,
80100     and some have both.  To support all of these device trees, this patch
80101     updates ftp_cpu_setup() to write the MAC address to mac-address if it exists.
80102     This function already updates local-mac-address.
80104     Signed-off-by: Timur Tabi <timur@freescale.com>
80106 commit 22d71a71f57fd5d38b27ac3848e50d790360a598
80107 Author: Kim Phillips <kim.phillips@freescale.com>
80108 Date:   Tue Feb 27 18:41:08 2007 -0600
80110     mpc83xx: add command line editing by default
80112 commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca
80113 Author: Kim Phillips <kim.phillips@freescale.com>
80114 Date:   Wed Feb 14 19:50:53 2007 -0600
80116     mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers
80118     Disable G1TXCLK, G2TXCLK h/w buffers. This patch
80119     fixes a networking timeout issue with MPC8360EA (Rev.2) PBs.
80121     Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards.
80123     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
80124     Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com>
80126 commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f
80127 Author: Xie Xiaobo <r63061@freescale.com>
80128 Date:   Wed Feb 14 18:27:17 2007 +0800
80130     mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
80132     The code supply fixed and SPD initialization for MPC83xx DDR2 Controller.
80133     it pass DDR/DDR2 compliance tests.
80135     Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
80137 commit b110f40bd180c6b560276589beedf753e97c46ce
80138 Author: Xie Xiaobo <r63061@freescale.com>
80139 Date:   Wed Feb 14 18:27:06 2007 +0800
80141     mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS
80143     MPC8360E rev2.0 have new spridr,and PVR value,
80144     The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM.
80146     Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
80148 commit 8d172c0f0d85998a256a95b7459a5403a30380ed
80149 Author: Xie Xiaobo <r63061@freescale.com>
80150 Date:   Wed Feb 14 18:26:44 2007 +0800
80152     mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS
80154     MPC8349E rev3.1 have new spridr,and PVR value,
80155     The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM.
80157     Signed-off-by: Xie Xiaobo<X.Xie@freescale.com>
80159 commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b
80160 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
80161 Date:   Wed Jan 31 11:04:19 2007 +0100
80163     mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
80165     Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0)
80166     which is used to se if an slave will ACK after receiving its address.
80168     Correct i2c probing to use this method as the old method could upset
80169     a slave as it wrote a data byte to it.
80171     Add a small delay in i2c_init() to let the controller
80172     shutdown any ongoing I2C activity.
80174     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
80176 commit 7a78f148d6a7298e4fface680dc7eacd877b1aba
80177 Author: Timur Tabi <timur@freescale.com>
80178 Date:   Wed Jan 31 15:54:29 2007 -0600
80180     mpc83xx: Add support for the MPC8349E-mITX-GP
80182     Add support for the MPC8349E-mITX-GP, a stripped-down version of the
80183     MPC8349E-mITX.  Bonus features include support for low-boot (BMS bit in
80184     HRCW is 0) for the ITX and a README for the ITX and the ITX-GP.
80186     Signed-off-by: Timur Tabi <timur@freescale.com>
80188 commit fab16807adad350f618024350c6950165c247c72
80189 Author: Timur Tabi <timur@freescale.com>
80190 Date:   Wed Jan 31 15:54:20 2007 -0600
80192     mpc83xx: Delete sdram_init() for MPC8349E-mITX
80194     There is no SDRAM on any of the 8349 ITX variants, so function sdram_init()
80195     never does anything.  This patch deletes it.
80197     Signed-off-by: Timur Tabi <timur@freescale.com>
80199 commit a87c856eb411b9365937d0d4b9c21e46adbe1c14
80200 Author: Dave Liu <daveliu@freescale.com>
80201 Date:   Fri Jan 19 10:43:26 2007 +0800
80203     mpc83xx: Fix the LAW1/3 bug
80205     The patch solves the alignment problem of the local bus access windows to
80206     render accessible the memory bank and PHY registers of UPC 1 (starting at
80207     0xf801 0000). What we actually did was to adjust the sizes of the bus
80208     access windows so that the base address alignment requirement would be met.
80210     Signed-off-by: Chereji Marian <marian.chereji@freescale.com>
80211     Signed-off-by: Gridish Shlomi <gridish@freescale.com>
80212     Signed-off-by: Dave Liu <daveliu@freescale.com>
80214 commit 97c4b397dce236a7318b304667bf89e59d08b17c
80215 Author: Kim Phillips <kim.phillips@freescale.com>
80216 Date:   Tue Jan 30 16:15:31 2007 -0600
80218     mpc83xx: don't hang if watchdog configured on 8360, 832x
80220     don't hang if watchdog configured on 8360, 832x
80222     The watchdog programming model is the same across all 83xx devices;
80223     make the code reflect that.
80225 commit b70047478570e371ce7223be342ce98afea0f7d6
80226 Author: Kim Phillips <kim.phillips@freescale.com>
80227 Date:   Tue Jan 30 16:15:21 2007 -0600
80229     mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt
80231     protect memcpy to bad address if a local-mac-address is missing from dt
80233 commit 6752ed088c75c26a89b70c46b7326a4cd6015f29
80234 Author: Kim Phillips <kim.phillips@freescale.com>
80235 Date:   Tue Jan 30 16:15:04 2007 -0600
80237     mpc83xx: make 8360 default environment fdt be 8360 (not 8349)
80239     make 8360 default environment fdt be 8360 (not 8349)
80241 commit a28899c910024a0226331df07207b1038c300c93
80242 Author: Emilian Medve <Emilian.Medve@freescale.com>
80243 Date:   Tue Jan 30 16:14:50 2007 -0600
80245     mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
80247     The problem is not gcc4 but the code itself. The BD_STATUS() macro can't
80248     be used for busy-waiting since it strips the 'volatile' property from
80249     the bd variable. gcc3 was working by pure luck.
80251     This is a follow on patch to "Fix the UEC driver bug of QE"
80253 commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89
80254 Author: Kumar Gala <galak@kernel.crashing.org>
80255 Date:   Tue Jan 30 14:08:30 2007 -0600
80257     mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead
80259     The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all
80260     MPC834X class processors.  Change the protections from CONFIG_MPC8349 to
80261     CONFIG_MPC834X so they are more generic.
80263     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
80265 commit ae246dc6c1937c291014eadd90b6d48c438c7cb0
80266 Author: Kim Phillips <kim.phillips@freescale.com>
80267 Date:   Thu Jan 25 13:40:55 2007 -0600
80269     mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL
80271 commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
80272 Author: Kim Phillips <kim.phillips@freescale.com>
80273 Date:   Wed Jan 24 17:18:37 2007 -0600
80275     mpc83xx: sort Makefile targets
80277     reordered targets alphabetically
80279 commit 91e25769771c1164ed63ffca0add49f934ae3343
80280 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
80281 Date:   Tue Jan 16 11:38:14 2007 -0500
80283     mpc83xx: U-Boot support for Wind River SBC8349
80285     I've redone the SBC8349 support to match git-current, which
80286     incorporates all the MPC834x updates from Freescale since the 1.1.6
80287     release,  including the DDR changes.
80289     I've kept all the SBC8349 files as parallel as possible to the
80290     MPC8349EMDS ones for ease of maintenance and to allow for easy
80291     inspection of what was changed to support this board.  Hence the SBC8349
80292     U-Boot has FDT support and everything else that the MPC8349EMDS has.
80294     Fortunately the Freescale updates added support for boards using CS0,
80295     but I had to change spd_sdram.c to allow for board specific settings for
80296     the sdram_clk_cntl (it is/was hard coded to zero, and that remains the
80297     default if the board doesn't specify a value.)
80299     Hopefully this should be mergeable as-is and require no whitespace
80300     cleanups or similar, but if something doesn't measure up then let me
80301     know and I'll fix it.
80303     Thanks,
80304     Paul.
80306 commit 05031db456ab227f3e3752f37b9b812b65bb83ad
80307 Author: Sam Song <samsongshu@yahoo.com.cn>
80308 Date:   Thu Dec 14 19:03:21 2006 +0800
80310     mpc83xx: Remove a redundant semicolon in mpc8349itx.c
80312     A redundant semicolon existed in mpc8349itx.c
80313     should be removed.
80315     Signed-off-by: Sam Song <samsongshu@yahoo.com.cn>
80317 commit f35f358241c549be3f75cfe2eaa642914275b7ba
80318 Author: Jerry Van Baren <gerald.vanbaren@comcast.net>
80319 Date:   Wed Dec 6 21:23:55 2006 -0500
80321     mpc83xx: Put the version (and magic) after the HRCW.
80323     Put the version (and magic) after the HRCW.  This puts it in a fixed
80324     location in flash, not at the start of flash but as close as we can get.
80326     Signed-off-by: Jerry Van Baren <vanbaren@cideas.com>
80328 commit 48aecd969171a6e99a55fae04933857787f9a5bd
80329 Author: Dave Liu <r63238@freescale.com>
80330 Date:   Thu Dec 7 21:14:51 2006 +0800
80332     mpc83xx: Add the MPC832XEMDS board readme
80334     Add the MPC832XEMDS board readme
80336     Signed-off-by: Dave Liu <daveliu@freescale.com>
80338 commit 24c3aca3f1358b113d3215adb5433b156e99f72b
80339 Author: Dave Liu <r63238@freescale.com>
80340 Date:   Thu Dec 7 21:13:15 2006 +0800
80342     mpc83xx: Add support for the MPC832XEMDS board
80344     This patch supports DUART, ETH3/4 and PCI etc.
80346     Signed-off-by: Dave Liu <daveliu@freescale.com>
80348 commit e080313c32322e15ab5a18eb896a252858c57284
80349 Author: Dave Liu <r63238@freescale.com>
80350 Date:   Thu Dec 7 21:11:58 2006 +0800
80352     mpc83xx: streamline the 83xx immr head file
80354     For better format and style, I streamlined the 83xx head files,
80355     including immap_83xx.h and mpc83xx.h. In the old head files, 1)
80356     duplicated macro definition appear in the both files; 2) the structure
80357     of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The
80358     macro definition put inside the each structure. So, I cleaned up the
80359     structure of QE immr from immap_83xx.h, deleted the duplicated stuff and
80360     moved the macro definition to mpc83xx.h, Just like MPC8260.
80362     CHANGELOG
80364     *streamline the 83xx immr head file
80366     Signed-off-by: Dave Liu <daveliu@freescale.com>
80368 commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0
80369 Author: Dave Liu <r63238@freescale.com>
80370 Date:   Wed Dec 6 11:38:17 2006 +0800
80372     mpc83xx: Fix the UEC driver bug of QE
80374     The patch prevents the GCC tool chain from striping useful code for
80375     optimization. It will make UEC ethernet driver workable, Otherwise the
80376     UEC will fail in tx when you are using gcc4.x. but the driver can work
80377     when using gcc3.4.3.
80379     CHANGELOG
80381     *Prevent the GCC from striping code for optimization, Otherwise the UEC
80382     will tx failed when you are using gcc4.x.
80384     Signed-off-by: Dave Liu <daveliu@freescale.com>
80386 commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35
80387 Author: Stefan Roese <sr@denx.de>
80388 Date:   Thu Mar 1 21:11:36 2007 +0100
80390     [PATCH] Update AMCC Katmai 440SPe eval board support
80392     This patch updates the recently added Katmai board support. The biggest
80393     change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2
80394     driver.
80396     Please note, that still some problems are left with some memory
80397     configurations. See the driver for more details.
80399     Signed-off-by: Stefan Roese <sr@denx.de>
80401 commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a
80402 Author: Stefan Roese <sr@denx.de>
80403 Date:   Thu Mar 1 07:03:25 2007 +0100
80405     [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM
80407     Signed-off-by: Stefan Roese <sr@denx.de>
80409 commit ccbc7036648e465697ca298ba51e0e76dda352a0
80410 Author: Wolfgang Denk <wd@pollux.denx.de>
80411 Date:   Wed Feb 28 01:28:53 2007 +0100
80413     SC3: fix typo in default environment
80415 commit e344568b1b46af85ec32d815586f91bc115d6223
80416 Author: Sergei Poselenov <sposelenov@emcraft.com>
80417 Date:   Tue Feb 27 20:15:30 2007 +0300
80419     MCC200: Fixes for update procedure
80421     - fix logic error in image type handling
80422     - make sure file system images (cramfs etc.) get stored in flash
80423       with image header stripped so they can be mounted through MTD
80425 commit 743571145b37182757d4e688a77860b36ee77573
80426 Author: Wolfgang Denk <wd@pollux.denx.de>
80427 Date:   Tue Feb 27 14:26:04 2007 +0100
80429     Minor code cleanup.
80431 commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72
80432 Author: Sergei Poselenov <sposelenov@emcraft.com>
80433 Date:   Tue Feb 27 12:40:16 2007 +0300
80435     MCC200 update - add LCD Progress Indicator
80437 commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44
80438 Author: Stefan Roese <sr@denx.de>
80439 Date:   Thu Feb 22 07:43:34 2007 +0100
80441     [PATCH] get_dev() now unconditionally uses manual relocation
80443     Since the relocation fix is not included yet and we're not sure how
80444     it will be added, this patch removes code that required relocation
80445     to be fixed for now.
80447     Signed-off-by: Stefan Roese <sr@denx.de>
80449 commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b
80450 Author: Stefan Roese <sr@denx.de>
80451 Date:   Thu Feb 22 07:40:23 2007 +0100
80453     [PATCH] Change systemace driver to select 8 & 16bit mode
80455     As suggested by Grant Likely this patch enables the Xilinx SystemACE
80456     driver to select 8 or 16bit mode upon startup.
80458     Signed-off-by: Stefan Roese <sr@denx.de>
80460 commit 3a197b2fe49d6fa03978e60af2394efe9c70b527
80461 Author: Haiying Wang <Haiying.Wang@freescale.com>
80462 Date:   Wed Feb 21 16:52:31 2007 +0100
80464     [PATCH v3] Add sync to ensure flash_write_cmd is fully finished
80466     Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
80467     is fully finished. The sync() is defined in each CPU's io.h file. For
80468     those CPUs which do not need sync for now, a dummy sync() is defined in
80469     their io.h as well.
80471     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
80473 commit da04995c7dc6772013a9a0dc5c767f190c402478
80474 Author: Stefan Roese <sr@denx.de>
80475 Date:   Wed Feb 21 13:44:34 2007 +0100
80477     [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
80479     Signed-off-by: Stefan Roese <sr@denx.de>
80481 commit 751bb57107d78978ae08e697c3deba816f5be091
80482 Author: Stefan Roese <sr@denx.de>
80483 Date:   Tue Feb 20 13:21:57 2007 +0100
80485     [PATCH] Fix relocation problem with "new" get_dev() function
80487     This patch enables the "new" get_dev() function for block devices
80488     introduced by Grant Likely to be used on systems that still suffer
80489     from the relocation problems (manual relocation neede because of
80490     problems with linker script).
80492     Hopefully we can resolve this relocation issue soon for all platform
80493     so we don't need this additional code anymore.
80495     Signed-off-by: Stefan Roese <sr@denx.de>
80497 commit d93e2212f962668b3dce091ff5edc33f2347fe37
80498 Author: Stefan Roese <sr@denx.de>
80499 Date:   Tue Feb 20 13:17:42 2007 +0100
80501     [PATCH] Update SystemACE driver for 16bit access
80503     This patch removes some problems when the Xilinx SystemACE driver
80504     is used with 16bit access on an big endian platform (like the
80505     AMCC Katmai).
80507     Signed-off-by: Stefan Roese <sr@denx.de>
80509 commit 874bb7b88fe9b4648e1288a387af2e31014a72f3
80510 Author: Stefan Roese <sr@denx.de>
80511 Date:   Tue Feb 20 13:15:40 2007 +0100
80513     [PATCH] Clean up Katmai (440SPe) linker script
80515     Signed-off-by: Stefan Roese <sr@denx.de>
80517 commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f
80518 Author: Stefan Roese <sr@denx.de>
80519 Date:   Tue Feb 20 10:57:08 2007 +0100
80521     [PATCH] Add support for the AMCC Katmai (440SPe) eval board
80523     Signed-off-by: Stefan Roese <sr@denx.de>
80525 commit 0dc018ece13effc689e47479ea9ebf1c98a507f5
80526 Author: Stefan Roese <sr@denx.de>
80527 Date:   Tue Feb 20 10:51:26 2007 +0100
80529     [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
80531     This patch switches to the desired I2C bus when the date/dtt
80532     commands are called. This can be configured using the
80533     CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines.
80535     Signed-off-by: Stefan Roese <sr@denx.de>
80537 commit 4037ed3b63923cfcec27f784a89057c3cbabcedb
80538 Author: Stefan Roese <sr@denx.de>
80539 Date:   Tue Feb 20 10:43:34 2007 +0100
80541     [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
80543     This patch adds support for the DDR2 controller used on the
80544     440SP and 440SPe. It is tested on the Katmai (440SPe) eval
80545     board and works fine with the following DIMM modules:
80547     - Corsair CM2X512-5400C4 (512MByte per DIMM)
80548     - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM)
80549     - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM)
80551     This patch also adds the nice functionality to dynamically
80552     create the TLB entries for the SDRAM (tlb.c). So we should
80553     never run into such problems with wrong (too short) TLB
80554     initialization again on these platforms.
80556     Signed-off-by: Stefan Roese <sr@denx.de>
80558 commit 36d830c9830379045f5daa9f542ac1c990c70068
80559 Author: Stefan Roese <sr@denx.de>
80560 Date:   Tue Feb 20 10:35:42 2007 +0100
80562     [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
80564     Since the existing 4xx SPD SDRAM initialization routines for the
80565     405 SDRAM controller and the 440 DDR controller don't have much in
80566     common this patch splits both drivers into different files.
80568     This is in preparation for the 440 DDR2 controller support (440SP/e).
80570     Signed-off-by: Stefan Roese <sr@denx.de>
80572 commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6
80573 Author: Stefan Roese <sr@denx.de>
80574 Date:   Tue Feb 20 10:27:08 2007 +0100
80576     [PATCH] PPC4xx: Add support for multiple I2C busses
80578     This patch adds support for multiple I2C busses on the PPC4xx
80579     platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
80580     to make use of this feature.
80582     It also merges the 405 and 440 i2c header files into one common
80583     file 4xx_i2c.h.
80585     Also the 4xx i2c reset procedure is reworked since I experienced
80586     some problems with the first access on the 440SPe Katmai board.
80588     Signed-off-by: Stefan Roese <sr@denx.de>
80590 commit eb867a76238fb38e952c37871b16d0d7fd61c95f
80591 Author: Grant Likely <grant.likely@secretlab.ca>
80592 Date:   Tue Feb 20 09:05:45 2007 +0100
80594     [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
80596     Block device read/write is anonymous data; there is no need to use a
80597     typed pointer.  void * is fine.  Also add a hook for block_read functions
80599     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80601 commit 53758fa20e935cc87eeb0519ed365df753a6f289
80602 Author: Grant Likely <grant.likely@secretlab.ca>
80603 Date:   Tue Feb 20 09:05:38 2007 +0100
80605     [PATCH 8_9] Add block_write hook to block_dev_desc_t
80607     Preparation for future patches which support block device writing
80609     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80611 commit f4852ebe6ca946a509667eb68be42026f837be76
80612 Author: Grant Likely <grant.likely@secretlab.ca>
80613 Date:   Tue Feb 20 09:05:31 2007 +0100
80615     [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
80617     Register read/write does not need to be wrapped in a full function.  The
80618     patch replaces them with macros.
80620     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80622 commit 3a8ce9af6fcb5744a7851b4440c07688acc40844
80623 Author: Grant Likely <grant.likely@secretlab.ca>
80624 Date:   Tue Feb 20 09:05:23 2007 +0100
80626     [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
80628     The code in this file is not a command; it is a device driver.  Put it in
80629     the correct place.  There are zero functional changes in this patch, it
80630     only moves the file.
80632     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80634 commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4
80635 Author: Grant Likely <grant.likely@secretlab.ca>
80636 Date:   Tue Feb 20 09:05:16 2007 +0100
80638     [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
80640     This patch is in preparation of additional changes to the sysace driver.
80641     May as well take this opportunity to fixup the inconsistent whitespace since
80642     this file is about to undergo major changes anyway.
80644     There are zero functional changes in this patch.  It only cleans up the
80645     the whitespace.
80647     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80649 commit 80ba981d940471fe7e539e64fa3d2bd80002beda
80650 Author: Grant Likely <grant.likely@secretlab.ca>
80651 Date:   Tue Feb 20 09:05:07 2007 +0100
80653     [PATCH 4_4] Remove local implementation of isprint() in ft_build.c
80655     isprint is already defined in ctype.c
80657     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80659 commit c95c4280d751ca078c2ff58228d2f2b44ccf0600
80660 Author: Grant Likely <grant.likely@secretlab.ca>
80661 Date:   Tue Feb 20 09:05:00 2007 +0100
80663     [PATCH 3_9] Move buffer print code from md command to common function
80665     Printing a buffer is a darn useful thing.  Move the buffer print code
80666     into print_buffer() in lib_generic/
80668     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80670 commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a
80671 Author: Grant Likely <grant.likely@secretlab.ca>
80672 Date:   Tue Feb 20 09:04:52 2007 +0100
80674     [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
80676     Change the xilinx device drivers and board code to include config.h
80677     instead of xparameters.h directly.  config.h always includes the
80678     correct xparameters file.  This change reduces the posibility of
80679     including the wrong file when adding a new xilinx board port
80681     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80683 commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7
80684 Author: Grant Likely <grant.likely@secretlab.ca>
80685 Date:   Tue Feb 20 09:04:34 2007 +0100
80687     [PATCH 1_4] Merge common get_dev() routines for block devices
80689     Each of the filesystem drivers duplicate the get_dev routine.  This change
80690     merges them into a single function in part.c
80692     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
80694 commit f5fcc3c20b65554e98a165542c36ee0c610a2d81
80695 Author: Wolfgang Denk <wd@pollux.denx.de>
80696 Date:   Mon Feb 19 23:09:51 2007 +0100
80698     MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
80699     as root file system images.
80701 commit 489c696ae7211218961d159e43e722d74c36fcbc
80702 Author: Sergei Poselenov <sposelenov@emcraft.com>
80703 Date:   Wed Feb 14 14:30:28 2007 +0300
80705     MCC200: Extensions to Software Update Mechanism
80707     Update / extend Software Update Mechanism for MCC200 board:
80709     - Add support for rootfs image added. The environment variables
80710       "rootfs_st" and "rootfs_nd" can be used to override the default
80711       values of the image start and end.
80712     - Remove excessive key check code.
80713     - Code cleanup.
80715 commit 4be23a12f23f1372634edc3215137b09768b7949
80716 Author: Stefan Roese <sr@denx.de>
80717 Date:   Mon Feb 19 08:23:15 2007 +0100
80719     [PATCH] Update Sequoia EBC configuration (NOR FLASH)
80721     As spotted by Matthias Fuchs, the READY input should not be
80722     enabled for the NOR FLASH on the Sequoia board.
80724     Signed-off-by: Stefan Roese <sr@denx.de>
80726 commit 2605e90bf676d48123afe5719a846d2b52b24aac
80727 Author: Heiko Schocher <hs@pollux.denx.de>
80728 Date:   Fri Feb 16 07:57:42 2007 +0100
80730     [PATCH] Added support for the jupiter board.
80732     Signed-off-by: Heiko Schocher <hs@denx.de>
80734 commit 497d012e5be0194e1084073d0081eb1a844796b2
80735 Author: Gary Jennejohn <garyj@pollux.denx.de>
80736 Date:   Mon Feb 12 13:11:50 2007 +0100
80738     LPC2292: patch from Siemens.
80740 commit b0b1a920aebead0d44146e73676ae9d80fffc8e2
80741 Author: Stefan Roese <sr@denx.de>
80742 Date:   Sat Feb 10 08:49:31 2007 +0100
80744     [PATCH] Add missing p3mx.h file to repository (ups)
80746     Signed-off-by: Stefan Roese <sr@denx.de>
80748 commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a
80749 Author: Bartlomiej Sieka <tur@semihalf.com>
80750 Date:   Fri Feb 9 10:45:42 2007 +0100
80752     [Motion-PRO] Preliminary support for the Motion-PRO board.
80754 commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994
80755 Author: Stefan Roese <sr@denx.de>
80756 Date:   Wed Feb 7 16:51:08 2007 +0100
80758     [PATCH] Update some AMCC 4xx board config files (set initrd_high)
80760     Some boards that can have more than 768MBytes of SDRAM need to
80761     set "initrd_high", so that the initrd can be accessed by the
80762     Linux kernel.
80764     Signed-off-by: Stefan Roese <sr@denx.de>
80766 commit 7372ca68227930d03cffa548310524cad5b96733
80767 Author: Stefan Roese <sr@denx.de>
80768 Date:   Fri Feb 2 12:44:22 2007 +0100
80770     [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
80772     Previously the strapping DCR/SDR was read to determine if the internal PCI
80773     arbiter is enabled or not. This strapping bit can be overridden, so now
80774     the current status is read from the correct DCR/SDR register.
80776     Signed-off-by: Stefan Roese <sr@denx.de>
80778 commit 2aa54f651a42d198673318f07a20c89a43e4d197
80779 Author: Stefan Roese <sr@denx.de>
80780 Date:   Fri Feb 2 12:42:08 2007 +0100
80782     [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
80784     Signed-off-by: Stefan Roese <sr@denx.de>
80786 commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b
80787 Author: Stefan Roese <sr@denx.de>
80788 Date:   Thu Feb 1 13:22:41 2007 +0100
80790     [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
80792     When PCI PNP is enabled the pci pnp configuration routine is called
80793     which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some
80794     problems with some PCI cards. For now disable the PCI PNP configuration.
80796     Signed-off-by: Stefan Roese <sr@denx.de>
80798 commit 2902fadade3be7659467e8d074048c6b7068f5c0
80799 Author: Stefan Roese <sr@denx.de>
80800 Date:   Wed Jan 31 16:56:10 2007 +0100
80802     [PATCH] Update 440EPx/440GRx cpu detection
80804     Signed-off-by: Stefan Roese <sr@denx.de>
80806 commit d5ea287b02a6945c3977410e364a879dd1a555c8
80807 Author: Stefan Roese <sr@denx.de>
80808 Date:   Wed Jan 31 16:38:04 2007 +0100
80810     [PATCH] Update esd cpci5200 files
80812     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
80814 commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab
80815 Author: Stefan Roese <sr@denx.de>
80816 Date:   Wed Jan 31 16:37:34 2007 +0100
80818     [PATCH] Add support for esd mecp5200 board
80820     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
80822 commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff
80823 Author: Stefan Roese <sr@denx.de>
80824 Date:   Wed Jan 31 12:38:50 2007 +0100
80826     [PATCH] Remove unneccessary yellowstone board config file
80828     Signed-off-by: Stefan Roese <sr@denx.de>
80830 commit e802594b6fa1b166308820c276b96dc0d7cc731c
80831 Author: Stefan Roese <sr@denx.de>
80832 Date:   Tue Jan 30 17:06:10 2007 +0100
80834     [PATCH] Update Sequoia (440EPx) config file
80836     The config file now handles the 2nd target, the Rainier (440GRx)
80837     evaluation board better. Additionally the PPC input clock was
80838     adjusted to match the correct value of 33.0 MHz.
80840     Signed-off-by: Stefan Roese <sr@denx.de>
80842 commit 700200c67e73b83751418abe7815840dca8fd6cb
80843 Author: Stefan Roese <sr@denx.de>
80844 Date:   Tue Jan 30 17:04:19 2007 +0100
80846     [PATCH] Merge Yosemite & Yellowstone board ports
80848     Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR)
80849     share one config file and all board specific files. This way we
80850     don't have to maintain two different sets of files for nearly
80851     identical boards.
80853     Signed-off-by: Stefan Roese <sr@denx.de>
80855 commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6
80856 Author: Stefan Roese <sr@denx.de>
80857 Date:   Tue Jan 30 15:01:49 2007 +0100
80859     [PATCH] Update Prodrive SCPU (PDNB3 variant) board
80861     SCPU doesn't use redundant environment in flash.
80863     Signed-off-by: Stefan Roese <sr@denx.de>
80865 commit 6304430ed642ea8fa15c9e5af965ac2e033eec45
80866 Author: Stefan Roese <sr@denx.de>
80867 Date:   Tue Jan 30 12:51:07 2007 +0100
80869     [PATCH] alpr: Update alpr board config file
80871     Signed-off-by: Stefan Roese <sr@denx.de>
80873 commit f8db84f132b1e335f20f96138a1f09ed97b08664
80874 Author: Wolfgang Denk <wd@pollux.denx.de>
80875 Date:   Tue Jan 30 00:50:40 2007 +0100
80877     LPC2292 SODIMM port coding style cleanup.
80879 commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3
80880 Author: Gary Jennejohn <garyj@pollux.denx.de>
80881 Date:   Wed Jan 24 12:16:56 2007 +0100
80883     Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
80885 commit 2daf046ba627f85f44195815778140039636244e
80886 Author: Bartlomiej Sieka <tur@semihalf.com>
80887 Date:   Tue Jan 23 17:22:06 2007 +0100
80889     [iDMR] Add MTD and JFFS2 support, also add default partition definition.
80891 commit f7db33101fbc9c8f0a10738ce87034875a17aeb9
80892 Author: Bartlomiej Sieka <tur@semihalf.com>
80893 Date:   Tue Jan 23 14:21:14 2007 +0100
80895     [iDMR] Flash driver on initialisation write-protects some sectors,
80896     currently sectors 0-3. Sector 3 does not need to be protected, though
80897     (U-boot occupies sectors 0-1 and the environment sector 2). This commit
80898     fixes this, i.e., only sectors 0-2 are protected.
80900 commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de
80901 Author: Bartlomiej Sieka <tur@semihalf.com>
80902 Date:   Tue Jan 23 14:11:22 2007 +0100
80904     [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
80905     "mii device" results in "Unexpected exception"). Fixing this properly
80906     requires some clean-up in the FEC drivers infrastructure for ColdFire, so
80907     this commit disables MII commads for now.
80909 commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c
80910 Author: Bartlomiej Sieka <tur@semihalf.com>
80911 Date:   Tue Jan 23 13:25:22 2007 +0100
80913     [ColdFire MCF5271 family] Add CPU detection based on the value of Chip
80914     Identification Register (CIR).
80916 commit fdef388758506765d4d6a7155c8f1584c63ff581
80917 Author: roy zang <tie-fei.zang@freescale.com>
80918 Date:   Mon Jan 22 13:19:21 2007 +0800
80920     use  CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP
80921     The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
80922     fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
80923     mpc7448hpc2 board.
80925 commit a4012396645533aef218354eeba754dff0deace8
80926 Author: Wolfgang Denk <wd@pollux.denx.de>
80927 Date:   Fri Jan 19 23:08:39 2007 +0100
80929     Minor code cleanup.
80931 commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
80932 Author: Heiko Schocher <hs@pollux.denx.de>
80933 Date:   Fri Jan 19 19:57:10 2007 +0100
80935     [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
80937     Signed-off-by: Heiko Schocher <hs@denx.de>
80939 commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
80940 Author: Heiko Schocher <hs@pollux.denx.de>
80941 Date:   Fri Jan 19 18:05:26 2007 +0100
80943     [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
80944                  if you must swap the bytes between reading/writing.
80945                  (Needed for the SC3 board)
80947     Signed-off-by: Heiko Schocher <hs@denx.de>
80949 commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
80950 Author: Stefan Roese <sr@denx.de>
80951 Date:   Thu Jan 18 16:05:47 2007 +0100
80953     [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
80955     Signed-off-by: Stefan Roese <sr@denx.de>
80957 commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
80958 Author: Stefan Roese <sr@denx.de>
80959 Date:   Thu Jan 18 11:54:52 2007 +0100
80961     [PATCH] Update Prodrive P3Mx support
80963     Signed-off-by: Stefan Roese <sr@denx.de>
80965 commit 34167a36c29ee946b727465db5c014746a08e978
80966 Author: Stefan Roese <sr@denx.de>
80967 Date:   Thu Jan 18 11:48:10 2007 +0100
80969     [PATCH] Add missing Taishan config file
80971     Signed-off-by: Stefan Roese <sr@denx.de>
80973 commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
80974 Author: Heiko Schocher <hs@pollux.denx.de>
80975 Date:   Thu Jan 18 11:28:51 2007 +0100
80977     [PATCH] Fix: Compilerwarnings for SC3 board.
80978                  The EBC Configuration Register is now by CFG_EBC_CFG definable
80979                  Added JFFS2 support for the SC3 board.
80981     Signed-off-by: Heiko Schocher <hs@denx.de>
80983 commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
80984 Author: Stefan Roese <sr@denx.de>
80985 Date:   Thu Jan 18 10:25:34 2007 +0100
80987     [PATCH] Add support for AMCC Taishan PPC440GX eval board
80989     Signed-off-by: Stefan Roese <sr@denx.de>
80991 commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
80992 Author: Wolfgang Denk <wd@pollux.denx.de>
80993 Date:   Tue Jan 16 18:30:50 2007 +0100
80995     Raname solidcard3 into sc3; add redundant env for sc3
80997 commit 1bbbbdd20fcec9933697000dcf55ff7972622596
80998 Author: Wolfgang Denk <wd@pollux.denx.de>
80999 Date:   Tue Jan 16 12:46:35 2007 +0100
81001     Update default environment for Solidcard3
81003 commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd
81004 Author: Stefan Roese <sr@denx.de>
81005 Date:   Mon Jan 15 09:46:29 2007 +0100
81007     [PATCH] Fix 440SPe rev B detection from previous patch
81009     Signed-off-by: Stefan Roese <sr@denx.de>
81011 commit a443d31410c571ee8f970da819a44d698fdd6b1f
81012 Author: Heiko Schocher <hs@pollux.denx.de>
81013 Date:   Sun Jan 14 13:35:31 2007 +0100
81015         [FIX] correct I2C Writes for the LM81 Sensor.
81017         Signed-off-by: Heiko Schocher <hs@denx.de>
81019 commit 0bba5452835f19a61204edcda3a58112fd8e2208
81020 Author: Wolfgang Denk <wd@pollux.denx.de>
81021 Date:   Sat Jan 13 11:17:10 2007 +0100
81023     Undo commit 3033ebb2: reset command does not take any arguments
81025     Haiying Wang's modification to the reset command was broken, undo it.
81027     Signed-off-by: Wolfgang Denk <wd@denx.de>
81029 commit 95981778cff0038fd9941044d6a3eda810e33258
81030 Author: Stefan Roese <sr@denx.de>
81031 Date:   Sat Jan 13 08:01:03 2007 +0100
81033     [PATCH] Update 440SP(e) cpu revisions
81035     Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
81037     Signed-off-by: Stefan Roese <sr@denx.de>
81039 commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7
81040 Author: Stefan Roese <sr@denx.de>
81041 Date:   Sat Jan 13 07:59:56 2007 +0100
81043     [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
81045     Now the board revision and the current PCI bus speed are printed after
81046     the board message.
81048     Also the EBC initialising is now done via defines in the board config
81049     file.
81051     Signed-off-by: Stefan Roese <sr@denx.de>
81053 commit 36adff362c2c0141ff8a810d42a7e478f779130f
81054 Author: Stefan Roese <sr@denx.de>
81055 Date:   Sat Jan 13 07:59:19 2007 +0100
81057     [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
81059     Now the board revision and the current PCI bus speed are printed after
81060     the board message.
81062     Also the EBC initialising is now done via defines in the board config
81063     file.
81065     Signed-off-by: Stefan Roese <sr@denx.de>
81067 commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6
81068 Author: Stefan Roese <sr@denx.de>
81069 Date:   Sat Jan 13 07:57:51 2007 +0100
81071     [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
81073     Now the board revision and the current PCI bus speed are printed after
81074     the board message.
81076     Signed-off-by: Stefan Roese <sr@denx.de>
81078 commit ca43ba18e910206ef8063e4b22d282630bff3fd2
81079 Author: Heiko Schocher <hs@pollux.denx.de>
81080 Date:   Thu Jan 11 15:44:44 2007 +0100
81082         Added support for the SOLIDCARD III board from Eurodesign
81084         Signed-off-by: Heiko Schocher <hs@denx.de>
81086 commit 6abaee42621c07e81a2cd189ad4368b5e8c50280
81087 Author: Reinhard Thies <Reinhard.Thies@web.de>
81088 Date:   Wed Jan 10 14:41:14 2007 +0100
81090     Adjusted default environment for cam5200 board.
81092 commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9
81093 Author: Wolfgang Denk <wd@pollux.denx.de>
81094 Date:   Wed Jan 10 15:35:52 2007 +0100
81096     Update CHANGELOG
81098 commit 787fa15860a57833e50bd30555079a9cd4e519b8
81099 Author: Wolfgang Denk <wd@pollux.denx.de>
81100 Date:   Wed Jan 10 01:28:39 2007 +0100
81102     Fix auto_update for MCC200 board.
81104     The invocation of do_auto_update() is moved to the end of the
81105     misc_init_r() function, after the flash mappings have been
81106     initialized. Please find attached a patch that implements that
81107     change.
81109     Also correct the decoding of the keypad status. With this update, the
81110     key that will trigger the update is Column 2, Row 2.
81112 commit d9384de2f571046e71081bae22b49e3d5ca2e3d5
81113 Author: Marian Balakowicz <m8@semihalf.com>
81114 Date:   Wed Jan 10 00:26:15 2007 +0100
81116     CAM5200 flash driver modifications:
81117     - use CFI driver (replaces custom flash driver) for main 'cam5200' target
81118     - add second build target 'cam5200_niosflash' which still uses custom driver
81120 commit 67fea022fa957f59653b5238c7496f80a6b70432
81121 Author: Markus Klotzbuecher <mk@denx.de>
81122 Date:   Tue Jan 9 16:02:48 2007 +0100
81124     SPC1920: cleanup memory contoller setup
81126 commit 8fc2102faa23593c80381437c09f7745a14deb40
81127 Author: Markus Klotzbuecher <mk@denx.de>
81128 Date:   Tue Jan 9 14:57:14 2007 +0100
81130     Fix the cpu speed setup to work with all boards.
81132 commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c
81133 Author: Markus Klotzbuecher <mk@denx.de>
81134 Date:   Tue Jan 9 14:57:13 2007 +0100
81136     SPC1920: add support for the FM18L08 Ramtron FRAM
81138 commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223
81139 Author: Markus Klotzbuecher <mk@denx.de>
81140 Date:   Tue Jan 9 14:57:13 2007 +0100
81142     SPC1920: update the HPI register addresses to work with the second
81143     generation of hardware
81145 commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e
81146 Author: Markus Klotzbuecher <mk@creamnet.de>
81147 Date:   Tue Jan 9 14:57:13 2007 +0100
81149     Miscellanious spc1920 related cleanups
81151 commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
81152 Author: Markus Klotzbuecher <mk@denx.de>
81153 Date:   Tue Jan 9 14:57:12 2007 +0100
81155     SPC1920 GO/NOGO led should be set to color red in U-Boot
81157 commit 0be62728aac459ba268d6d752ed49ec0e2bc7348
81158 Author: Markus Klotzbuecher <mk@creamnet.de>
81159 Date:   Tue Jan 9 14:57:12 2007 +0100
81161     Add support for the DS3231 RTC
81163 commit 8139567b60d678584b05f0718a681f2047c5e14f
81164 Author: Markus Klotzbuecher <mk@creamnet.de>
81165 Date:   Tue Jan 9 14:57:11 2007 +0100
81167     SMC1 uses external CLK4 instead of BRG on spc1920
81169 commit d8d9de1a02fbd880b613d607143d1f57342affc7
81170 Author: Markus Klotzbuecher <mk@creamnet.de>
81171 Date:   Tue Jan 9 14:57:10 2007 +0100
81173     Update the SPC1920 CMB PLD driver
81175 commit 3f34f869162750e5e999fd140f884f5de952bcfe
81176 Author: Markus Klotzbuecher <mk@creamnet.de>
81177 Date:   Tue Jan 9 14:57:10 2007 +0100
81179     Add / enable I2C support on the spc1920 board
81181 commit d28707dbce1e9ac2017ad051da4133bf22b4204f
81182 Author: Markus Klotzbuecher <mk@creamnet.de>
81183 Date:   Tue Jan 9 14:57:10 2007 +0100
81185     Add support for the tms320671x host port interface (HPI)
81187 commit f4eb54529bb3664c3a562e488b460fe075f79d67
81188 Author: Wolfgang Denk <wd@pollux.denx.de>
81189 Date:   Sun Jan 7 00:13:11 2007 +0100
81191     Prepare for release 1.2.0
81193 commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02
81194 Author: Stefan Roese <sr@denx.de>
81195 Date:   Sat Jan 6 15:58:09 2007 +0100
81197     [PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
81199     This patch fixes a problem with an incorrect setup for the refresh
81200     timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
81202     Signed-off-by: Stefan Roese <sr@denx.de>
81204 commit f16c1da9577f06c5fc08651a4065537407de4635
81205 Author: Stefan Roese <sr@denx.de>
81206 Date:   Sat Jan 6 15:56:13 2007 +0100
81208     [PATCH] Update ALPR board files
81210     This update brings the ALPR board support to the newest version.
81211     It also fixes a problem with the NAND driver.
81213     Signed-off-by: Stefan Roese <sr@denx.de>
81215 commit cd1d937f90250a32988c37b2b4af8364d25de8ed
81216 Author: Stefan Roese <sr@denx.de>
81217 Date:   Fri Jan 5 11:46:05 2007 +0100
81219     [PATCH] nand: Fix problem with oobsize calculation
81221     Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
81223     The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
81224     returns a 0x15. In the code fragment below bits [1:0] determine the
81225     page size, it is ANDed via "(extid & 0x3)" then shifted out. The
81226     next field is also ANDed with 0x3. However this is a one bit field
81227     as defined in the Hynix and Samsung parts in the 4th ID byte that
81228     determins the oobsize, not a two bit field. It works on Samsung as
81229     bits[3:2] are 01. However for the Hynix there is a 11 in these two
81230     bits, so the oob size gets messed up.
81232     I checked the correct linux code and the suggested fix from Brian is
81233     also available in the linux nand mtd driver.
81235     Signed-off-by: Stefan Roese <sr@denx.de>
81237 commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e
81238 Author: Stefan Roese <sr@denx.de>
81239 Date:   Fri Jan 5 10:40:36 2007 +0100
81241     [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
81243     This fix will make the MAL burst disabling patch for the Linux
81244     EMAC driver obsolete.
81246     Signed-off-by: Stefan Roese <sr@denx.de>
81248 commit 023889838282b6237b401664f22dd22dfba2c066
81249 Author: Stefan Roese <sr@denx.de>
81250 Date:   Fri Jan 5 10:38:05 2007 +0100
81252     [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
81254     This code will optimize the DDR2 controller setup on a board specific
81255     basis.
81257     Note: This code doesn't work right now on the NAND booting image for the
81258     Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
81260     Signed-off-by: Stefan Roese <sr@denx.de>
81262 commit cce4acbb68398634b8d011ed7bb0d12269c84230
81263 Author: Bartlomiej Sieka <tur@semihalf.com>
81264 Date:   Thu Dec 28 19:08:21 2006 +0100
81266     Few V38B changes:
81267       - fix a typo in V38B config file
81268       - move watchdog initialisation earlier in the boot process
81269       - add "wdt=off" to default kernel command line (disables kernel watchdog)
81271 commit 92eb729bad876725aeea908d2addba0800620840
81272 Author: Wolfgang Denk <wd@pollux.denx.de>
81273 Date:   Wed Dec 27 01:26:13 2006 +0100
81275     Fix bug in adaption of Stefano Babic's CFI driver patch.
81277 commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3
81278 Author: Wolfgang Denk <wd@pollux.denx.de>
81279 Date:   Sun Dec 24 01:42:57 2006 +0100
81281     Minor code cleanup.
81283 commit d784fdb05900ada3686d5778783e1fb328e9fb66
81284 Author: Stefano Babic <sbabic@denx.de>
81285 Date:   Tue Dec 12 00:22:42 2006 +0100
81287     Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode)
81289 commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2
81290 Author: Stefan Roese <sr@denx.de>
81291 Date:   Fri Dec 22 14:29:40 2006 +0100
81293     [PATCH] Fix sequoia flash autodetection (finally correct)
81295     Now 32MByte and 64MByte FLASH is know to work and other
81296     configurations should work too.
81298     Signed-off-by: Stefan Roese <sr@denx.de>
81300 commit 82e5236a8b719543643fd26d5827938ab2b94818
81301 Author: Wolfgang Denk <wd@pollux.denx.de>
81302 Date:   Fri Dec 22 10:30:26 2006 +0100
81304     Minor code cleanup; update CHANGELOG.
81306 commit fa23044564091f05d9695beb7b5b9a931e7f41a4
81307 Author: Heiko Schocher <hs@pollux.denx.de>
81308 Date:   Thu Dec 21 17:17:02 2006 +0100
81310     Added support for the TQM8272 board from TQ
81312     Signed-off-by: Heiko Schocher <hs@denx.de>
81314 commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c
81315 Author: Heiko Schocher <hs@pollux.denx.de>
81316 Date:   Thu Dec 21 16:14:48 2006 +0100
81318     [PATCH] Add support for the UC101 board from MAN.
81320     Signed-off-by: Heiko Schocher <hs@denx.de>
81322 commit c84bad0ef60e7055ab0bd49b93069509cecc382a
81323 Author: Bartlomiej Sieka <tur@semihalf.com>
81324 Date:   Wed Dec 20 00:29:43 2006 +0100
81326     Fix to make the baudrate changes immediate for the MCF52x2 family.
81328 commit daa6e418bcc0c717752e8de939c213c790286096
81329 Author: Bartlomiej Sieka <tur@semihalf.com>
81330 Date:   Wed Dec 20 00:27:32 2006 +0100
81332     Preliminary support for the iDMR board (ColdFire).
81334 commit cdb97a6678826f85e7c69eae6a1c113d034c9b10
81335 Author: Andrei Safronov <safronov@pollux.denx.de>
81336 Date:   Fri Dec 8 16:23:08 2006 +0100
81338     automatic update mechanism
81340 commit 9d27b3a0685ff99fc477983f315c04d49f657a8a
81341 Author: roy zang <tie-fei.zang@freescale.com>
81342 Date:   Mon Dec 4 17:56:59 2006 +0800
81344     Slight code clean up.
81345     Add comments, delete duplicate define and remove spaces.
81346     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
81348 commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1
81349 Author: roy zang <tie-fei.zang@freescale.com>
81350 Date:   Mon Dec 4 17:54:21 2006 +0800
81352     Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original
81353     multiplier table can not refect the real PLL clock behavior of these
81354     processors. Please refer to the hardware specification for detailed
81355     information of the corresponding processors.
81356     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
81358 commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0
81359 Author: roy zang <tie-fei.zang@freescale.com>
81360 Date:   Mon Dec 4 14:46:23 2006 +0800
81362     Remove the static MAC address, ip address, server ip, netmask and
81363     gateway ip for network setting.
81364     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
81366 commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf
81367 Author: roy zang <tie-fei.zang@freescale.com>
81368 Date:   Mon Dec 4 14:33:08 2006 +0800
81370     Remove the duplicate memory test code for mpc744ihpc2 board.
81371     If a memory test is needed, please use the functions in
81372     post/memory.c or memtest command.
81373     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
81375 commit c9c1eeed7dd193fa65fb194654132040d49d4d3a
81376 Author: roy zang <tie-fei.zang@freescale.com>
81377 Date:   Fri Dec 1 19:01:25 2006 +0800
81379     Fix the exception occuring in RAM table search issue.
81380     The original search_one_table() function code can only processes the search
81381     for the exception occurring in FLASH/ROM, because the exception and fixup
81382     table usually locate in FLASH. If the exception address is also in
81383     FLASH, it will be OK.
81384     If the exception occurs in RAM, after the u-boot relocation, a
81385     relocation offset should be added.
81387     clean up the code in cpu/74xx_7xx/cpu.c
81389     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
81391 commit ee311214e0d216f904feea269599d0934bf71f23
81392 Author: roy zang <tie-fei.zang@freescale.com>
81393 Date:   Fri Dec 1 11:47:36 2006 +0800
81395     Clean up the code according to codestyle:
81396     (1) remove some C++ comments.
81397     (2) remove trailing white space.
81398     (3) remove trailing empty line.
81399     (4) Indentation by table.
81400     (5) remove {} in one line condition.
81401     (6) add space before '(' in function call.
81402     Remove some weird printf () output.
81403     Add necessary comments.
81404     Modified Makefile to support building in a separate directory.
81406 commit dd520bf314c7add4183c5191692180f576f96b60
81407 Author: Wolfgang Denk <wd@pollux.denx.de>
81408 Date:   Thu Nov 30 18:02:20 2006 +0100
81410     Code cleanup.
81412 commit 8d9a8610b8256331132227e9e6585c6bd5742787
81413 Author: Wolfgang Denk <wd@pollux.denx.de>
81414 Date:   Thu Nov 30 01:54:07 2006 +0100
81416     Code cleanup. Update CHANGELOG.
81418 commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba
81419 Author: Grant Likely <grant.likely@secretlab.ca>
81420 Date:   Wed Nov 29 16:23:42 2006 +0100
81422     [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals
81424     The soc node of the mpc52xx needs to be loaded with the IPB bus frequency,
81425     not the XLB frequency.
81427     This patch depends on the previous patches for MPC52xx device tree support
81429     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
81430     Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
81432 commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6
81433 Author: Stefan Roese <sr@denx.de>
81434 Date:   Wed Nov 29 15:42:37 2006 +0100
81436     [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards
81438     This patch adds support for the Prodrive P3M750 (PPC750 & MV64460)
81439     and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are
81440     quite similar and share the same board directory "prodrive/p3mx"
81441     and the same config file "p3mx.h".
81443     Signed-off-by: Stefan Roese <sr@denx.de>
81445 commit 1bdd46832aeb569f5e04b1f20f64318525b6525a
81446 Author: Stefan Roese <sr@denx.de>
81447 Date:   Wed Nov 29 12:53:15 2006 +0100
81449     [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command
81451     In the bootvx command the load address was only read from the env
81452     variable "loadaddr" and not optionally passed as paramter as described
81453     in the help. This is fixed with this patch. The behaviour is now the
81454     same as in the bootelf command.
81456     Signed-off-by: Stefan Roese <sr@denx.de>
81458 commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
81459 Author: Stefan Roese <sr@denx.de>
81460 Date:   Wed Nov 29 12:03:57 2006 +0100
81462     [PATCH] include/ppc440.h minor error affecting interrupts
81464     Fixed include/ppc440.c for UIC address Bug
81466     Corrects bug affecting the addresses for the universal interrupt
81467     controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips.
81469     Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
81470     Signed-off-by: Stefan Roese <sr@denx.de>
81472 commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a
81473 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
81474 Date:   Tue Nov 28 16:17:27 2006 -0600
81476     Make fsl-i2c not conflict with SOFT I2C
81478     Signed-off-by: Timur Tabi <timur@freescale.com>
81480 commit 14198bf768fdc958e3c1afd2404e5262208e98d7
81481 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
81482 Date:   Tue Nov 28 16:17:18 2006 -0600
81484     Fix I2C master address initialization.
81486     Signed-off-by: Timur Tabi <timur@freescale.com>
81488 commit cf3d045e51ca8dcc6cf759827140861d6ac25c04
81489 Author: Kim Phillips <kim.phillips@freescale.com>
81490 Date:   Tue Nov 28 23:31:19 2006 -0600
81492     Assign maintainers for mpc8349emds and mpc8360emds
81494     Dave for mpc8360emds, and me for mpc8349emds.
81496 commit 1aa934c81b77f2080d3ca4b226eab67b17a33961
81497 Author: Kim Phillips <kim.phillips@freescale.com>
81498 Date:   Tue Nov 28 23:28:33 2006 -0600
81500     Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c
81502     give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src
81503     since they are passed by reference to ucc_get_cmxucr_reg and assigned.
81505 commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5
81506 Author: Timur Tabi <timur@freescale.com>
81507 Date:   Tue Nov 28 12:09:35 2006 -0600
81509     mpc83xx: Miscellaneous code style fixes
81511     Implement various code style fixes and similar changes.
81513     Signed-off-by: Timur Tabi <timur@freescale.com>
81515 commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
81516 Author: Stefan Roese <sr@denx.de>
81517 Date:   Tue Nov 28 17:55:49 2006 +0100
81519     [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.
81521     This patch adds the code and configuration necessary to boot with an
81522     arch/powerpc Linux kernel.
81524     Signed-off-by: Grant Likely <grant.likely@gmail.com>
81525     Acked-by: Jon Loeliger <jdl@freescale.com>
81527 commit e732faec95a83cb468b4850ae807c8301dde8f6a
81528 Author: Stefan Roese <sr@denx.de>
81529 Date:   Tue Nov 28 16:09:24 2006 +0100
81531     [PATCH] PPC4xx: 440SP Rev. C detection added
81533     Signed-off-by: Stefan Roese <sr@denx.de>
81535 commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0
81536 Author: Stefan Roese <sr@denx.de>
81537 Date:   Tue Nov 28 11:04:45 2006 +0100
81539     [PATCH] nand: Fix patch merge problem
81541     Signed-off-by: Stefan Roese <sr@denx.de>
81543 commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
81544 Author: Stefan Roese <sr@denx.de>
81545 Date:   Tue Nov 28 11:04:45 2006 +0100
81547     [PATCH] nand: Fix patch merge problem
81549     Signed-off-by: Stefan Roese <sr@denx.de>
81551 commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
81552 Author: Wolfgang Denk <wd@pollux.denx.de>
81553 Date:   Mon Nov 27 22:53:53 2006 +0100
81555     Update CHANGELOG
81557 commit f6e495f54cdb8fe340b9c03deab40ad746d52fae
81558 Author: Stefan Roese <sr@denx.de>
81559 Date:   Mon Nov 27 17:43:25 2006 +0100
81561     [PATCH] 4xx_enet.c: Correct the setting of zmiifer register
81563     Patch below corrects the setting of the zmiifer register, it was
81564     overwritting the register rather than ORing the settings.
81566     Signed-off-by: Neil Wilson <NWilson@airspan.com>
81567     Signed-off-by: Stefan Roese <sr@denx.de>
81569 commit d1a72545296800b7e219f93104ad5836f0003d66
81570 Author: Stefan Roese <sr@denx.de>
81571 Date:   Mon Nov 27 17:34:10 2006 +0100
81573     [PATCH] Select NAND embedded environment from board configuration
81575     The current NAND Bootloader setup forces the environment
81576     variables to be in line with the bootloader. This change
81577     enables the configuration to be made in the board include
81578     file instead so that it can be individually enabled.
81580     Signed-off-by: Nick Spence <nick.spence@freescale.com>
81581     Signed-off-by: Stefan Roese <sr@denx.de>
81583 commit 15784862857c3c2214498defcfed84ff137fb81e
81584 Author: Stefan Roese <sr@denx.de>
81585 Date:   Mon Nov 27 17:22:19 2006 +0100
81587     [PATCH] nand_wait() timeout fixes
81589     Two fixes for the nand_wait() function in
81590     drivers/nand/nand_base.c:
81592     1. Use correct timeouts. The original timeouts in Linux
81593     source are 400ms and 20ms not 40s and 20s
81595     2. Return correct error value in case of timeout. 0 is
81596     interpreted as OK.
81598     Signed-off-by: Rui Sousa <rui.sousa@laposte.net>
81599     Signed-off-by: Stefan Roese <sr@denx.de>
81601 commit da5553b095bf04f4f109ad7e565dae3aba47b230
81602 Author: Stefan Roese <sr@denx.de>
81603 Date:   Mon Nov 27 17:04:06 2006 +0100
81605     [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel
81607     This patch allows an arch/ppc kernel to be booted by just passing 1 or 2
81608     arguments to bootm.  It removes the getenv("disable_of") test that used
81609     to be used for this purpose.
81611     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
81612     Acked-by: Jon Loeliger <jdl@freescale.com>
81614 commit a9398e018593782c5fa7d0741955fc1256b34c1e
81615 Author: Wolfgang Denk <wd@pollux.denx.de>
81616 Date:   Mon Nov 27 15:32:42 2006 +0100
81618     Minor code cleanup. Update CHANGELOG.
81620 commit 1729b92cde575476684bffe819d0b7791b57bff2
81621 Author: Stefan Roese <sr@denx.de>
81622 Date:   Mon Nov 27 14:52:04 2006 +0100
81624     [PATCH] 4xx: Fix problem with board specific reset code (now for real)
81626     Signed-off-by: Stefan Roese <sr@denx.de>
81628 commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7
81629 Author: Stefan Roese <sr@denx.de>
81630 Date:   Mon Nov 27 14:49:51 2006 +0100
81632     [PATCH] alpr: remove unused board specific flash driver
81634     Signed-off-by: Stefan Roese <sr@denx.de>
81636 commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1
81637 Author: Stefan Roese <sr@denx.de>
81638 Date:   Mon Nov 27 14:48:41 2006 +0100
81640     [PATCH] 4xx: Fix problem with board specific reset code
81642     Signed-off-by: Stefan Roese <sr@denx.de>
81644 commit ec0c2ec725aec9524a177a77ce75559e644a931a
81645 Author: Stefan Roese <sr@denx.de>
81646 Date:   Mon Nov 27 14:46:06 2006 +0100
81648     [PATCH] Remove testing 4xx enet PHY setup
81650     Signed-off-by: Stefan Roese <sr@denx.de>
81652 commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148
81653 Author: Stefan Roese <sr@denx.de>
81654 Date:   Mon Nov 27 14:12:17 2006 +0100
81656     [PATCH] Update Prodrive ALPR board support (440GX)
81658     Signed-off-by: Stefan Roese <sr@denx.de>
81660 commit 58b485776698c3d71ec5a215e392123b4c15afa3
81661 Author: Markus Klotzbuecher <mk@denx.de>
81662 Date:   Mon Nov 27 11:51:21 2006 +0100
81664     Add a small README with information on the generic ohci driver.
81666 commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f
81667 Author: Markus Klotzbuecher <mk@denx.de>
81668 Date:   Mon Nov 27 11:46:46 2006 +0100
81670     Fix some endianness issues related to the generic ohci driver
81672 commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418
81673 Author: Markus Klotzbuecher <mk@denx.de>
81674 Date:   Mon Nov 27 11:44:58 2006 +0100
81676     Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
81677     to choose between the old and the generic OHCI drivers.
81679 commit 53e336e9ffc51035bdc4e5867631b3378761b4df
81680 Author: Markus Klotzbuecher <mk@denx.de>
81681 Date:   Mon Nov 27 11:43:09 2006 +0100
81683     Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver
81684     and adapted board configs TQM5200 and yosemite accordingly. This commit
81685     also makes the maximum number of root hub ports configurable
81686     (CFG_USB_OHCI_MAX_ROOT_PORTS).
81688 commit 78d620ebb5871d252270dedfad60c6568993b780
81689 Author: Wolfgang Denk <wd@atlas.denx.de>
81690 Date:   Thu Nov 23 22:58:58 2006 +0100
81692     Updates for TQM5200 modules:
81693     - fix off-by-one error in board/tqm5200/cam5200_flash.c error message
81694     - simplify "udate" definitions
81696 commit 2053283304eeddf250d109e6791eb6fa4cad14f7
81697 Author: Stefan Roese <sr@denx.de>
81698 Date:   Wed Nov 22 13:20:50 2006 +0100
81700     [PATCH] PPC4xx start.S: Fix for processor errata
81702     Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx
81703     errata 1.12: 440_33 by moving patch up in code.
81705     Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
81706     Signed-off-by: Stefan Roese <sr@denx.de>
81708 commit 4ef6251403f637841000e0fef9e832aa01339822
81709 Author: Stefan Roese <sr@denx.de>
81710 Date:   Mon Nov 20 20:39:52 2006 +0100
81712     [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH
81714     Signed-off-by: Stefan Roese <sr@denx.de>
81716 commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0
81717 Author: Wolfgang Denk <wd@pollux.denx.de>
81718 Date:   Mon Nov 20 10:28:30 2006 +0100
81720     Update CHANGELOG
81722 commit 260421a21e934a68d31fb6125b0fbd2631a8ca20
81723 Author: Stefan Roese <sr@denx.de>
81724 Date:   Mon Nov 13 13:55:24 2006 +0100
81726     [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated]
81728        * Adds support for AMD command set Top Boot flash geometry reversal
81729        * Adds support for reading JEDEC Manufacturer ID and Device ID
81730        * Adds support for displaying command set, manufacturer id and
81731          device ids (flinfo)
81732        * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined
81733        * Removes outdated change history (refer to git log instead)
81735     Signed-off-by: Tolunay Orkun <listmember@orkun.us>
81736     Signed-off-by: Stefan Roese <sr@denx.de>
81738 commit b21b511d4c50408f4853f46f06b601272196223f
81739 Author: Wolfgang Denk <wd@pollux.denx.de>
81740 Date:   Sun Nov 12 21:13:23 2006 +0100
81742     Update CHANGELOG
81744 commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245
81745 Author: Bartlomiej Sieka <tur@semihalf.com>
81746 Date:   Sat Nov 11 22:48:22 2006 +0100
81748     Disable the watchdog in the default config for the V38B board.
81750 commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a
81751 Author: Bartlomiej Sieka <tur@semihalf.com>
81752 Date:   Sat Nov 11 22:43:00 2006 +0100
81754     Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin
81755     group is enabled for USB earlier (in cpu_init_f() instead of
81756     usb_lowlevel_init()).
81758 commit 91650b3e4de688038d4f71279c44858e3e2c6870
81759 Author: Wolfgang Denk <wd@pollux.denx.de>
81760 Date:   Mon Nov 6 17:06:36 2006 +0100
81762     Sequential accesses to non-existent memory must be synchronized,
81763     at least on G2 cores.
81765     This fixes get_ram_size() problems on MPC5200 Rev. B boards.
81767 commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa
81768 Author: Timur Tabi <timur@freescale.com>
81769 Date:   Fri Nov 3 19:15:00 2006 -0600
81771     mpc83xx: Update 83xx to use fsl_i2c.c
81773     Update the 83xx tree to use I2C support in drivers/fsl_i2c.c.  Delete
81774     cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files.
81775     Added multiple I2C bus support to fsl_i2c.c.
81777     Signed-off-by: Timur Tabi <timur@freescale.com>
81779 commit d239d74b1c937984bc519083a8e7de373a390f06
81780 Author: Timur Tabi <timur@freescale.com>
81781 Date:   Fri Nov 3 12:00:28 2006 -0600
81783     mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
81785     Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
81786     tree matches the other 8xxx trees.
81788     Signed-off-by: Timur Tabi <timur@freescale.com>
81790 commit f7fb2e703ec9688541416962724adff70a7322cb
81791 Author: Kim Phillips <kim.phillips@freescale.com>
81792 Date:   Thu Nov 2 19:47:11 2006 -0600
81794     mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c
81796 commit 90f30a710a3c619b5405860a686c4ddfc495d4b6
81797 Author: Dave Liu <daveliu@freescale.com>
81798 Date:   Thu Nov 2 18:05:50 2006 -0600
81800     mpc83xx: Fix the incorrect dcbz operation
81802     The 834x rev1.x silicon has one CPU5 errata.
81804     The issue is when the data cache locked with
81805     HID0[DLOCK], the dcbz instruction looks like no-op inst.
81807     The right behavior of the data cache is when the data cache
81808     Locked with HID0[DLOCK], the dcbz instruction allocates
81809     new tags in cache.
81811     The 834x rev3.0 and later and 8360 have not this bug inside.
81813     So, when 834x rev3.0/8360 are working with ECC, the dcbz
81814     instruction will corrupt the stack in cache, the processor will
81815     checkstop reset.
81817     However, the 834x rev1.x can work with ECC with these code,
81818     because the sillicon has this cache bug. The dcbz will not
81819     corrupt the stack in cache.
81820     Really, it is the fault code running on fault sillicon.
81822     This patch fix the incorrect dcbz operation. Instead of
81823     CPU FP writing to initialise the ECC.
81825     CHANGELOG:
81826     * Fix the incorrect dcbz operation instead of CPU FP
81827     writing to initialise the ECC memory. Otherwise, it
81828     will corrupt the stack in cache, The processor will checkstop
81829     reset.
81831     Signed-off-by: Dave Liu <daveliu@freescale.com>
81833 commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d
81834 Author: Kim Phillips <kim.phillips@freescale.com>
81835 Date:   Wed Nov 1 00:10:40 2006 -0600
81837     mpc83xx: add OF_FLAT_TREE bits to 83xx boards
81839     add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and
81840     STDOUT_PATH configuration bits to mpc8349emds,
81841     mpc8349itx, and mpc8360emds board code.
81843     redo environment to use bootm with the fdtaddr
81844     for booting ARCH=powerpc kernels by default,
81845     and provide default fdtaddr values.
81847 commit 48041365b3420589ad464ebc7752e0053538b729
81848 Author: Kim Phillips <kim.phillips@freescale.com>
81849 Date:   Wed Nov 1 00:07:25 2006 -0600
81851     mpc83xx: change ft code to modify local-mac-address property
81853     Update 83xx OF code to update local-mac-address properties
81854     for ethernet instead of the obsolete 'address' property.
81856 commit 9ca880a250870a7d55754291b5591d2b5fe89b54
81857 Author: Timur Tabi <timur@freescale.com>
81858 Date:   Tue Oct 31 21:23:16 2006 -0600
81860     mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS
81862     This patch also adds an improved I2C set_speed(), which handles all clock
81863     frequencies.
81865     Signed-off-by: Timur Tabi <timur@freescale.com>
81867 commit ac4b5622ce050b5ee1e154b98df630d778661632
81868 Author: Dave Liu <daveliu@freescale.com>
81869 Date:   Tue Oct 31 19:54:59 2006 -0600
81871     mpc83xx: add the README.mpc8360emds
81873     add doc/README.mpc8360emds to accompany the new board support
81875 commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef
81876 Author: Dave Liu <daveliu@freescale.com>
81877 Date:   Fri Nov 3 12:11:15 2006 -0600
81879     mpc83xx: add QE ethernet support
81881     this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
81883 commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73
81884 Author: Dave Liu <daveliu@freescale.com>
81885 Date:   Fri Nov 3 19:33:44 2006 -0600
81887     mpc83xx: Add MPC8360EMDS basic board support
81889     Add support for the Freescale MPC8360EMDS board.
81890     Includes DDR, DUART, Local Bus, PCI.
81892 commit 23892e49352de74f7fac36ff90bb1be143d195e3
81893 Author: Dave Liu <daveliu@freescale.com>
81894 Date:   Tue Oct 31 19:30:40 2006 -0600
81896     mpc83xx: add the QUICC Engine (QE) immap file
81898     common QE immap file.  Also required for 8360.
81900 commit b701652a4992bdcc62fb1a6038a85beef9e55da4
81901 Author: Dave Liu <daveliu@freescale.com>
81902 Date:   Tue Oct 31 19:25:38 2006 -0600
81904     mpc83xx: Add 8360 specifics to 83xx immap
81906     Mainly add QE device dependencies, with appropriate 8360 protection.
81907     Lindent also run.
81909 commit 988833324a7fda482c8ac3ca23eb539f8232e404
81910 Author: Timur Tabi <timur@freescale.com>
81911 Date:   Tue Oct 31 19:14:41 2006 -0600
81913     mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX
81915     PREREQUISITE PATCHES:
81917     * This patch can only be applied after the following patches have been applied:
81919       1) DNX#2006092142000015 "Add support for the MPC8349E-mITX  1/2"
81920       2) DNX#2006092142000024 "Add support for the MPC8349E-mITX  2/2"
81922     CHANGELOG:
81924     * For the 8349E-mITX, fix some size values in pci_init_board(), enable
81925       the clock for the 2nd USB board (Linux kernel will hang otherwise),
81926       and fix the CONFIG_BOOTARGS macro.
81928     Signed-off-by: Timur Tabi <timur@freescale.com>
81930 commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357
81931 Author: Timur Tabi <timur@freescale.com>
81932 Date:   Tue Oct 31 18:44:42 2006 -0600
81934     mpc83xx: Add support for the MPC8349E-mITX
81936     PREREQUISITE PATCHES:
81938     * This patch can only be applied after the following patches have been applied:
81940       1) DNX#2006090742000024 "Add support for multiple I2C buses"
81941       2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
81942       3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
81943       4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems"
81944       5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
81946     CHANGELOG:
81948     * Add support for the Freescale MPC8349E-mITX reference design platform.
81949       The second TSEC (Vitesse 7385 switch) is not supported at this time.
81951     Signed-off-by: Timur Tabi <timur@freescale.com>
81953 commit 183da6d9b446cc12123455844ad1187e2375626f
81954 Author: Ben Warren <bwarren@qstreams.com>
81955 Date:   Tue Sep 12 10:15:53 2006 -0400
81957     Additional MPC8349 support for multibus i2c
81959     Hello,
81961     Here is a patch for a file that was accidentally left out of a previous
81962     attempt.
81964     It accompanies the patch with ticket DNX#2006090742000024
81966     CHANGELOG:
81967             Change PCI initialization to use new multi-bus I2C API.
81969     regards,
81970     Ben
81972 commit b24f119d672b709d153ff2ac091d4aa63ec6877d
81973 Author: Ben Warren <bwarren@qstreams.com>
81974 Date:   Thu Sep 7 16:51:04 2006 -0400
81976     Multi-bus I2C implementation of MPC834x
81978     Hello,
81980     Attached is a patch implementing multiple I2C buses on the MPC834x CPU
81981     family and the MPC8349EMDS board in particular.
81982     This patch requires Patch 1 (Add support for multiple I2C buses).
81983     Testing was performed on a 533MHz board.
81985     /*** Note: This patch replaces ticket DNX#2006083042000027 ***/
81987     Signed-off-by: Ben Warren <bwarren@qstreams.com>
81989     CHANGELOG:
81990             Implemented driver-level code to support two I2C buses on the
81991     MPC834x CPU family and the MPC8349EMDS board.  Available I2C bus speeds
81992     are 50kHz, 100kHz and 400kHz on each bus.
81994     regards,
81995     Ben
81997 commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae
81998 Author: Ben Warren <bwarren@qstreams.com>
81999 Date:   Thu Sep 7 16:50:54 2006 -0400
82001     Add support for multiple I2C buses
82003     Hello,
82005     Attached is a patch providing support for multiple I2C buses at the
82006     command level.  The second part of the patch includes an implementation
82007     for the MPC834x CPU and MPC8349EMDS board.
82009     /*** Note: This patch replaces ticket DNX#2006083042000018 ***/
82011     Signed-off-by: Ben Warren <bwarren@qstreams.com>
82013     Overview:
82015     1. Include new 'i2c' command (based on USB implementation) using
82016     CONFIG_I2C_CMD_TREE.
82018     2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS.  Note that
82019     the commands to change bus number and speed are only available under the
82020     new 'i2c' command mentioned in the first bullet.
82022     3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus
82023     systems.  When CONFIG_I2C_MULTI_BUS is used, this option takes the form
82024     of an array of bus-device pairs.  Otherwise, it is an array of uchar.
82026     CHANGELOG:
82027             Added new 'i2c' master command for all I2C interaction.  This is
82028     conditionally compiled with CONFIG_I2C_CMD_TREE.  New commands added for
82029     setting I2C bus speed as well as changing the active bus if the board
82030     has more than one (conditionally compiled with
82031     CONFIG_I2C_MULTI_BUS).  Updated NOPROBE logic to handle multiple buses.
82032     Updated README.
82034     regards,
82035     Ben
82037 commit bed85caf872714ebf53013967a695c9d63acfc68
82038 Author: Timur Tabi <timur@freescale.com>
82039 Date:   Tue Oct 31 18:13:36 2006 -0600
82041     mpc83xx: Add support for Errata DDR6 on MPC 834x systems
82043     CHANGELOG:
82045     * Errata DDR6, which affects all current MPC 834x processors, lists changes
82046       required to maintain compatibility with various types of DDR memory.  This
82047       patch implements those changes.
82049     Signed-off-by: Timur Tabi <timur@freescale.com>
82051 commit afd6e470f639883002c7c59d562690a5cb0f4865
82052 Author: Timur Tabi <timur@freescale.com>
82053 Date:   Wed Oct 25 18:45:23 2006 -0500
82055     mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it
82057 commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a
82058 Author: Timur Tabi <timur@freescale.com>
82059 Date:   Tue Aug 22 17:07:00 2006 -0500
82061     mpc83xx: Add support for variable flash memory sizes on 83xx systems
82063     CHANGELOG:
82065     * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access
82066        window registers, instead of using a hard-coded value of 8MB.
82068     Signed-off-by: Timur Tabi <timur@freescale.com>
82070 commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965
82071 Author: Tanya Jiang <tanya.jiang@freescale.com>
82072 Date:   Thu Aug 3 18:38:13 2006 +0800
82074     mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros
82076     Unified TQM834x variable names with 83xx and consolidated macro
82077     in preparation for the 8360 and other upcoming 83xx devices.
82079     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
82081 commit f6eda7f80ccc13d658020268c507d7173cf2e8aa
82082 Author: Dave Liu <daveliu@freescale.com>
82083 Date:   Wed Oct 25 14:41:21 2006 -0500
82085     mpc83xx: Changed to unified mpx83xx names and added common 83xx changes
82087     Incorporated the common unified variable names and the changes in preparation
82088     for releasing mpc8360 patches.
82090     Signed-off-by: Dave Liu <daveliu@freescale.com>
82092 commit 3894c46c27c64891f93ac04edde86a9fa9758d92
82093 Author: Tanya Jiang <tanya.jiang@freescale.com>
82094 Date:   Thu Aug 3 18:36:02 2006 +0800
82096     mpc83xx: Fix missing build for mpc8349emds pci.c
82098     Make pci build for mpc8349emds
82100     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
82102 commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219
82103 Author: Tanya Jiang <tanya.jiang@freescale.com>
82104 Date:   Thu Aug 3 18:39:49 2006 +0800
82106     mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
82108     Removed unused file resetvec.S for mpc83xx cpu
82110     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
82112 commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf
82113 Author: Nick Spence <Nick.Spence@freescale.com>
82114 Date:   Sat Sep 30 00:32:59 2006 -0700
82116     NAND Flash verify across block boundaries
82118     This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is
82119     defined
82120     and the write crosses a block boundary. The pointer to the verification
82121     buffer (bufstart) is not being updated to reflect the starting of the
82122     new
82123     block so the verification of the second block fails.
82125     CHANGELOG:
82127     * Fix NAND FLASH page verification across block boundaries
82129 commit f484dc791a3932537213c43c654cc1295c64b84c
82130 Author: Nick Spence <nick.spence@freescale.com>
82131 Date:   Thu Sep 7 07:39:46 2006 -0700
82133     Added RGMII support to the TSECs and Marvell 881111 Phy
82135     Added a phy initialization to adjust the RGMII RX and TX timing
82136     Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode
82138     Signed-off-by: Nick Spence <nick.spence@freescale.com>
82140 commit 4831c8b8a97799da77923d6bbb4c260c0d45521c
82141 Author: roy zang <tie-fei.zang@freescale.com>
82142 Date:   Fri Nov 3 13:10:00 2006 +0800
82144     Remove some unused CFG define.
82145     undef CFG_DRAM_TEST
82147 commit 99c09c4dec34f77c243bf51bea532e3f339410ad
82148 Author: roy zang <tie-fei.zang@freescale.com>
82149 Date:   Fri Nov 3 13:07:36 2006 +0800
82151     Change the TEXT_BASE from 0xFFF00000 to 0xFF000000.
82152     Both work. 0xFF000000 seems more reasonable.
82154 commit c59200443072353044aa4bf737a5a60f9a9af231
82155 Author: Wolfgang Denk <wd@pollux.denx.de>
82156 Date:   Thu Nov 2 15:15:01 2006 +0100
82158     Release U-Boot 1.1.6
82160 commit c1fbe4103a0d6c8957f912af902d705ba67836f2
82161 Author: roy zang <tie-fei.zang@freescale.com>
82162 Date:   Thu Nov 2 19:14:48 2006 +0800
82164     This patch comes from Yuli's posted patch on 8/8/2006
82165     titled "CFI Driver Little-Endian write Issue".
82167     http://sourceforge.net/mailarchive/message.php?msg_id=36311999
82169     If that patch applied, please discard this one.
82170     Until now , I do not see his patch is applied. So please apply this one.
82172     Signed-off-by: Yuli Barcohen <yuli@arabellasw.com>
82173     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82175 commit b825f158e449e1e9cf74c08e572955e122394c96
82176 Author: roy zang <tie-fei.zang@freescale.com>
82177 Date:   Thu Nov 2 19:12:31 2006 +0800
82179     Tsi108 on chip i2c support.
82181     The i2c  Interface provides a master-only, serial interface that can be
82182     used for initializing Tsi108/Tsi109 registers from an EEPROM after a
82183     device reset.
82185     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82186     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82188 commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8
82189 Author: roy zang <tie-fei.zang@freescale.com>
82190 Date:   Thu Nov 2 19:11:06 2006 +0800
82192     Tsi108 on chip pci controller support.
82194     If there is no pci card, the tsi108/109 pci configure read will
82195     cause a machine check exception to the processor. PCI error should
82196     also be cleared after the read.
82198     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82199     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82201 commit d1927cee977126e547ceeba23e4f978f377cfb8f
82202 Author: roy zang <tie-fei.zang@freescale.com>
82203 Date:   Thu Nov 2 19:08:55 2006 +0800
82205     Tundra tsi108 on chip Ethernet controller support.
82207     The following is a brief description of the Ethernet controller:
82208     The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent
82209     Gigabit Ethernet ports,E0 and E1.  It uses a single Management interface
82210     to manage the two physical connection devices (PHYs).  Each Ethernet port
82211     has its own statistics monitor that tracks and reports key interface
82212     statistics.  Each port supports a 256-entry hash table for address
82213     filtering.  In addition, each port is bridged to the Switch Fabric
82214     through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO.
82216     Each Ethernet port also has a pair of internal Ethernet DMA channels to
82217     support the transmit and receive data flows.  The Ethernet DMA channels
82218     use descriptors set up in memory, the memory map of the device, and
82219     access via the Switch Fabric.  The Ethernet Controller?s DMA arbiter
82220     handles arbitration for the Switch Fabric.  The Controller also
82221     has a register businterface for register accesses and status monitor
82222     control.
82224     The PMD (Physical Media Device) interface operates in MII, GMII, or TBI
82225     modes.  The MII mode is used for connecting with 10 or 100 Mbit/s PMDs.
82226     The GMII and TBI modes are used to connect with Gigabit PMDs.  Internal
82227     data flows to and from the Ethernet Controller through the Switch Fabric.
82229     Each Ethernet port uses its transmit and receive DMA channels to manage
82230     data flows through buffer descriptors that are predefined by the
82231     system (the descriptors can exist anywhere in the system memory map).
82232     These descriptors are data structures that point to buffers filled
82233     with data ready to transmit over Ethernet, or they point to empty
82234     buffers ready to receive data from Ethernet.
82236     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82237     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82239 commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e
82240 Author: roy zang <tie-fei.zang@freescale.com>
82241 Date:   Thu Nov 2 19:01:33 2006 +0800
82243     Tundra tsi108 header file.
82245     The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for
82246     PowerPC processors that offers numerous system interconnect options for
82247     embedded application designers. The Tsi108 can interconnect 60x or
82248     MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet,
82249     and Flash. Provided the macro define for tsi108 chip.
82251     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82252     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82254 commit 87c4db09699c6b89176b31004afcb83eb1585d47
82255 Author: roy zang <tie-fei.zang@freescale.com>
82256 Date:   Thu Nov 2 18:59:15 2006 +0800
82258     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
82259     mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2.
82261     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82262     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82264 commit 27801b8ab11c61b577e45742a515bb3b23b80241
82265 Author: roy zang <tie-fei.zang@freescale.com>
82266 Date:   Thu Nov 2 18:57:21 2006 +0800
82268     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
82269     Make ,config.mk and link file for the mpc7448hpc2 board.
82271     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82272     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82274 commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6
82275 Author: roy zang <tie-fei.zang@freescale.com>
82276 Date:   Thu Nov 2 18:55:04 2006 +0800
82278     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
82279     The mpc7448hpc2 board support header file.
82281     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82282     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82284 commit 625bb5ddb50b243f931262ca8c46956409471917
82285 Author: roy zang <tie-fei.zang@freescale.com>
82286 Date:   Thu Nov 2 18:52:21 2006 +0800
82288     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
82289     The mpc7448hpc2 board support low level assemble language init code.
82291     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82292     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82294 commit 4c52783b3d024e153c4972b97332e314bc3bdc46
82295 Author: roy zang <tie-fei.zang@freescale.com>
82296 Date:   Thu Nov 2 18:49:51 2006 +0800
82298     General code modification for mpc7448hpc2 board support.
82299     1. Add 7447A and 7448 processor support.
82300     2. Add the following flags.
82302     CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically
82303     (such as by switch on board), this flag should be set.
82305     CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot
82306     relocates to RAM, this flag should be set.
82308     CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the
82309     system hang in exception, this flag should be set.
82311     There is a design issue for tsi108/109 pci configure  read. When pci scan
82312     the slots, if there is no pci card, the tsi108/9 will cause a machine
82313     check exception for mpc7448 processor.
82315     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
82316     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82318 commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695
82319 Author: roy zang <tie-fei.zang@freescale.com>
82320 Date:   Thu Nov 2 18:34:47 2006 +0800
82322     Add README file for mpc7448hpc2 board.
82323     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
82325 commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526
82326 Author: Bartlomiej Sieka <tur@semihalf.com>
82327 Date:   Wed Nov 1 02:04:38 2006 +0100
82329     Finish up support for MarelV38B board
82330      - add watchdog support
82331      - enable GPIO_WKUP_7 pin for input
82332      - code cleanup
82334 commit ffa150bc90c943ca265170bd1be3f293674dd5c7
82335 Author: Bartlomiej Sieka <tur@semihalf.com>
82336 Date:   Wed Nov 1 01:45:46 2006 +0100
82338     - Fix issues related to the use of ELDK 4 when compiling for MarelV38B:
82339           * remove warnings when compiling ethaddr.c
82340           * adjust linker script (fixes a crash resulting from incorrect
82341           definition of __u_boot_cmd_start)
82342     - Some MarelV38B code cleanup.
82344 commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
82345 Author: Bartlomiej Sieka <tur@semihalf.com>
82346 Date:   Wed Nov 1 01:38:16 2006 +0100
82348     - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the
82349       MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's
82350       Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with
82351       MPC5XXX_WU_GPIO_DATA_O for affected boards.
82353     - Add defintions for some MPC5XXX GPIO pins.
82355 commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8
82356 Author: Bartlomiej Sieka <tur@semihalf.com>
82357 Date:   Wed Nov 1 01:34:29 2006 +0100
82359     Changed MarelV38B board make target to lowercase. Config file cleanup.
82361 commit 1954be6e9c9421b45d0a9d05b10356acc7563150
82362 Author: Wolfgang Denk <wd@pollux.denx.de>
82363 Date:   Sun Oct 29 01:03:51 2006 +0200
82365     Automatically adjust ARFLAGS so "make -s" is really silent.
82367 commit fae684e89844856383bdf101440889557df3e6b1
82368 Author: Stefan Roese <sr@denx.de>
82369 Date:   Sat Oct 28 16:45:00 2006 +0200
82371     [PATCH] omap925.c: Remove unused functions
82373     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
82374     Signed-off-by: Stefan Roese <sr@denx.de>
82376 commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776
82377 Author: Stefan Roese <sr@denx.de>
82378 Date:   Sat Oct 28 17:12:58 2006 +0200
82380     [PATCH] Add some missing machtypes for netstar & voiceblue boards
82382     Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of
82383     numbers in code.
82385     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
82386     Signed-off-by: Stefan Roese <sr@denx.de>
82388 commit 856f054410cef52d868feb330168b2a4c4091328
82389 Author: Stefan Roese <sr@denx.de>
82390 Date:   Sat Oct 28 15:55:52 2006 +0200
82392     [PATCH] NAND: Partition name support added to NAND subsystem
82394     chpart, nboot and NAND subsystem related commands now accept also partition
82395     name to specify offset.
82397     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
82398     Signed-off-by: Stefan Roese <sr@denx.de>
82400 commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6
82401 Author: Wolfgang Denk <wd@pollux.denx.de>
82402 Date:   Sat Oct 28 02:29:44 2006 +0200
82404     Update CHANGELOG.
82406 commit 2751a95abd1b96911081c357e96a12fa97b40dee
82407 Author: Wolfgang Denk <wd@pollux.denx.de>
82408 Date:   Sat Oct 28 02:29:14 2006 +0200
82410     Enable commandline editing and hush shell on all TQM boards.
82412 commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7
82413 Author: Wolfgang Denk <wd@pollux.denx.de>
82414 Date:   Sat Oct 28 02:28:02 2006 +0200
82416     README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE
82418 commit 471a7be7a042e95e440f5de969c9765214ae8d6e
82419 Author: Wolfgang Denk <wd@denx.de>
82420 Date:   Sat Oct 28 01:14:32 2006 +0200
82422     Check for illegal character '=' in environment variable names.
82424     Make sure the string passed as variable name does not contain a '='
82425     character. This not only prevents the common error or typing
82426     "setenv foo=bar" instead of "setenv foo bar", but (more importantly)
82427     also closes a backdoor which allowed to delete write-protected
82428     environment variables, for example by using "setenv ethaddr=".
82430 commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2
82431 Author: Wolfgang Denk <wd@pollux.denx.de>
82432 Date:   Sat Oct 28 00:38:39 2006 +0200
82434     Minor code cleanup.
82436 commit e11887a77d81077416a2d1c5e0354916fee8c034
82437 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
82438 Date:   Thu Oct 26 17:55:31 2006 +0200
82440     Don't pass any debug options directly to the assembler
82442     When passing the -g option to gcc, gcc automatically selects a
82443     suitable --g<format> option to pass on to the assembler.
82444     Thus, there's no point in forcing a specific debug option on the
82445     assembler using the -Wa mechanism.
82447     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
82449 commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393
82450 Author: Jon Loeliger <jdl@freescale.com>
82451 Date:   Fri Oct 27 07:47:22 2006 -0500
82453     MPC86xx: Cleaned up unused and conditionally used local variables.
82455     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82457 commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9
82458 Author: Wolfgang Denk <wd@pollux.denx.de>
82459 Date:   Fri Oct 27 11:55:21 2006 +0200
82461     Fix "ar" flags in some Makefiles to allow for silent "make -s"
82463 commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f
82464 Author: Ben Warren <bwarren@qstreams.com>
82465 Date:   Thu Oct 26 14:38:25 2006 -0400
82467     Fix TSEC driver (now for real): avoid crashes if PHY is not attached
82468     to a TSEC (e.g. a switch is connected via RMII) or
82469     if the PHY is defective/incorrectly configured.
82471     Signed-off-by: Ben Warren <bwarren@qstreams.com>
82473 commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999
82474 Author: Ben Warren <bwarren@qstreams.com>
82475 Date:   Thu Oct 26 14:38:25 2006 -0400
82477     Fix TSEC driver: avoid crashes if PHY is not attached
82478     to a TSEC (e.g. a switch is connected via RMII) or
82479     if the PHY is defective/incorrectly configured.
82481     Signed-off-by: Ben Warren <bwarren@qstreams.com>
82483 commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6
82484 Author: Wolfgang Denk <wd@pollux.denx.de>
82485 Date:   Thu Oct 26 16:24:31 2006 +0200
82487     Code cleanup.
82489 commit 5e3b0bc19f07ed277d85324ad0427642c8981baf
82490 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
82491 Date:   Wed Oct 25 15:48:59 2006 +0200
82493     Finish up support for the ATSTK1000/ATSTK1002 boards
82495     Add atstk1002_config target to Makefile and move the AVR32 section
82496     down below Blackfin so that it doesn't end up in the middle of
82497     MIPS.
82499     Drop the autogenerated linker script thing for now. Will have to
82500     revisit how to handle chips with different flash and RAM layout
82501     later.
82503     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
82505 commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4
82506 Author: Kumar Gala <galak@kernel.crashing.org>
82507 Date:   Tue Oct 24 23:47:37 2006 -0500
82509     Added support for Multi-Image files that contain a device tree
82511     If a Multi-Image file contains a third image we try to use it as a
82512     device tree.  The device tree image is assumed to be uncompressed in the
82513     image file.  We automatically allocate space for the device tree in memory
82514     and provide an 8k pad to allow more than a reasonable amount of growth.
82516     Additionally, a device tree that was contained in flash will now automatically
82517     get copied to system memory as part of boot.  Previously an error was
82518     reported if one tried to boot a device tree that was in flash.
82520     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
82522 commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512
82523 Author: Wolfgang Denk <wd@denx.de>
82524 Date:   Tue Oct 24 21:35:55 2006 +0200
82526     Switch to automatically generated CHANGELOG file.
82527     (use "make CHANGELOG" to update it from time to time)
82529 commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6
82530 Author: Stefan Roese <sr@denx.de>
82531 Date:   Tue Oct 24 18:06:48 2006 +0200
82533     Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c
82534     Patch by Stefan Roese, 24 Oct 2006
82536 commit 8ae3b713b2286e0c3213b7802062e4c1599010de
82537 Author: Wolfgang Denk <wd@pollux.denx.de>
82538 Date:   Tue Oct 24 17:24:55 2006 +0200
82540     Merge with /home/wd/git/u-boot/master
82542 commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e
82543 Author: Wolfgang Denk <wd@pollux.denx.de>
82544 Date:   Tue Oct 24 15:32:57 2006 +0200
82546     Code cleanup
82548 commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e
82549 Author: Wolfgang Denk <wd@pollux.denx.de>
82550 Date:   Tue Oct 24 14:51:36 2006 +0200
82552     Move atstk1000 files into vendor specific directory.
82553     Patch by Haavard Skinnemoen, 12 Sep 2006
82555 commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37
82556 Author: Wolfgang Denk <wd@pollux.denx.de>
82557 Date:   Tue Oct 24 14:42:37 2006 +0200
82559     Add ATSTK1000 and ATSTK1002 board support
82560     Patch by Haavard Skinnemoen, 06 Sep 2006
82562     This patch adds support for the ATSTK1000 with the ATSTK1002 CPU
82563     daughterboard.
82565     ATSTK1000 is a full-featured development board for AT32AP CPUs. It
82566     has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker,
82567     and connectors for USART, PS/2, VGA, USB, MMC/SD cards and
82568     CompactFlash cards. For more information, please see this page:
82570     http://www.atmel.com/dyn/products/tools.asp?family_id=682
82572     The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the
82573     AT32AP7000 chip.
82575     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
82577 commit f93ae788c3640fcde5db383471d45548ff4060d0
82578 Author: Wolfgang Denk <wd@pollux.denx.de>
82579 Date:   Tue Oct 24 14:31:24 2006 +0200
82581     Add common serial driver for Atmel AT32 and AT91 chips
82582     Patch by Haavard Skinnemoen, 06 Sep 2006
82584     This is a first attempt at creating a common serial driver for Atmel
82585     chips. For now, it supports the AT32AP7000 AVR32 chip, but it should
82586     be possible to support AT91RM9200 and other ARM-based chips with some
82587     minor modifications.
82589     There's nothing fundamentally AVR32-specific in this driver, but it
82590     does use some features which are currently only defined for the
82591     AT32AP CPU port:
82592       * pm_get_clock_freq: Obtain the clock frequency of a given domain
82593       * gd->console_uart: A "struct device" containing information about
82594         register mappings, gpio resources and clocks associated with the
82595         UART device.
82597     For more information about these features, please see the "AT32AP
82598     CPU" patch.
82600 commit 72a087e04705c26cad982879ebd06b5281bf825a
82601 Author: Wolfgang Denk <wd@pollux.denx.de>
82602 Date:   Tue Oct 24 14:27:35 2006 +0200
82604     Add AT32AP CPU and AT32AP7000 SoC support
82605     Patch by Haavard Skinnemoen, 06 Sep 2006
82607     This patch adds support for the AT32AP CPU family and the AT32AP7000
82608     chip, which is the first chip implementing the AVR32 architecture.
82610     The AT32AP CPU core is a high-performance implementation featuring a
82611     7-stage pipeline, separate instruction- and data caches, and a MMU.
82612     For more information, please see the "AVR32 AP Technical Reference":
82614     http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
82616     In addition to this, the AT32AP7000 chip comes with a large set of
82617     integrated peripherals, many of which are shared with the AT91 series
82618     of ARM-based microcontrollers from Atmel. Full data sheet is
82619     available here:
82621     http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
82623     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
82625 commit 7b64fef33c66be648826c0ff9758298ef13d0604
82626 Author: Wolfgang Denk <wd@pollux.denx.de>
82627 Date:   Tue Oct 24 14:21:16 2006 +0200
82629     Add AVR32 architecture support
82630     Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
82632     This patch adds common infrastructure code for the Atmel AVR32
82633     architecture. See doc/README.AVR32 for details.
82635     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
82637 commit 2da2d9a4766063b9848f3a35ad6025499cf87265
82638 Author: Wolfgang Denk <wd@pollux.denx.de>
82639 Date:   Tue Oct 24 13:57:33 2006 +0200
82641     Use -g instead of -gstabs in AFLAGS_DEBUG
82642     Patch by Haavard Skinnemoen, 30 Aug 2006
82644     In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
82645     matter what the target's preferred debugging format is. This patch
82646     simply replaces -gstabs with -g, so that the default debugging format
82647     for the architecture is used.
82649 commit 965829872169c2996023840d98e1d85ad148d629
82650 Author: Wolfgang Denk <wd@pollux.denx.de>
82651 Date:   Tue Oct 24 13:55:18 2006 +0200
82653     Fix/workaround broken dependency handling with make 3.81
82654     Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200
82656 commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a
82657 Author: Marian Balakowicz <m8@semihalf.com>
82658 Date:   Mon Oct 23 22:17:05 2006 +0200
82660     Fix sequoia separate object direcory building problems.
82662 commit 3dfa9cfdcee78b30da3432318b32821ffabe974b
82663 Author: Jon Loeliger <jdl@freescale.com>
82664 Date:   Fri Oct 20 17:16:35 2006 -0500
82666     Use generic I2C register block on 85xx and 86xx.
82668     Replace private IMMAP I2C structures with generic reg block
82669     and allow 86xx to have multiple I2C device busses.
82671     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82673 commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c
82674 Author: Jon Loeliger <jdl@freescale.com>
82675 Date:   Fri Oct 20 15:54:34 2006 -0500
82677     Fix compilation warnings on a few 85xx boards.
82679     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82681 commit 2047672684cf85cb6f96a1fbc993180aaaf19a99
82682 Author: Jon Loeliger <jdl@freescale.com>
82683 Date:   Fri Oct 20 15:50:15 2006 -0500
82685     Converted all 85xx boards to use a common FSL I2C driver.
82686     Introduced COFIG_FSL_I2C to select the common FSL I2C driver.
82687     And removed hard i2c path from a few u-boot.lds scipts too.
82688     Minor whitespace cleanups along the way.
82690     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82692 commit 4d45f69e362b05892c9e92a7907e5820995612aa
82693 Author: Jon Loeliger <jdl@freescale.com>
82694 Date:   Thu Oct 19 12:02:24 2006 -0500
82696     Rewrite a series of goto statements as a sequences of
82697     conditional expressions instead.
82699     Use consistent return code 0/-1 for good/bad indicators.
82701     Include one fewer file if the driver isn't used at all.
82703     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82705 commit 7237c033b02fe295880435f1eb80819a0c987532
82706 Author: Jon Loeliger <jdl@freescale.com>
82707 Date:   Thu Oct 19 11:02:16 2006 -0500
82709     Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
82711     in an effort to begin to unify the umpteen FSL I2C drivers that
82712     are all otherwise very similar.
82714     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82716 commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b
82717 Author: Jon Loeliger <jdl@freescale.com>
82718 Date:   Thu Oct 19 11:33:52 2006 -0500
82720     * Fix a bunch of compiler warnings for gcc 4.0
82722     Signed-off-by: Matthew McClintock <msm@freescale.com>
82724 commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2
82725 Author: Stefan Roese <sr@denx.de>
82726 Date:   Tue Oct 17 06:14:31 2006 +0200
82728     Add monitor functions for indirect access to PPC440 DCR's
82729     Patch by Leonid Baryudin, 12 Oct 2006
82731 commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09
82732 Author: Jon Loeliger <jdl@freescale.com>
82733 Date:   Fri Oct 13 16:47:53 2006 -0500
82735     Fixed leading whitespace issues.
82736     Removed spurious LAWAR thing.
82738     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82740 commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391
82741 Author: Jon Loeliger <jdl@freescale.com>
82742 Date:   Thu Oct 12 10:42:36 2006 -0500
82744     Remove unneeded include files and local variable.
82746     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82748 commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5
82749 Author: Grant Likely <grant.likely@secretlab.ca>
82750 Date:   Tue Oct 10 00:23:32 2006 -0600
82752     Fix possible uninitialized variable compiler warning.
82754     When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in
82755     do_bootm_linux() may be uninitialized.  There is no possibility in the
82756     current code that len will get used uninitialized, but this fix follows
82757     the existing convention of setting both len and data to zero at the same
82758     time.
82760     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
82762 commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e
82763 Author: Matthew McClintock <msm@freescale.com>
82764 Date:   Wed Oct 11 15:13:01 2006 -0500
82766     * Fix a bunch of compiler warnings for gcc 4.0
82768     Signed-off-by: Matthew McClintock <msm@freescale.com>
82770 commit bf651baa365e5447246aad6a633ccd667cf24a39
82771 Author: Jon Loeliger <jdl@freescale.com>
82772 Date:   Wed Oct 11 10:10:43 2006 -0500
82774     Move "ar" flags to config.mk to allow for silent "make -s"
82776 commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e
82777 Author: Jon Loeliger <jdl@freescale.com>
82778 Date:   Tue Oct 10 17:19:03 2006 -0500
82780     Coding style changes to remove local varible blocks
82781     and reformat a bit nicer.
82783 commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a
82784 Author: Jon Loeliger <jdl@freescale.com>
82785 Date:   Tue Oct 10 17:16:04 2006 -0500
82787     Fix whitespace issues.
82789 commit 7b382b7125f2397cce63253df62f183e3dfa2770
82790 Author: Jon Loeliger <jdl@freescale.com>
82791 Date:   Tue Oct 10 17:14:45 2006 -0500
82793     Fix whitespace issues.
82795 commit e10390ddd736b0dad1528eec4b0fe35c0827139a
82796 Author: Jon Loeliger <jdl@freescale.com>
82797 Date:   Tue Oct 10 17:06:53 2006 -0500
82799     Fix whitespace issues.
82801 commit 89875e96ba3f023157bf50d5f8e33bf254964a76
82802 Author: Jon Loeliger <jdl@freescale.com>
82803 Date:   Tue Oct 10 17:03:43 2006 -0500
82805     Ran lindent and cleaned up whitespace issues.
82806     Format for 80-columns too.
82808 commit 333961ae7095fc66d8a041fce1ac9ee873b09d86
82809 Author: Jon Loeliger <jdl@freescale.com>
82810 Date:   Tue Oct 10 17:02:22 2006 -0500
82812     Fix whitespace and 80-col issues.
82814 commit 5c912cb1c31266c66ca59b36f9b6f87296421d75
82815 Author: Stefan Roese <sr@denx.de>
82816 Date:   Sat Oct 7 11:36:51 2006 +0200
82818     CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
82819     Patch by Stefan Roese, 07 Oct 2006
82821 commit 5bc528fa4da751d472397b308137238a6465afd2
82822 Author: Stefan Roese <sr@denx.de>
82823 Date:   Sat Oct 7 11:35:25 2006 +0200
82825     Update ALPR code (NAND support working now)
82826     Patch by Stefan Roese, 07 Oct 2006
82828 commit 77d5034847d328753b80c46b83f960a14a26f40e
82829 Author: Stefan Roese <sr@denx.de>
82830 Date:   Sat Oct 7 11:33:03 2006 +0200
82832     Remove compile warnings in fpga code
82833     Patch by Stefan Roese, 07 Oct 2006
82835 commit f3443867e90d2979a7dd1c65b0d537777e1f9850
82836 Author: Stefan Roese <sr@denx.de>
82837 Date:   Sat Oct 7 11:30:52 2006 +0200
82839     Add CONFIG_BOARD_RESET to configure board specific reset function
82840     Patch by Stefan Roese, 07 Oct 2006
82842 commit f55df18187e7a45cb73fec4370d12135e6691ae1
82843 Author: John Traill <john.traill@freescale.com>
82844 Date:   Fri Sep 29 08:23:12 2006 +0100
82846     Fix missing tCycle/modfreq calculation.
82848     Signed-off-by: John Traill <john.traill@freescale.com>
82850 commit 8272dc2f58f2473d8995fcc9b916440cfba080f0
82851 Author: Andy Fleming <afleming@freescale.com>
82852 Date:   Wed Sep 13 10:33:35 2006 -0500
82854     Updated config headers to add default FDT-based booting
82856 commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3
82857 Author: Andy Fleming <afleming@freescale.com>
82858 Date:   Wed Sep 13 10:34:18 2006 -0500
82860     Add support for eTSEC 3 & 4 on 8548 CDS
82862     * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS.
82863       This will only work on rev 1.3 boards (but doesn't break older boards)
82864     * Cleaned up some comments to reflect the expanded role of tsec
82865       in other systems
82867 commit 084d648b109c8984f83674043c1a7fa3885ef801
82868 Author: Andy Fleming <afleming@freescale.com>
82869 Date:   Wed Sep 13 10:33:56 2006 -0500
82871     Added code to support 2.6.18 PCI changes in u-boot
82873     * Added code to swizzle the IRQ map for the PCI
82875 commit afbdc649f8751e4f4f1a6f527edfe139773f2c15
82876 Author: Jon Loeliger <jdl@freescale.com>
82877 Date:   Tue Sep 19 09:34:10 2006 -0500
82879     Modified makefile for new build mechanism.
82881     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82883 commit d14ba6a798beb753e7a864500414fcc2d198b8bc
82884 Author: Jon Loeliger <jdl@freescale.com>
82885 Date:   Thu Sep 14 08:40:36 2006 -0500
82887     Handle 86xx SVR values according to the new Reference Manual.
82888     Both 8641 and 8641D have SVR == 0x8090, and are distinguished
82889     by the byte in bits 16-23 instead.
82890     Thanks to Jason Jin for noticing.
82892     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82894 commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7
82895 Author: Zhang Wei <wei.zhang@freescale.com>
82896 Date:   Mon Aug 28 14:25:31 2006 +0800
82898     Fixed an OF-tree off-by-one bug when adding a new property name.
82899     This bug will cause the kernel booting to pause a long time.
82901     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
82902     (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
82904 commit 9bff7a69a885adebbd2bd45990494ec4cf998a30
82905 Author: Jon Loeliger <jdl@freescale.com>
82906 Date:   Tue Aug 29 11:05:09 2006 -0500
82908     Remove trailing empty lines.
82910 commit cd6d73d5b895a5935ac4fde0a356288142a584e0
82911 Author: Jon Loeliger <jdl@freescale.com>
82912 Date:   Tue Aug 29 09:48:49 2006 -0500
82914     Remove bogus msync and use volatile asm.
82916 commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e
82917 Author: Jon Loeliger <jdl@freescale.com>
82918 Date:   Tue Aug 29 08:17:14 2006 -0500
82920     Add myself as maintainer for MPC8641HPCN.
82922 commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d
82923 Author: Zhang Wei <wei.zhang@freescale.com>
82924 Date:   Mon Aug 28 14:25:31 2006 +0800
82926     Fixed an OF-tree off-by-one bug when adding a new property name.
82927     This bug will cause the kernel booting to pause a long time.
82929     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
82931 commit 5567806b67d0ae83493aa8823ad3b6c914f581d7
82932 Author: Haiying Wang <haiying.wang@freescale.com>
82933 Date:   Fri Aug 25 14:38:34 2006 -0400
82935     Change ramdiskaddr and dtbaddr
82936     Remove PEX fluff commands.
82938     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
82939     Signed-off-by: Jon Loeliger <jdl@freescale.com>
82941 commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e
82942 Author: Matthew McClintock <msm@freescale.com>
82943 Date:   Wed Aug 23 13:32:45 2006 -0500
82945     * Another small fix for booting with disable_of
82947     Signed-off-by: Matthew McClintock <msm@freescale.com>
82949 commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c
82950 Author: Jon Loeliger <jdl@freescale.com>
82951 Date:   Wed Aug 23 11:04:43 2006 -0500
82953     Cleanup and lindent new AHCI driver.
82955 commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de
82956 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
82957 Date:   Wed Aug 23 19:15:12 2006 +0800
82959     Add AHCI define and sata support for MPC8641HPCN board.
82961     Signed-off-by:Jason Jin<jason.jin@freescale.com>
82963 commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4
82964 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
82965 Date:   Wed Aug 23 19:10:44 2006 +0800
82967     Add AHCI support to u-boot
82969     Add AHCI support in u-boot, enable the sata disk controllers which
82970     following the AHCI protocol.
82972     Signed-off-by:Jason Jin<jason.jin@freescale.com>
82974 commit d8ea2acf5f137cae99417df4f573d036ee384668
82975 Author: Zhang Wei <wei.zhang@freescale.com>
82976 Date:   Wed Aug 23 17:54:32 2006 +0800
82978     Add dtb boot-up parameter to default boot commands.
82980     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
82982 commit b93775c2036b99baa390ea425c4771895bbc63c4
82983 Author: Jon Loeliger <jdl@freescale.com>
82984 Date:   Tue Aug 22 18:26:08 2006 -0500
82986     Cleanup even more poorly introduced whitespace.
82988 commit ae6241685cbcf0c79a3636530d2ceab1fb291a94
82989 Author: Jon Loeliger <jdl@freescale.com>
82990 Date:   Tue Aug 22 18:07:00 2006 -0500
82992     Cleanup more poorly introduced whitespace.
82994 commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57
82995 Author: Jon Loeliger <jdl@freescale.com>
82996 Date:   Tue Aug 22 17:54:05 2006 -0500
82998     Cleanup poorly introduced whitespace.
83000 commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
83001 Author: Jon Loeliger <jdl@freescale.com>
83002 Date:   Tue Aug 22 12:25:27 2006 -0500
83004     General indent and whitespace cleanups.
83006 commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f
83007 Author: Jon Loeliger <jdl@freescale.com>
83008 Date:   Tue Aug 22 12:06:18 2006 -0500
83010     General indent and whitespace cleanups.
83012 commit 41a0e8b304d3ff55fe27a230507aac79684016ac
83013 Author: Jon Loeliger <jdl@freescale.com>
83014 Date:   Tue Aug 22 10:42:21 2006 -0500
83016     Cleanup compiler warnings.
83018 commit 5de62c47a8628b3da4d73f7c07027f32a3342d40
83019 Author: Matthew McClintock <msm@freescale.com>
83020 Date:   Tue Aug 22 09:31:59 2006 -0500
83022     Fix disable_of booting
83024     Signed-off-by: Matthew McClintock <msm@freescale.com>
83026 commit 87a449c8ac396420cb24260f717ea9e6faa82047
83027 Author: Matthew McClintock <msm@freescale.com>
83028 Date:   Tue Aug 22 09:23:55 2006 -0500
83030     Support for FDT in uImage format, error when using FDT from flash
83032     Signed-off-by: Matthew McClintock <msm@freescale.com>
83034 commit 75c299c38369d01addd5e054b8a16217b70f4a86
83035 Author: Haiying Wang <haiying.wang@freescale.com>
83036 Date:   Tue Aug 15 15:12:55 2006 -0400
83038     Unlock cache before kernel starts up for MPC86xx
83040 commit 67256678f00c09b0a7f19e862e5c1847553d31bc
83041 Author: Haiying Wang <haiying.wang@freescale.com>
83042 Date:   Tue Aug 15 15:13:15 2006 -0400
83044     Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
83046 commit 1c8f6d8fb028f156094d05f2d14298e6479364ac
83047 Author: Haiying Wang <haiying.wang@freescale.com>
83048 Date:   Tue Aug 15 15:12:55 2006 -0400
83050     Unlock cache before kernel starts up for MPC86xx
83052 commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04
83053 Author: Haiying Wang <haiying.wang@freescale.com>
83054 Date:   Tue Aug 15 15:13:15 2006 -0400
83056     Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
83058 commit 86c8e17f25e972a7e272950a0735fad84e082b88
83059 Author: Matthew McClintock <msm@freescale.com>
83060 Date:   Wed Aug 16 13:59:47 2006 -0500
83062     * Fix disable_of booting
83064     Signed-off-by: Matthew McClintock <msm@freescale.com>
83066 commit 25c751e9adc86e22fe3b5b47cf2806379b575db7
83067 Author: Matthew McClintock <msm@freescale.com>
83068 Date:   Wed Aug 16 10:54:09 2006 -0500
83070     * Support for FDT in uImage format, error when using FDT from flash
83072     Signed-off-by: Matthew McClintock <msm@freescale.com>
83074 commit 899620c2d66d4eef3b2a0034d062e71d45d886c9
83075 Author: Stefan Roese <sr@denx.de>
83076 Date:   Tue Aug 15 14:22:35 2006 +0200
83078     Add initial support for the ALPR board from Prodrive
83079     NAND needs some additional testing
83080     Patch by Heiko Schocher, 15 Aug 2006
83082 commit f0ff4692ff3372dec55074a8eb444943ab095abb
83083 Author: Stefan Roese <sr@denx.de>
83084 Date:   Tue Aug 15 14:15:51 2006 +0200
83086     Add FPGA Altera Cyclone 2 support
83087     Patch by Heiko Schocher, 15 Aug 2006
83089 commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b
83090 Author: Jon Loeliger <jdl@freescale.com>
83091 Date:   Mon Aug 14 15:33:38 2006 -0500
83093     Fix BAT0 to actually be cacheable, non-guarded as documented.
83095     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83097 commit 40bc83559db5745681909fd7382ae509567e116d
83098 Author: Jon Loeliger <jdl@freescale.com>
83099 Date:   Wed Aug 9 15:32:16 2006 -0500
83101     Removed MPC8641HPCN DTS source file from build.
83102     It is no longer linked into U-Boot; its sources are
83103     now located in the kernel tree.
83105     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83107 commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb
83108 Author: Matthew McClintock <msm@freescale.com>
83109 Date:   Wed Jun 28 10:47:03 2006 -0500
83111     * Switched default PCI speed for 8540 ADS back to 33MHz
83113     * Added comments and a printf to warn that PCI-X won't
83114       work at 33MHz
83115       Patch by Andy Fleming 17-Mar-2006
83117     Signed-off-by: Andy Fleming <afleming@freescale.com>
83119 commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39
83120 Author: Matthew McClintock <msm@freescale.com>
83121 Date:   Wed Jun 28 10:46:35 2006 -0500
83123     * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
83125     Signed-off-by: Andy Fleming <afleming@freescale.com>
83127 commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452
83128 Author: Matthew McClintock <msm@freescale.com>
83129 Date:   Wed Jun 28 10:46:13 2006 -0500
83131     * Added VIA configuration table
83133     * Added support for PCI2 on CDS
83134       Patch by Andy Fleming 17-Mar-2006
83136     Signed-off-by: Andy Fleming <afleming@freescale.com>
83138 commit c88f9fe66b64247e5b6a38410ba315ca25596d16
83139 Author: Matthew McClintock <msm@freescale.com>
83140 Date:   Wed Jun 28 10:45:41 2006 -0500
83142     * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006
83144     Signed-off-by: Andy Fleming <afleming@freescale.com>
83146 commit 97074ed9655309b64231bc2cee69fe85399f8055
83147 Author: Matthew McClintock <msm@freescale.com>
83148 Date:   Wed Jun 28 10:45:17 2006 -0500
83150     * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006
83152     Signed-off-by: Andy Fleming <afleming@freescale.com>
83154 commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2
83155 Author: Matthew McClintock <msm@freescale.com>
83156 Date:   Wed Jun 28 10:44:49 2006 -0500
83158     * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006
83160     Signed-off-by: Andy Fleming <afleming@freescale.com>
83162 commit a4e11558b810ef2cddffdf7b9d86bc1130441960
83163 Author: Matthew McClintock <msm@freescale.com>
83164 Date:   Wed Jun 28 10:44:23 2006 -0500
83166     * Made sure the code which disables prefetch for PCI devices sets the size of the prefetch region to 0 Patch by Andy Fleming on 17-Mar-2006
83168     Signed-off-by: Andy Fleming <afleming@freescale.com>
83170 commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b
83171 Author: Matthew McClintock <msm@freescale.com>
83172 Date:   Wed Jun 28 10:43:36 2006 -0500
83174     * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006
83176     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83178 commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4
83179 Author: Matthew McClintock <msm@freescale.com>
83180 Date:   Wed Jun 28 10:43:00 2006 -0500
83182     * Removed the oftree.dts for stxxtx in light of the changes to the flat device tree handling code Patch by Matthew McClintock 26-June-2006
83184 commit 5498d90312aad9f6bdbf047986027c35b03cd163
83185 Author: Matthew McClintock <msm@freescale.com>
83186 Date:   Wed Jun 28 10:42:24 2006 -0500
83188     * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006
83190 commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe
83191 Author: Matthew McClintock <msm@freescale.com>
83192 Date:   Wed Jun 28 10:41:37 2006 -0500
83194     * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006
83196 commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a
83197 Author: John Traill <john.traill@freescale.com>
83198 Date:   Wed Aug 9 14:33:50 2006 +0100
83200     Add Rapidio support for the MPC8641HPCN
83202     Signed-off-by: John Traill <john.traill@freescale.com>
83204 commit 91a414c7d1fb0eac912592cd995b30c9f23045c9
83205 Author: John Traill <john.traill@freescale.com>
83206 Date:   Tue Aug 8 11:32:43 2006 +0100
83208     Fix caslat calculation
83210     Signed-off-by: John Traill <john.traill@freescale.com>
83212 commit 709d3073e74153278e7904a70819bbef7df50e1a
83213 Author: Jon Loeliger <jdl@freescale.com>
83214 Date:   Thu Aug 3 16:17:56 2006 -0500
83216     Convert to mac-address in ethernet nodes.
83218 commit 71748af833ca1017edf1415be376366ff2937d17
83219 Author: Haiying Wang <haiying.wang@freescale.com>
83220 Date:   Fri Jul 28 12:41:35 2006 -0400
83222     Correct the irq value of DUART2
83224 commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c
83225 Author: Haiying Wang <haiying.wang@freescale.com>
83226 Date:   Fri Jul 28 12:41:41 2006 -0400
83228     Change the space size of PEX IO in README
83230 commit 239db37c94f7a92941c4465feceb867c609241c5
83231 Author: Haiying Wang <haiying.wang@freescale.com>
83232 Date:   Fri Jul 28 12:41:18 2006 -0400
83234     Move get_board_sys_clk to board directory
83236 commit 492900b985439fbce1a118afde1e35def870db03
83237 Author: John Traill <john.traill@freescale.com>
83238 Date:   Fri Jul 28 09:03:54 2006 +0100
83240     Fix 8641HPCN pollution
83242 commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2
83243 Author: John Traill <john.traill@freescale.com>
83244 Date:   Fri Jul 28 08:16:06 2006 +0100
83246     Fix 8641HPCN timebase
83248 commit c86360b830f1eecd7a72208575dde4f57879faea
83249 Author: Zhang Wei <wei.zhang@freescale.com>
83250 Date:   Fri Jul 28 00:01:34 2006 +0800
83252     Fixed OF device tree of mpc86xxhpcn board.
83254     The changes works in with kernel irq mapping rework.
83256     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
83258 commit bea3f28d285942bf3f7ab339ce85178ded544225
83259 Author: Haiying Wang <haiying.wang@freescale.com>
83260 Date:   Wed Jul 12 10:48:05 2006 -0400
83262     Add support for reading and writing mac addresses to or from ID EEPROM.
83264     Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
83265     With attached patch, we can use command "mac/mac read/mac save/"
83266     to read and write EEPROM under u-boot prompt.
83268     U-boot will calculate the checksum of EEPROM while bootup,
83269     if it is right, then u-boot will check whether the mac address
83270     of eTSEC0/1/2/3 is availalbe (non-zero).
83272     If there is mac address availabe in EEPROM, u-boot will use it,
83273     otherewise, u-boot will use the mac address defined in
83274     MPC8641HPCN.h. This matches the requirement to set unique mac address
83275     for each TSEC port.
83277     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
83278     Signed-off-by: York Sun <yorksun@freescale.com>
83280 commit fcb28e763415e0e4e66b0f45842d1557ae198e5e
83281 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
83282 Date:   Thu Jul 13 10:35:10 2006 -0500
83284     Fixed initrd issue by define big RAM
83286     Signed-off-by:Jason Jin <Jason.jin@freescale.com>
83288 commit e6cd2a1785d74ec3d30a86f1cb360be8de478151
83289 Author: Jason Jin <Jason.jin@freescale.com>
83290 Date:   Fri Jul 7 10:01:45 2006 -0500
83292     We made a u-boot patch to fix the hang up issue
83293     when booting filesystem from ramdisk.
83295     Signed-off-by:Jason Jin <Jason.jin@freescale.com>
83297 commit 38433ccc5850ee70549af0b2bc5b920355ef5388
83298 Author: Matthew McClintock <msm@freescale.com>
83299 Date:   Wed Jun 28 10:47:03 2006 -0500
83301     * Switched default PCI speed for 8540 ADS back to 33MHz
83302     * Added comments and a printf to warn that PCI-X won't
83303       work at 33MHz
83304       Patch by Andy Fleming 17-Mar-2006
83306     Signed-off-by: Andy Fleming <afleming@freescale.com>
83308 commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19
83309 Author: Matthew McClintock <msm@freescale.com>
83310 Date:   Wed Jun 28 10:46:35 2006 -0500
83312     * Fixed a bug where 8555 PCI code used the old variable and
83313       function names
83314       Patch by Andy Fleming 17-Mar-2006
83316     Signed-off-by: Andy Fleming <afleming@freescale.com>
83318 commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac
83319 Author: Matthew McClintock <msm@freescale.com>
83320 Date:   Wed Jun 28 10:46:13 2006 -0500
83322     * Added VIA configuration table
83323     * Added support for PCI2 on CDS
83324       Patch by Andy Fleming 17-Mar-2006
83326     Signed-off-by: Andy Fleming <afleming@freescale.com>
83328 commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc
83329 Author: Matthew McClintock <msm@freescale.com>
83330 Date:   Wed Jun 28 10:45:41 2006 -0500
83332     * Fixed PCI memory definitions
83333       Patch by Andy Fleming 17-Mar-2006
83335     Signed-off-by: Andy Fleming <afleming@freescale.com>
83337 commit 087454609e47295443af793a282cddcd91a5f49c
83338 Author: Matthew McClintock <msm@freescale.com>
83339 Date:   Wed Jun 28 10:45:17 2006 -0500
83341     * Added support for initializing second PCI bus on 85xx
83342       Patch by Andy Fleming 17-Mar-2006
83344     Signed-off-by: Andy Fleming <afleming@freescale.com>
83346 commit b636aaeb6fd516a442fb611bbeeddf3077a687fb
83347 Author: Matthew McClintock <msm@freescale.com>
83348 Date:   Wed Jun 28 10:44:49 2006 -0500
83350     * Added PCI-X #defines for PCI-X initialization
83351       Patch by Andy Fleming on 17-Mar-2006
83353     Signed-off-by: Andy Fleming <afleming@freescale.com>
83355 commit 20abbc6fffa115690107cc942c7abf84bdc03a1b
83356 Author: Matthew McClintock <msm@freescale.com>
83357 Date:   Wed Jun 28 10:44:23 2006 -0500
83359     * Made sure the code which disables prefetch for PCI devices
83360       sets the size of the prefetch region to 0
83361       Patch by Andy Fleming on 17-Mar-2006
83363     Signed-off-by: Andy Fleming <afleming@freescale.com>
83365 commit 40d5fa35d02df22580593bf0039ab173367e8ef0
83366 Author: Matthew McClintock <msm@freescale.com>
83367 Date:   Wed Jun 28 10:43:36 2006 -0500
83369     * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards
83370       Patch by Jon Loeliger 17-Jan-2006
83372     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83374 commit be7e8b0cb5a0c49dc180075b96df296a893bf146
83375 Author: Matthew McClintock <msm@freescale.com>
83376 Date:   Wed Jun 28 10:43:00 2006 -0500
83378     * Removed the oftree.dts for stxxtx in light of the changes
83379       to the flat device tree handling code
83380       Patch by Matthew McClintock 26-June-2006
83382 commit 1b380ec225665e73959677f3893dc658c5925e05
83383 Author: Matthew McClintock <msm@freescale.com>
83384 Date:   Wed Jun 28 10:42:24 2006 -0500
83386     * Patch to modify ft_build.c to update flat device trees in place
83387       Patch by Matthew McClintock 26-June-2006
83389 commit 98a9c4d468a942a09ebe8979bec508017f3e4462
83390 Author: Matthew McClintock <msm@freescale.com>
83391 Date:   Wed Jun 28 10:41:37 2006 -0500
83393     * Modify bootm command to support booting with flat device trees
83394       Patch by Matthew McClintock 26-June-2006
83396 commit da012ab661fd4ab169dd7b9b32201a4df62cf34a
83397 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
83398 Date:   Wed Jun 28 08:43:56 2006 -0500
83400     Change Id to symbolic name for RTL8139
83402     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
83404 commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0
83405 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
83406 Date:   Tue Jun 27 18:12:10 2006 +0800
83408     Fix RTL8139 in big endian
83410     signed-off-by: Jason Jin <Jason.Jin@freescale.com>
83411     signed-off-by: Wei Zhang <wei.zhang@freescale.com>
83413 commit fcfb9a57947fc203b99fe81ab0578f7286261f9f
83414 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
83415 Date:   Tue Jun 27 18:12:23 2006 +0800
83417     Fix Tsec bug when no link
83419      When tftp a non-exist file from the tftp server, u-boot will check
83420      the link of all eth port. The original file will return wrong link
83421      state on the no link ports.
83423     signed-off-by: Jason Jin <Jason.Jin@freescale.com>
83425 commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2
83426 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
83427 Date:   Tue Jun 27 18:12:02 2006 +0800
83429     Fix bug for io_bar size during pci scan
83431     During the pci scan process, Some devices return bar_reponse with the
83432     highest bytes 0, such as the pci bridge in uli1575 return bar_response
83433     with 0xffffff, So the bar_size should be manually set under 64K.
83435     Signed-off-by: Jason Jin <jason.jin@freescale.com>
83437 commit fa7db9c377bc2353a17bf1d381d65a6c418728f0
83438 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
83439 Date:   Tue Jun 27 18:11:54 2006 +0800
83441     Enable PCIE1 for MPC8641HPCN board
83443     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
83445 commit 99d70e3a47affb9bae041a2caece7cd516e213b3
83446 Author: Wolfgang Denk <wd@pollux.denx.de>
83447 Date:   Mon Jun 26 11:06:00 2006 +0200
83449     More code cleanup
83451 commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba
83452 Author: Jon Loeliger <jdl@freescale.com>
83453 Date:   Thu Jun 22 08:51:46 2006 -0500
83455     Fix bug in 8641hpcn reset command with no args.
83457     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
83458     Acked-by: Jon Loeliger <jdl@freescale.com>
83460 commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc
83461 Author: Zhang Wei <wei.zhang@freescale.com>
83462 Date:   Tue Jun 20 17:47:15 2006 +0800
83464     Reworked IRQ mapping in OF-tree.
83466 commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c
83467 Author: Jon Loeliger <jdl@freescale.com>
83468 Date:   Thu Jun 15 21:33:37 2006 -0500
83470     Do not enable address translation on secondary CPUs.
83471     Do not set up BATs on secondary CPUs.  Let Linux do the nasty.
83473     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83475 commit 386eda022473394ad8f36b86f2bdc9b4cb816291
83476 Author: Wolfgang Denk <wd@pollux.denx.de>
83477 Date:   Wed Jun 14 18:14:56 2006 +0200
83479     Code cleanup
83481 commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70
83482 Author: Wolfgang Denk <wd@pollux.denx.de>
83483 Date:   Wed Jun 14 17:45:53 2006 +0200
83485     Various USB related patches
83486     - Add support for mpc8xx USB device.
83487     - Add support for Common Device Class - Abstract Control Model USB console.
83488     - Add support for flow control in USB slave devices.
83489     - Add support for switching between gserial and cdc_acm using environment.
83490     - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h
83491     - Update usbcore slightly to ease host enumeration.
83492     - Fix non-portable endian problems in usbdcore and usbdcore_ep0.
83493     - Add AdderUSB_config as a defconfig to enable usage of the USB console
83494       by default with the Adder87x U-Boot port.
83495     Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006
83497 commit 8ecc971618f56029ad99d3516f8b297a6ed58971
83498 Author: Jon Loeliger <jdl@jdl.com>
83499 Date:   Wed Jun 7 10:53:55 2006 -0500
83501     Fix a get_board_sys_clk() use-before-def warning.
83503     Signed-off-by: Jon Loeliger <jdl@jdl.com>
83505 commit d9bf4858fca5aa4d651b283270f77da72ebadfd5
83506 Author: Jon Loeliger <jdl@jdl.com>
83507 Date:   Wed Jun 7 10:52:49 2006 -0500
83509     Allow DTC path to be passed in.
83511     Signed-off-by: Jon Loeliger <jdl@jdl.com>
83513 commit c83ae9ea6d93abbe751bf8a3396236a084e56f87
83514 Author: Haiying Wang <haiying.wang@freescale.com>
83515 Date:   Tue Jun 6 16:54:29 2006 -0400
83517     Modify the IRQ of DUART2
83519 commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e
83520 Author: Jon Loeliger <jdl@jdl.com>
83521 Date:   Wed May 31 13:55:35 2006 -0500
83523     Review cleanups.
83525     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83527 commit cb5965fb95b77a49f4e6af95248e0c849f4af03e
83528 Author: Jon Loeliger <jdl@jdl.com>
83529 Date:   Wed May 31 12:44:44 2006 -0500
83531     White space cleanup.
83532     Some 80-column cleanups.
83533     Convert printf() to puts() where possible.
83534     Use #include "spd_sdram.h" as needed.
83535     Enhanced reset command usage message a bit.
83537     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83539 commit 3d5c5be547445dd3bd2eb7368d80df03ea437970
83540 Author: Jon Loeliger <jdl@jdl.com>
83541 Date:   Wed May 31 11:39:34 2006 -0500
83543     Removed unneeded local_bus_init() from 8641HPCN board.
83545     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83547 commit 4d3d729c16c392d2982d3266b659d333c927697d
83548 Author: Jon Loeliger <jdl@jdl.com>
83549 Date:   Wed May 31 11:24:28 2006 -0500
83551     Moved mpc8641hpcn_board_reset() out of cpu/ into board/.
83553     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83555 commit b2a941de060350ad15878d8219825f4950e9bb8e
83556 Author: Jon Loeliger <jdl@jdl.com>
83557 Date:   Wed May 31 10:07:28 2006 -0500
83559     Remove dead debug code.
83561     Signed-off-by: Jon Loeliger <jdl@jdl.com>
83563 commit 126aa70f10ba3d20e0a6f4d32328250513b77770
83564 Author: Jon Loeliger <jdl@freescale.com>
83565 Date:   Tue May 30 17:47:00 2006 -0500
83567     Move mpc86xx PIXIS code to board directory
83569     First cut at moving the PIXIS platform code out of
83570     the 86xx cpu directory and into board/mpc8641hpcn
83571     where it belongs.
83573     Signed-off-by: Jon Loeliger <jdl@freescale.com>
83575 commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9
83576 Author: Markus Klotzbuecher <mk@denx.de>
83577 Date:   Tue May 30 16:56:14 2006 +0200
83579     Support generic OHCI support for the s3c24x0 cpu.
83581 commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8
83582 Author: Haiying Wang <Haiying.Wang@freescale.com>
83583 Date:   Tue May 30 09:10:32 2006 -0500
83585     Improve "reset" command's interaction with watchdog.
83587         "reset altbank" will reset another bank WITHOUT watch dog timer enabled
83588         "reset altbank wd" will reset another bank WITH watch dog enabled
83589         "diswd" will disable watch dog after u-boot boots up successfully
83591     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
83593 commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a
83594 Author: Haiying Wang <Haiying.Wang@freescale.com>
83595 Date:   Tue May 30 08:51:19 2006 -0500
83597     Fix two SDRAM setup bugs.
83599         Fix ECC setup bug.
83600         Enable 1T/2T based on number of DIMMs present.
83602     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
83604 commit d11fec5015334deb2010e36ce00bb118cc5429a5
83605 Author: Haiying Wang <Haiying.Wang@freescale.com>
83606 Date:   Fri May 26 10:24:48 2006 -0500
83608     Add first draft of the MPC8641HPCN doc/README.
83610     Signed-off-by: Jon Loeliger <jdl@jdl.com>
83612 commit ed45d6c930b5939718a87ee12e25cf9a05978d4a
83613 Author: Haiying Wang <Haiying.Wang@freescale.com>
83614 Date:   Fri May 26 10:13:04 2006 -0500
83616     Added pci@8000 block.
83617     Updated ethernet interrupt mappings (moved up 48).
83618     Cleaned up a few comments.
83620     Signed-off-by: Jon Loeliger <jdl@jdl.com>
83622 commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7
83623 Author: Haiying Wang <Haiying.Wang@freescale.com>
83624 Date:   Fri May 26 10:01:16 2006 -0500
83626     Allow args on reset command.
83628     Signed-off-by: Jon Loeliger <jdl@jdl.com>
83630 commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc
83631 Author: Markus Klotzbuecher <mk@denx.de>
83632 Date:   Tue May 23 13:38:35 2006 +0200
83634     Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some
83635     fixes to the latter.
83637 commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9
83638 Author: Markus Klotzbuecher <mk@denx.de>
83639 Date:   Tue May 23 10:33:11 2006 +0200
83641     More cleanup for the delta board and the generic usb_ohci driver. Added
83642     CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific
83643     initialization and cleanup hooks respectively.
83645 commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10
83646 Author: Markus Klotzbuecher <mk@denx.de>
83647 Date:   Mon May 22 16:33:54 2006 +0200
83649     This patch adds USB storage support for the delta board. This is the first
83650     board to make use of a generic OHCI driver, that calls hooks for board
83651     dependant initialization.
83653 commit 14e37081ff3cac7ebe6e93836523429853b6b292
83654 Author: Jon Loeliger <jdl@jdl.com>
83655 Date:   Fri May 19 13:28:39 2006 -0500
83657     Change arbitration to round-robin for SMP linux.
83659 commit 9a655876e5995be80f49054e2509500e871e4d3a
83660 Author: Jon Loeliger <jdl@jdl.com>
83661 Date:   Fri May 19 13:26:34 2006 -0500
83663     Enable dual DDR controllers and interleaving.
83665 commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c
83666 Author: Jon Loeliger <jdl@jdl.com>
83667 Date:   Fri May 19 13:22:44 2006 -0500
83669     Update 86xx address map and LAWBARs.
83671 commit cccce5d0581bb0ba4602799a4b5112e58d1579cb
83672 Author: Jon Loeliger <jdl@jdl.com>
83673 Date:   Fri May 19 13:14:15 2006 -0500
83675     Remove L2 Cache invalidate polling.
83677 commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8
83678 Author: Jon Loeliger <jdl@jdl.com>
83679 Date:   Fri May 19 12:33:09 2006 -0500
83681     Enable 2nd CPU and I2C.
83683 commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54
83684 Author: Jon Loeliger <jdl@freescale.com>
83685 Date:   Mon May 15 07:26:56 2006 -0500
83687     Update interrupt mapping.
83689 commit 6cfea33477b04b63ed47386ed1629529484c33ba
83690 Author: Haiying Wang <Haiying.Wang@freescale.com>
83691 Date:   Wed May 10 09:38:06 2006 -0500
83693     Remove unneeded INIT_RAM_LOCK cache twiddling.
83694     Correctly tracks r29 as global data pointer now.
83696     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
83698 commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c
83699 Author: Jon Loeliger <jdl@freescale.com>
83700 Date:   Wed May 10 09:33:07 2006 -0500
83702     Remove unnecessary flash.c file.
83704 commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8
83705 Author: Jon Loeliger <jdl@freescale.com>
83706 Date:   Tue May 9 08:23:49 2006 -0500
83708     Get MPC8641HPCN flash images working.
83710         Enable the CFI driver.
83711         Remove bogus LAWBAR7 cruft.
83712         Use correct TEXT_BASE, Fixup load script.
83713         Enable SPD EEPROM during DDR setup.
83714         Use generic RFC 1918 IP addresses by default.
83716 commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca
83717 Author: Jon Loeliger <jdl@freescale.com>
83718 Date:   Thu Apr 27 10:15:16 2006 -0500
83720     Cleanup whitespaces and style issues.
83721     Removed //-style comments.
83722     Use 80-column lines.
83723     Remove trailing whitespace.
83724     Remove dead code and debug cruft.
83726 commit a2320a6bf8113a09544c42d160d10ac69d049a03
83727 Author: Jon Loeliger <jdl@freescale.com>
83728 Date:   Thu Apr 27 08:22:39 2006 -0500
83730     Revert bad PCI prefetch limit change.
83732 commit debb7354d1ea4f694154818df5e5b523f5c1cc1d
83733 Author: Jon Loeliger <jdl@freescale.com>
83734 Date:   Wed Apr 26 17:58:56 2006 -0500
83736     Initial support for MPC8641 HPCN board.